让 texcount 忽略附录

让 texcount 忽略附录

当计数到达附录时是否可以告知texcount停止计数?(即\appendix命令)?

我正在使用texcount。 检查我的论文,该论文的组织方式是每个章节都有自己的\input{blah.tex}。 我需要计数排除附录和参考书目包括脚注和标题。

现在我认为除了附录部分之外,大部分都是texcount默认完成的(如果我错了,请纠正我)。无法找到一个选项来告诉 texcount 停止。我想知道是否可以将某种注释放入文档中,或者是否有我忽略的选项。

当然,我可以手动进行加法。但感觉有点笨拙。

答案1

只需用和将不计算的区域(此处的附录内容)括起来%TC:ignore即可%TC:endignore

\documentclass{article}
\begin{document}

And now for something completely different

%TC:ignore 
\appendix
And now for something completely different
%TC:endignore 
\end{document}

这应该给出:

File: texcountexample.tex
Encoding: ascii
Words in text: 6
Words in headers: 0
Words outside text (captions, etc.): 0
Number of headers: 0
Number of floats/tables/figures: 0
Number of math inlines: 0
Number of math displayed: 0

相关内容