统计突出显示的单词

统计突出显示的单词

我和我的合著者的任务是减少论文的字数。我们首先用 soul 包突出显示文本。但我们想知道突出显示的文本部分包含多少个单词,以便决定是否删除该部分。

我知道如何通过在线网站获取整个文档的字数,但这有所不同:突出显示的文本的字数。

答案1

TeXcount 来救援:

姆韦

来源:

\documentclass{article}
\usepackage{soul}
\usepackage{moreverb}
\immediate\write18{texcount  \jobname.tex > /tmp/hlcount.tex}
\def\hlcount{\bigskip\hrule\bigskip\verbatiminput{/tmp/hlcount.tex}\hrule}
\begin{document}
Some long text to test.
%TC:break highlighted text
\hl{Some highlighted text that must be counted.}
%TC:break plain text
Some other long text.
%TC:break more highlighted text
\hl{Some other highlighted text that also must be counted.}
%TC:break more plain text
One more long ending  text.
\hlcount
\end{document}

使用以下方式编译 pdflatex --shell-escape filename

相关内容