LaTeX \footnote 的調整

LaTeX \footnote 指令的使用,實際上是非常簡單的事情。
使用語法:
\footnote{「註記文字…}

例如:
\footnote{「上帝」是複數,可以解釋為「榮耀的複數」,用來區別當時其他宗教的個別神明(以單數形式出現)。因此,多數神學家接受「上帝」是複數形式、單數實質(Wenham 1987: 14)。}

如此,就可以產生如下截圖的結果。

image

不過,需要注意到,系統默認的註記編號;是“每一個章節”獨立起算。而不是整本書(或文章)連續編號。

當你有需要採取“整本書(或文章)連續編號”時,就需要做些特別處理!!

\usepackage{chngcntr}                        % 設定 \footnote 編號數值,可以在跨章節的情況下,連續編號。
\counterwithout{footnote}{chapter}    % 這兩行的指令,若是沒有設定,\footnote 的編號是每個章節獨立計算!

加上特殊指令處理後,就可以得到如下的排版效果。

image

對於,註記的另一個”招數,如下:(請注意,它的效果!** 和上面的圖形相互比較 ** )

\let\thefootnote\relax

image

另外的處理技巧,有【 define a macro in the preamble: 】

\makeatletter
\def\blfootnote{\xdef\@thefnmark{}\@footnotetext}
\makeatother

Then use \blfootnote{} as you would use the standard command. Alternatively, you can also use a\newcommand,
see Gonzalo's answer.
https://tex.stackexchange.com/questions/250221/supressing-the-footnote-number?rq=1

沒有留言: