Bagaimana cara menampilkan jumlah kata dalam dokumen saya?

Jan 12 2021

Untuk majalah saya harus menulis artikel kecil maks. 700 kata. Saya ingin mendapatkan penghitungan kata di bagian akhir. Saya menemukan kode berikut di sini di StackExchange. Tetapi ketika saya mencobanya sendiri tidak berhasil. Sayangnya, saya tidak diizinkan untuk menanggapi topik tersebut.

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

Saya mendapatkan Error berikut:

! Kesalahan LaTeX: File `| texcount -inc -sum -0 -template = {SUM} test.tex 'tidak ditemukan.

Ketik X untuk keluar atau melanjutkan, atau masukkan nama baru. (Ekstensi default: tex)

Masukkan nama file:

Apakah ada yang tahu apa yang salah?

Jawaban

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}