我正在使用classicthesis.sty
,但我的脚注编号没有显示。
我在每章开始时都使用了这个命令:
\let\thefootnote\relax\footnotetext{
}
您认为这有关系吗?如何使用 显示脚注编号\footnote{}
?谢谢!
根据我在这里读到的另一篇文章,这应该可行,但事实并非如此。
\documentclass[parskip=half,10pt,twoside]{scrbook}
\usepackage[
dottedtoc,
floatperchapter,
parts
]{classicthesis}
\usepackage{}
\begin{document}
\chapter{Test}
\vspace{30ex}
\let\thefootnote\relax\footnotetext{something unnumbered}
\newpage
There should be a footnote number here\footnote{test}
\end{document}
谢谢您的任何建议!
答案1
这实际上并不依赖于classicthesis
其他类,并且也可以与其他类配合使用。
我定义了一个语义命令
\describeContent
(您可以根据需要重命名它),因此可以更轻松地反复使用它。更重要的是,如果您决定以另一种方式进行修改,您可以全局更改它。
您唯一需要关心的是超链接内容。
\documentclass[parskip=half,10pt,twoside]{scrbook}
\usepackage[
dottedtoc,
floatperchapter,
parts
]{classicthesis}
\newcommand{\describeContent}[1]{%
\begingroup%
\let\thefootnote\relax%
\footnotetext{#1}%
\endgroup%
}
%\renewcommand{\describeContent}[1]{%
% \marginpar{#1}%
%}
\begin{document}
\chapter{Introduction}
\describeContent{this is some introductory material}
There should be a footnote number here\footnote{test}.
How are the following footnotes numbered?\footnote{ascending
numbers}
\chapter{Lovemaking of pidgeons}
\describeContent{pidgeons are by far not as great as ducks}
Footnotes are numbered on a perchapter base\footnote{option
floatperchapter set}
\end{document}
答案2
如果我将 \let\thefootnote\relax\footnotetext{something unnumbered} 放在 {} 之间,它就可以起作用。
\documentclass[parskip=half,10pt,twoside]{scrbook}
\usepackage[
dottedtoc,
floatperchapter,
parts
]{classicthesis}
\usepackage{}
\begin{document}
\chapter{Test}
\vspace{30ex}
{\let\thefootnote\relax\footnotetext{something unnumbered}}
\newpage
There should be a footnote number here\footnote{test}
\end{document}