我正在尝试以日记需要的样式编译tex文档。我无法使autowc
在桌面安装texstudio(我刚刚重新安装)上使用frontmatter
命令。
在线编辑器Overleaf编译以下代码没有问题。如果autowc
部分中的单词计数命令documentclass
包含在文档本身中的命令\begin{frontmatter}
\end{frontmatter}
,我的texstudio编辑器将无法编译它。
它使用类apsr_submission.cls,我将其放在包含tex文件的文件夹中,其中包含以下代码(称为example.tex
)。
\documentclass[bibtex,autowc]{apsr_submission}
\title{Submission Template}
\begin{document}
%%% DO NOT REMOVE THESE LINES. For automatic word count.
%TC:ignore
\begin{frontmatter}
\begin{abstract}
Your abstract. It should be at least three lines long to accommodate the dropped-cap. Adding extra text. Adding extra text. Adding extra text. Adding extra text. Adding extra text. Adding extra text.
\end{abstract}
\end{frontmatter}
%%% DO NOT REMOVE THIS LINE. For automatic word count.
%TC:endignore
\section{Blank}
\end{document}
如果在我的计算机上安装了texStudio(我刚重新安装),则会出现以下错误:
包catchfile错误:文件`example.stdout'未找到。 \ {端} frontmatter
如果我注释掉\begin
和\end{frontmatter}
部分,texStudio会编译并构建文档,但它缺少一堆格式化功能。如果我从文档类中删除autowc以使其显示\documentclass[bibtex]{apsr_submission}
,那么它会编译,但当然它会错过字数统计功能。
我尝试过在LaTex,pdfLatex,xelatex和lualatex中编译。他们都给出了同样的错误。为什么texStudio反对frontmatter
和自动字数(autowc
)的任何想法?