Как я могу отобразить количество слов в моем документе?
Для журнала мне нужно написать небольшую статью макс. 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, чтобы выйти или продолжить, или введите новое имя. (Расширение по умолчанию: текс)
Введите имя файла:
Кто-нибудь знает, что происходит не так?
Ответы
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}