\firsthline
我一直在尝试在环境中使用命令longtable
。
\cline
不起作用,也\toprule
不起作用。
这是我的代码示例:
\begin{longtable}{lp{99mm}}
\caption{Work plan schedule for the dissertation}\\
\textbf{Work week} & \centering \textbf{Observations}\\
%\firsthline\\
\endhead
\adjustbox{valign=t}{\begin{tikzpicture}
[every calendar/.style={
month label above left,
month text={\textit{\%mt, \ \%y0}},
week list}]
\calendar[dates=2013-07-01 to 2013-07-last];
\end{tikzpicture}}
&
Some text here\\
\label{tab:Schedule}
\end{longtable}
如果我更改%\firsthline
,\hline
我会收到以下错误:
pdflatex > ! 放错位置 \noalign
pdflatex > ! 放错位置 \omit
pdflatex > ! 额外的对齐标签已更改为 \cr
答案1
\firsthline
和之间的区别\hline
在于 的参考点位置,\begin{tabular}[t]
这样与表格在同一水平线上的文本将在其顶行而不是行上对齐。但是longtable
是垂直模式显示结构,因此同一水平线上不能有文本,因此您只需要\hline
。