¿Cómo puedo mostrar el número de palabras dentro de mi documento?
Para una revista tengo que escribir un pequeño artículo de max. 700 palabras. Me gustaría tener un recuento de palabras al final. Encontré el siguiente código aquí en StackExchange. Pero cuando lo probé yo mismo no funcionó. Desafortunadamente, no puedo responder al tema.
\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}
Obtuve el siguiente error:
! Error de LaTeX: Archivo `| texcount -inc -sum -0 -template = {SUM} test.tex 'no encontrado.
Escriba X para salir o continuar, o ingrese un nuevo nombre. (Extensión predeterminada: tex)
Ingrese el nombre del archivo:
¿Alguien sabe qué está pasando?
Respuestas
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}