脚注缩进等于文本缩进

脚注缩进等于文本缩进

有没有办法保存文档\parindent并使用它来缩进脚注?我正在使用koma-script,因此我想使用该\deffootnote[mark width]{indent}{parindent}{definition}命令。

MWE 是

\documentclass{scrartcl}
%\deffootnote[1em]{0em}{1em}{\textsuperscript{\thefootnotemark}}

\parindent = 20pt

\deffootnote[\dim\the\parindent]{0em}{\the\parindent}{\textsuperscript{\thefootnotemark}}

\begin{document}

Here it will be placed a footnote\footnote{This is a footnote!}.

\end{document}

但它并没有像预期的那样工作!

答案1

保存(在文档开始时)正常引文的值并将其用于脚注。

\documentclass{scrartcl}

\deffootnote[\normalparindent]
            {0em}
            {\normalparindent}
            {\textsuperscript{\thefootnotemark}}
\newlength{\normalparindent}
\AtBeginDocument{\setlength{\normalparindent}{\parindent}}

\begin{document}

Here it will be placed a footnote\footnote{This is a footnote!}.

\end{document}

相关内容