经典论文 + 脚注中的多个段落

经典论文 + 脚注中的多个段落

我的一些脚注由多个段落组成。通常,新段落会缩进,就像新段落不在脚注中时会缩进一样。然而,在 classicthesis 中,有些东西阻止了脚注中的缩进,但我找不到它是什么。

答案1

\deffootnote{0em}{0em}{\thefootnotemark\hspace*{.5em}}

将脚注classicthesis.sty设置parindent0em

KOMA-classes 的原始定义是
\deffootnote[1em]{1.5em}{1em}{\textsuperscript{\thefootnotemark}}
这里,parindent脚注中的 设置为1em,这取决于字体大小。有关 的更多信息,deffootnote请参阅 KOMA-script 的文档。

\documentclass{scrbook}
\usepackage{classicthesis}
\deffootnote[1em]{1.5em}{1em}{\textsuperscript{\thefootnotemark}}%
\usepackage{blindtext}
\begin{document}
\chapter{Der Ententeich}
\blindtext\marginpar{Duckweed is yummy}\par
\blindtext\footnote{\blindtext\par\blindtext}
\end{document}

当然,这种方法只适用于他们定义的 KOMA 类\deffootnote。有趣的是,对于标准类,的作者classicthesis使用另一个包来设置脚注样式,不关心段落缩进,而是向终端输入一条消息,这与 KOMA 类不同。

有人对使用 KOMA 解决方案感兴趣吗?没问题,我们可以使用包scrextend,它可以做更多的事情

\documentclass{book}
\usepackage{scrextend}
\usepackage{classicthesis}
\deffootnote[1em]{1.5em}{1em}{\textsuperscript{\thefootnotemark}}%
\usepackage{blindtext}
\begin{document}
\chapter{Der Ententeich}
\blindtext\marginpar{Duckweed is yummy}\par
\blindtext\footnote{\blindtext\par\blindtext}
\end{document}

相关内容