표 형식으로 구현하기 위한 부동 환경의 Chemscheme

표 형식으로 구현하기 위한 부동 환경의 Chemscheme

내 논문에서는 일관된 분자 번호 매기기를 위해 Chemscheme을 사용하고 있습니다. 나는 반응표의 헤더에 내가 만든 계획 중 일부를 포함시키고 싶습니다. 미니페이지 등을 사용하여 일반 그래픽으로 그렇게 할 수 있다는 것을 알고 있습니다. 하지만 이 계획은 분명히 float 환경과 호환되지 않습니다. 아마도 이전에 이 문제를 겪은 누군가가 생각해낸 쉬운 해결책이 있을 것입니다. 그 말을 들으면 정말 기뻐요. 제가 제대로 설명하지 못했다면 알려주세요! 이것은 포럼에서의 첫 번째 질문입니다. 다음은 그것이 어떻게 생겼는지에 대한 그림입니다. 여기에 이미지 설명을 입력하세요

MWE가 의미하는 바는 다음과 같습니다.

\documentclass[a5paper, 11pt, headsepline, DIV10, twoside, openright]{scrbook}
\usepackage{graphicx}
\usepackage{tabularx}
\usepackage[runs=2]{auto-pst-pdf}                   
\usepackage{chemstyle}
\usepackage{threeparttable}

\begin{document}

\begin{scheme}[ht]
    \schemeref[TMP1]{benzonitril}
    \schemeref[TMP2]{benzylamin}
    \includegraphics{90-Nitrilhydrierung/Abbildungen/01_benzonitril}
\end{scheme}

\begin{table}[H]
    \centering
    \caption{Title.}
        \begin{tabular}{c|ccc}
        \hline
        Catalyst & \multicolumn{3}{c}{TON} \\
        \ & Compound & Compound & Compound \\
        \hline
        1 & 8 & 39 & 0\\
        \hline
        \end{tabular}
\end{table} 

\end{document}

답변1

chemscheme다음은 환경 내부의 패키지를 사용하여 복합 숫자가 생성되는 이미지를 사용하는 방법을 보여주는 MWE입니다 tabular.

\documentclass[a5paper, 11pt, headsepline, DIV10, twoside, openright]{scrbook}
\usepackage{graphicx}
\usepackage[runs=2]{auto-pst-pdf}                   
\usepackage{chemstyle}


\begin{document}

\begin{table}[H]
    \centering
    \caption{Title.}
    \schemeref[TMP1]{benzonitril}
    \schemeref[TMP2]{benzylamin}
    \includegraphics{<image-name>}\\ 
    \vspace*{10pt}
        \begin{tabular}{c|ccc}
        \hline
        Catalyst & \multicolumn{3}{c}{TON} \\
        \ & Compound & Compound & Compound \\
        \hline
        1 & 8 & 39 & 0\\
        \hline
        \end{tabular}
\end{table} 

\end{document}

chemnum대신 다음을 사용하는 변형이 있습니다 chemscheme.

\documentclass[a5paper, 11pt, headsepline, DIV10, twoside, openright]{scrbook}
\usepackage{graphicx}
\usepackage[runs=2]{auto-pst-pdf}                   
\usepackage{chemnum}

\begin{document}

\begin{table}
    \centering
    \caption{Title.}
    \replacecmpd{benzonitril}
    \replacecmpd{benzylamin}
    \includegraphics{<image-name>}\\ 
    \vspace*{10pt}
        \begin{tabular}{c|ccc}
        \hline
        Catalyst & \multicolumn{3}{c}{TON} \\
        \ & Compound & Compound & Compound \\
        \hline
        1 & 8 & 39 & 0\\
        \hline
        \end{tabular}
\end{table} 

\end{document}

관련 정보