2016-08-22 19 views
0

テーブル*環境で脚注を追加するにはどうすればよいですか?溶液は次のリンクで提供されています。ここでの答えでテーブル*環境内の脚注

https://tex.stackexchange.com/questions/209802/footnote-in-table-environment

は、上記のリンクで提供し、脚注は、テーブルのノートと一緒に表示されます。フッタページの脚注が通常の脚注として表示される可能性はありますか?

答えて

0

table*は、通常、2つの列のレイアウトに関連付けられているため、ページに表示されないように遅延されています。私たちは、それがtable*と同じページに表示されます\footnoteの実行を遅らせるためにafterpageを使用することができます。

enter image description here

\documentclass[twocolumn]{article} 

\usepackage{lipsum,afterpage,refcount} 
\newcommand{\setfootnotemark}{% 
    \refstepcounter{footnote}% 
    \footnotemark[\value{footnote}]} 

\begin{document} 

\lipsum[1-5] 

\begin{table*} 
    \centering 
    \caption{A table caption} 
    \begin{tabular}{llll} 
    123\setfootnotemark\label{first} & 456 & 
    789\setfootnotemark\label{second} & abc \\ 
    \end{tabular} 
    \afterpage{\footnotetext[\getrefnumber{first}]{First footnote.} 
      \footnotetext[\getrefnumber{second}]{Second footnote.}} 
\end{table*} 

\lipsum[6-10] 

\end{document}