我正在使用用于撰写信息系统和信息管理系学士、硕士和研讨会论文的 LaTeX 模板。。我对图形和表格有问题,下面的代码片段已经造成了麻烦。
\begin{table}
\centering
\caption{Minimal example}
\label{minexample}
\begin{tabular}{*{4}{l}}
\toprule
ID & Difference \\ \midrule
1 & 10 \\
2 & 7
\end{tabular}
\end{table}
在这种情况下,显然是 4 次Undefined control sequence. \end{table}
。表格按预期显示,但上方有一个标题,其中包含正确的文本,下方有一个标题,没有任何文本。我猜这是两个不同的问题。
我在 Ubuntu 16.04 上使用 texlive。
答案1
事实证明该模板需要特殊的语法,如下所示:
\begin{figure}[caption={Minimal example},label={minexample}]
\begin{center}
{\includegraphics[width=1\linewidth]{"minexamplefigure"}}
\end{center}
\end{figure}
希望我能帮到遇到这个问题的人。如果有人知道这是软件包问题还是模板问题,请告诉我。