我正在对 STATA 进行实证研究,并使用命令 sutex 来获取汇总统计表的 LaTeX 代码。我只是按照命令的帮助页面中所述将其复制并粘贴到 TeXworks (pdfLaTeX 文件) 上,但我收到此错误:
我对 LaTeX 语言不太熟悉,所以这个错误可能有点愚蠢。命令行如下:
答案1
错误消息“缺少 \begin{document}”表示您缺少一个\begin{document}
开始文档的命令。顺便说一句,Google 应该已经告诉了您这一点。请参阅https://en.wikibooks.org/wiki/LaTeX/Document_Structure了解更多信息。
答案2
请尝试以下操作:
\documentclass{report}
\begin{document}
\begin{table}[tb]\centering
\begin{tabular}{cc}
\hline
a & 1\\
b & 2\\
\hline
\end{tabular}
\caption{My nice table}
\end{table}
\end{document}