texcount
環境内のすべてのものをカウントするための新しいカウンターを入力するにはどうすればよいでしょうか\begin{quote} ... \end{quote}
?
以下のことを試しましたが、結果は何も得られませんでした。
%TC:newcounter quote Number of quotes %TC:newcounter quotewords Words in quotes %TC:macro \begin{quote} [quote] %TC:macroword \begin{quote} [quotewords]
ご協力いただければ幸いです。
答え1
環境のルールは%TC:envir
コマンドを使用して指定します( と同じ%TC:group
)
%TC:envir name [argument-rules] content-rule
%TC:macrocount
そして、引用符をカウントするコマンドではbeginquote
、環境名の代わりに使用する必要があります (この部分がどの程度文書化されているかはわかりません)。
挿入する必要があるコードは次のとおりです。
%TC:newcounter quote Number of quotes
%TC:newcounter quotewords Words in quote
%TC:envir quote [] quotewords
%TC:macrocount beginquote [quote]
\begin{quote}
Text in a quote.
\end{quote}
この場合、4 語の引用が 1 つカウントされます。