![古典論文 + 脚注内の複数の段落](https://rvso.com/image/305882/%E5%8F%A4%E5%85%B8%E8%AB%96%E6%96%87%20%2B%20%E8%84%9A%E6%B3%A8%E5%86%85%E3%81%AE%E8%A4%87%E6%95%B0%E3%81%AE%E6%AE%B5%E8%90%BD.png)
私の脚注の一部は複数の段落で構成されています。通常、新しい段落は、脚注にないときに新しい段落がインデントされるのと同じようにインデントされます。しかし、classicthesis では、脚注のインデントが妨げられているようですが、それが何なのかわかりません。
答え1
\deffootnote{0em}{0em}{\thefootnotemark\hspace*{.5em}}
inは脚注を にclassicthesis.sty
設定します。parindent
0em
KOMA クラスの元の定義は です
\deffootnote[1em]{1.5em}{1em}{\textsuperscript{\thefootnotemark}}
。
ここで、parindent
脚注の は に設定されており1em
、これはフォント サイズに依存します。 の詳細については、deffootnote
KOMA スクリプトのドキュメントを参照してください。
\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}