ドキュメント内の単語数を表示するにはどうすればよいですか?
雑誌のために私は最大の小さな記事を書かなければなりません。700語。最後に単語数を増やしたいのですが。私は、次のコードを見つけ、ここStackExchangeに。しかし、私がそれを自分で試したとき、それはうまくいきませんでした。残念ながら、私はそのトピックに返答することを許可されていません。
\documentclass{article}
\newcommand\wordcount{\input{|"texcount -inc -sum -0 -template={SUM} \jobname.tex"}}
\begin{document}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec eleifend pulvinar quam, vel suscipit urna tincidunt eget.
This document has \wordcount words.
\end{document}
次のエラーが発生します。
!LaTeXエラー:ファイル `| texcount -inc -sum -0 -template = {SUM} test.tex 'が見つかりません。
Xと入力して終了または続行するか、新しい名前を入力します。(デフォルトの拡張子:tex)
ファイル名を入力してください:
何が悪いのか誰か知っていますか?
回答
1 Fran
\documentclass{article}
\parskip1em\parindent0pt
\immediate\write18{texcount -1 -sum \jobname.tex > wordcount.aux }
\begin{document}
\section*{How to compile this file}
From the command line (The damn buttonless black window): \par
\hfil\texttt{pdflatex --shell-escape \jobname .tex}\par
From your favourite \LaTeX\ editor: \par
\hangindent1em\hangafter0 Edit your editor configuration to enable the option \texttt{--shell-escape} of the \texttt{pdflatex} compiler. You should {\em not} use this option by foreing documents (like this) without know if the source is safe.\par
% This part is not counted
%TC:ignore
Word count = {\bfseries\large \input{wordcount.aux}}
%TC:endignore
\end{document}