ฉันจะแสดงจำนวนคำในเอกสารของฉันได้อย่างไร?
สำหรับนิตยสารฉันต้องเขียนบทความขนาดเล็กสูงสุด 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 Error: ไม่พบไฟล์ `| 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}