-
Notifications
You must be signed in to change notification settings - Fork 933
跨页长表
mohuangrui edited this page Dec 10, 2019
·
16 revisions
与 跨页长图 类似 ,使用 \ContinuedFloat
:
\begin{table}[!htbp]
\bicaption{这是一个样表。}{This is a sample table.}
\label{tab:sample}
\centering
\footnotesize% fontsize
\begin{tabular}{lcccccccc}
\hline
行号 & \multicolumn{8}{c}{跨多列的标题}\\
\hline
Row 1 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 2 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 3 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 4 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 5 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 6 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 7 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 8 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
\end{tabular}
\end{table}
\begin{table}[!htbp]
\ContinuedFloat% continue splited float
\bicaption{续表。}{Continued table.}
\label{tab:sample}
\centering
\footnotesize% fontsize
\begin{tabular}{lcccccccc}
Row 9 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 10 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 11 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
Row 12 & $1$ & $2$ & $3$ & $4$ & $5$ & $6$ & $7$ & $8$\\
\hline
\end{tabular}
\end{table}
其效果如下:
此方法的优势是无需调用额外的包裹,简单且容易实现复杂的标题。其劣势是需要手动分割表格。
在 artracom.sty 中添加调用 longtable 宏包的命令:
\RequirePackage{longtable}
然后使用 longtable 制表:
\begin{longtable}{c|c|c|c}
\bicaption{这是一个样表。}{This is a sample table.}\\
\hline
\textbf{First entry} & \textbf{Second entry} & \textbf{Third entry} & \textbf{Fourth entry} \\
\hline
\endfirsthead
\multicolumn{4}{c}%
{\bfseries\small \tablename\ \thetable\ {续表。}}\\
\hline
\textbf{First entry} & \textbf{Second entry} & \textbf{Third entry} & \textbf{Fourth entry} \\
\hline
\endhead
\hline \multicolumn{4}{r}{\textit{续表见下页}}\\
\endfoot
\hline
\endlastfoot
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\ 1 & 2 & 3 & 4 \\
\end{longtable}
其效果如下:
longtable 似乎无法正确处理字体命令,从而如需改变字体大小,需采用如下形式:
{
\footnotesize% set font size for longtable
\begin{longtable}
\end{longtable}
}
除了调用 bicaption 宏包,双语标题的实现亦可通过:
\caption[这是一个样表]{这是一个样表\\Table~\ref{tab:longtab} A simple longtable example}\label{tab:longtab}