Belgemdeki kelimelerin sayısını nasıl görüntüleyebilirim?

Jan 12 2021

Bir dergi için küçük bir maks. Makale yazmam gerekiyor. 700 kelime. Sonunda bir kelime sayımına sahip olmak istiyorum. Aşağıdaki kodu buldum burada Stack Exchange üzerinde. Ama kendim denediğimde işe yaramadı. Maalesef konuya cevap verme iznim yok.

\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}

Aşağıdaki Hatayı alıyorum:

! LaTeX Hatası: Dosya `| texcount -inc -sum -0 -template = {SUM} test.tex 'bulunamadı.

Çıkmak veya devam etmek için X yazın veya yeni ad girin. (Varsayılan uzantı: tex)

Dosya adını girin:

Neyin yanlış gittiğini bilen var mı?

Yanıtlar

1 Fran Jan 13 2021 at 04:28

\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}