计算文档中的图表、表格和引文数量

计算文档中的图表、表格和引文数量

我的想法是使用特克斯考特 扫描我的文档并输出单词、图形、表格、方程式和引文的数量。

我一直在查看 TeXcount 的文档,似乎默认情况下会处理单词和方程式,但我不知道如何为不同的环境提供自己的计数器(引用是另一回事)。有人能帮帮我吗?

答案1

我不知道您是否还有其他想要计算的对象,但是对于您提到的对象,我是这样计算的:

  • 字:使用文本计数(见下文示例)
  • 人物:使用默认的 LaTeX 计数器figure
  • 表格:使用默认的 LaTeX 计数器table
  • 方程式:使用默认的 LaTeX 计数器equation
  • 引用:使用最后的包裹

您可以使用 显示任何计数器的当前值\arabic{NameOfTheCounter}。要显示文档中任何位置分配给计数器的最大值,总计数包应该有帮助。

以下是我最近开始使用的版权页。为方便您提供评论

% characters count: the value is printed in the ancillary file char-count.tex
\bash[ignoreStderr=true,stdoutFile=char-count.tex]
echo `texcount -quiet -merge -1 -char cub-ant-sys-lit-sur.tex`|sed -e 's/\([0-9]*\).*/\1/'
\END
% word count: the value is printed in the ancillary file word-count.tex
\bash[ignoreStderr=true,stdoutFile=word-count.tex]
echo `texcount -quiet -merge -1 insert-name-of-file-here.tex`|sed -e 's/\([0-9]*\).*/\1/'
\END
\section{Colophon}
Document data: \thepage{} pages; % display number of pages
\input{word-count} words; % display number of words
\input{char-count}characters; % display number of characters
\arabic{figure} figures; % display number of figures
\LastBib{} references; % display number of references in the bibliography (not the number of citations)
\arabic{footnote} numbered notes; % display number of footnotes
\arabic{glossaryentry} glossary entries. % display number of glossary entries (using package glossaries)

在示例中,我不需要包totcount,因为版权页是文档中出现的最后文本。

相关内容