答案1
这只是一个通用方案,您需要根据文档的类型(双面、单面)、标题中表格的大小以及其他具体方面进行修改。
\documentclass{article}
\usepackage{tabularx}
\usepackage{multirow}
\usepackage{fancyhdr}
\renewcommand{\headheight}{3cm}
\renewcommand{\headrulewidth}{0pt}
\fancypagestyle{first}{%
\fancyhf{}
\fancyhead[L]{\tabfirst}
}
\fancypagestyle{other}{%
\fancyhf{}
\fancyhead[L]{\vbox{\tabother}}
}
\def\tabfirst{
\begin{tabularx}{\textwidth}{|X|X|X|}
\hline
xxx & xxx & xxx\\\hline
\multirow{3}{3cm}{xxx} & xxx & xxx\\\cline{3-3}
& xxx & xxx\\\cline{3-3}
& xxx & xxx\\\hline
\end{tabularx}}
\def\tabother{
\begin{tabularx}{\textwidth}{|X|X|}
\hline
\multirow{3}{3cm}{xxx} & xxx\\\cline{2-2}
& xxx\\\cline{2-2}
& xxx\\\hline
\end{tabularx}}
\begin{document}
\pagestyle{first}
\section{Heading for the first page}
\clearpage
\pagestyle{other}
\section{Heading for the other pages}
\end{document}