我想对包含许多脚注和引文的长 PDF 进行字数统计。有没有一种简单的方法可以防止打印任何可能显示为脚注的内容(包括 BibLaTeX 中的自动引文)?
MWE(使用 XeLaTeX 编译):
\documentclass[a4paper,11pt]{memoir}
\usepackage{polyglossia}
\setmainlanguage[variant=usmax]{english}
\usepackage[backend=biber]{biblatex-chicago}
\usepackage{filecontents}
\begin{filecontents}{lib.bib}
@book{foobar,
title = {Foo},
author = {John Bar},
location = {Footown},
publisher = {Bar},
date = {2005},
}
\end{filecontents}
\bibliography{lib.bib}
\begin{document}
Some text that I want to be in the word count.\autocite[Prenote][Postnote]{foobar} Some more text.\footnote{A footnote}
\end{document}
答案1
如果您重新定义该footnote
命令以使其不执行任何操作,则文档中将不会打印任何脚注。
\renewcommand\footnote[1]{}