2016-08-22 2 views

답변

0

table*은 일반적으로 2 열 레이아웃과 연결되며, 결과적으로 페이지에 표시되지 않도록 지연됩니다.

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} 
: 우리는 그래서는 table* 같은 페이지에 표시거야 \footnote의 실행을 지연 afterpage을 사용할 수 있습니다