
표 캡션에 대한 표 메모를 만드는 것이 어떻게 가능합니까?
다음과 같은 것
\begin{table}
...
\caption{...\tnote{1}.}
...
\begin{tablenotes}
\item [1] : blabla.
\end{tablenotes}
\end{table}
예상대로 작성된 표 참고를 참조하기 위해 캡션 뒤에 '1'이 추가되지 않는다는 의미에서 작동하지 않습니다.
답변1
다음과 같이 잘 작동하는 것 같습니다.버나드가 언급됨:
\documentclass{article}
\usepackage{threeparttable,booktabs}
\begin{document}
\begin{table}
\begin{threeparttable}
\caption{\dots then\tnote{3}\dots.}
\begin{tabular}{cc}
\toprule
a\tnote{1} & b\tnote{2}\\\midrule
asdf;sd & asfjgso \\
asdvn;szxc & qwetqwrnvwe\\
\bottomrule
\end{tabular}
\begin{tablenotes}
\item [1] : blabla.
\item [2] : waffle.
\item [3] : after.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{document}
물론 노트1보다 노트3을 먼저 놓지는 않겠지만....