我正在使用以下内容:
\documentclass[11pt]{article}
\usepackage[bottom,flushmargin,hang,multiple]{footmisc}
\title{Title}
\author{Joe Blow\footnote{Address}}
\begin{document}
\maketitle
Hello.\footnote{This is a footnote.}
\end{document}
不幸的是,该flushmargin
选项不会影响作者的脚注。我想应该有一个类似于答案的解决方案这里但是我对编码不够了解,无法对其进行调整或者想出别的办法。
答案1
这似乎是有效的,至少在作者的脚注很短的情况下。
\documentclass[11pt]{article}
\usepackage[bottom,flushmargin,hang,multiple]{footmisc}
\usepackage{etoolbox}
\makeatletter
\patchcmd\maketitle{\hb@[email protected]}{\hbox}{}{}
\makeatother
\begin{document}
\title{Title}
\author{Joe Blow\footnote{Address}}
\maketitle
Hello.\footnote{This is a footnote.}
\end{document}