LaTeX 使用符号插入一个未编号的脚注

LaTeX 使用符号插入一个未编号的脚注

我正在写一本书,想插入一个未编号的脚注(即暂停脚注计数并使用彩色星号作为标记)。

我已经加载了我认为必需的软件包,并且尝试了 SE 的各种解决方案(例如,这里这里, 和这里),但无济于事。

我也在自定义环境中的双列文本(脚注应该是跨越页面宽度的单列)中执行此操作enumerate

答案如下全局更改脚注,并且我尝试只进行一次更改(例如,将脚注计数器重置为 0,从阿拉伯数字更改为符号,将颜色从黑色更改为红色,插入恶意脚注,并将所有内容恢复到此之前的状态)。

以下是 MWE:

\documentclass[fontsize=9pt, twoside, final, openright, c6paper]{book}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{parskip}                        
\usepackage[flushmargin, symbol*]{footmisc}     
\usepackage{multicol}   
\usepackage{ragged2e}         
\usepackage[dvipsnames]{xcolor}           
\usepackage{enumitem}   

% FN symbol definition
\DefineFNsymbolsTM{myfnsymbols}{% def. from footmisc.sty "bringhurst" symbols
  \textasteriskcentered *
  \textdagger    \dagger
  \textdaggerdbl \ddagger
  \textsection   \mathsection
  \textbardbl    \|%
  \textparagraph \mathparagraph
}%

% New double-enumerate definition:
\newlist{bienumerate}{enumerate}{1}
\setlistdepth{4}
\setlist[bienumerate, 1]{%
  label=\arabic*\additionallabel.,
  wide,
}
\NewDocumentCommand{\additionallabel}{}{}
\NewDocumentCommand{\biitem}{o}{%
  \IfNoValueTF{#1}{%
    \renewcommand{\additionallabel}{}%
  }{%
    \renewcommand{\additionallabel}{ (#1)}%
  }%
  \item
}


\definecolor{darkred}{HTML}{AE0000}
\newcommand{\cdr}{\color{darkred}}

\begin{document}


\setcounter{footnote}{0}

\renewcommand*{\thefootnote}{\fnsymbol{footnote}}

\begin{Center}
{\cdr {\textsc{Caput III}}}

DE CALENDARIO ADHIBENDO \\ IN RECITATIONE DIVINI OFFICII
\end{Center}
\begin{bienumerate}[itemsep=-0.75ex, leftmargin=0ex, itemindent=1em, parsep=3pt]
\biitem[156] In domibus interprovincialibus, nationalibus, et internationalibus 
Ordinis, pro absolutione divini Officii in choro vel in communi, adhibendum est 
calendarium proprium Ordinis universi, additis tantum festis propri\ae\ ecclesi\ae\ 
(n.~42) necnon festis de quibus n.~50.\footnote{Test test test.}
\end{bienumerate}


\end{document}


相关内容