LaTeX で動的に単語数をカウント
texcount
コマンドで単語数をカウントできる。
$ texcount main.tex
単に総単語数のみを出力させるには、下記のオプションをつける。
$ texcount main.tex -inc -sum -1
さらに、この機能をbashful
パッケージを用いて文書内で動的に行う。
\documentclass{article}
\usepackage{bashful}
\bash
texcount main.tex -inc -sum -1
\END
\let\WordCount\bashStdout
\begin{document}
\section{Dynamic word counter}
This document has {\WordCount} words.
\end{document}
-
\bash ... \END
の中にシェルスクリプトを書くと、コンパイル時に実行される。結果が\bashStdout
に格納されるので、これを\WordCount
という別の変数に定義し直している。\bashStdout
を直接用いても良いが、その場合別のシェルスクリプトを実行すると値が上書きされてしまう。\let
による評価はその場で行われるため、\WordCount
に格納された値は\bashStdout
の値が変更されても保存される。 -
\bash ... \END
は\begin{document}
より前に書くと良い。後ろに書くと、そこも文書内とみなされて、シェルコマンドの単語数もカウントされる。
ただし、シェルスクリプトの実行は危険を伴うので、コンパイル時に -shell-escape
オプションを追加して明示に許可する必要がある。
$ latex -shell-escape main.tex
例(Overleaf): word count test
Author And Source
この問題について(LaTeX で動的に単語数をカウント), 我々は、より多くの情報をここで見つけました https://qiita.com/kota9/items/d2d6f1a0a1a85392c299著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .