我对 Latex 完全陌生。我一直在尝试基于以下材料撰写论文:IEEEtran
。但是当我尝试在仅写了 4 行之后查看输出时,出现了错误“文件未找到“。
我已经关注了教程使用 IEEEtran
\documentclass[conference]{IEEEtran}
\begin{document}
\title{My IEEE paper}
\end{document}
答案1
从技术上讲,您不需要排版任何文档内容,因为\title{<stuff>}
仅将 存储<stuff>
为使用 时的标题\maketitle
。实际上,文档.log
显示在:
No pages of output.
而且,由于没有输出任何页面,打开输出的文档查看器(作为工作流程的一部分)找不到导致错误的文件。向文档中添加更多内容以跟踪进度。有些人喜欢
\documentclass[conference]{IEEEtran}
\title{My IEEE paper}
\begin{document}
\maketitle% Create/set the title
\end{document}