You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
784 B

\documentclass{ctexart}
\usepackage{longtable}
\usepackage{booktabs}
\usepackage{lipsum} % 用于生成测试文本
\usepackage{ctex}
\begin{document}
\begin{longtable}{|p{3cm}|p{6cm}|}
\caption{跨页表格示例} \label{tab:long} \\
\hline
\textbf{标题1} & \textbf{标题2} \\
\hline
\endfirsthead
\multicolumn{2}{c}{续表 \thetable} \\
\hline
\textbf{标题1} & \textbf{标题2} \\
\hline
\endhead
\hline
\multicolumn{2}{r}{下页继续} \\
\endfoot
\hline
\endlastfoot
内容1 & \lipsum[1] \\
\hline
内容2 & \lipsum[2] \\
\hline
内容3 & \lipsum[3] \\
\hline
内容4 & \lipsum[4] \\
\hline
内容5 & \lipsum[5] \\
\end{longtable}
\end{document}