打印字数

打印字数

我提交的期刊要求统计标题页上的字数。我当然可以在文档texcount上运行.tex并输入数字,但似乎我应该能够自动完成此操作。

对于表格和图形(也是必需的),我可以简单地使用包。有没有与单词等效的东西?或者我可以以某种方式totcount存储输出,以便在后续运行时调用它吗?texcountpdflatex

答案1

这是使用的解决方案腼腆。请注意,您需要运行latexpdflatex使用-shell-escape选项

\documentclass{article}
\usepackage{bashful}
\pagestyle{empty}
\bash
texcount -sum -1 tmp.tex
\END
\begin{document}    
This file has \emph{\bashStdout} words.
\end{document}

答案2

这是一个不需要外部包的解决方案:

 \makeatletter\@@input|"echo `texcount -1 manuscript.tex`| cut -c1-4"\makeatother

cut命令假定一个四位数字,并且可以更为优雅地进行解析。

编译时需要此命令--shell-escape,例如:

pdflatex --shell-escape myfile.tex

相关内容