缩进脚注最简单的方法是什么?就在开头?段落通常都是这样缩进的吗?
答案1
加载包脚杂并设置\footnotemargin
为\parindent
使用\setlength
:
\usepackage{footmisc}
\setlength{\footnotemargin}{\parindent}
示例(MWE)图片:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{footmisc}
\setlength{\footnotemargin}{\parindent}
\begin{document}
In fact, making reference to footnotes\footnote{reference to footnotes value
in a subsequent footnotemark or mpfootnotemark. This is a tedious way of going
about things} in general can be problematic: it can be done by noting down
the value of the footnote marker in a counter (or the like) and then using the
value in a subsequent footnotemark or mpfootnotemark. This is a tedious way of
going about things, and doesn't allow representation of all possible forms of
footnote mark; footref is a form of reference command
that sets the reference as if it were a footnote.
\end{document}