评论包提供了不同的评论环境,可以通过序言中的开关选择性地加入或排除这些环境。不过我还没有找到如何让它在脚注中发挥作用:
\documentclass{article}
\usepackage{comment}
\excludecomment{note}
\begin{document}
Some text.
\footnote{A footnote.
\begin{note}
A note for myself within a footnote.
\end{note}
}
\end{document}
出现以下错误:
Excluding comment 'comment') Excluding comment 'note'
(./commentsinfootnote1.aux) Excluding 'note' comment.
! Argument of \xComment has an extra }.
<inserted text>
\par
l.10 }
答案1
该version
包似乎是一个直接替代品:
\documentclass{article}
\usepackage{version}
\excludeversion{note}
\begin{document}
Some text.
\footnote{A footnote.
\begin{note}
A note for myself within a footnote.
\end{note}
}
\end{document}