我有一個單一的環境,fancyfoot
我希望腳註沒有規則。
\documentclass{memoir}
\usepackage{lipsum}
\newenvironment{fancyfoot}{
\renewcommand{\footnoterule}{}
}{
}
\begin{document}
\begin{fancyfoot}
\lipsum[1]\footnote{First footnote}
\lipsum[2]
\end{fancyfoot}
\end{document}
我知道,雖然聽起來有點有趣,但透過環境範圍更改屬性應該是可行的\footnote
,例如使用\newcommand{\gloss}[1]{{\renewcommand{\thefootnote}{\fnsymbol{footnote}}\footnote{##1}}}
.