标题包

标题包

在页脚中,脚注谢谢未正确对齐。如何获得预期的对齐?


在以下示例中,命令\thanks{}按预期使用数字排版:

\documentclass[a4paper,12pt]{article}
\usepackage{titling}
\thanksmarkseries{arabic}
\continuousmarks

\author{A. U. Thor\thanks{Is grateful\dots}}
\title{Nice paper\thanks{Indeed\dots}}

\begin{document}

\maketitle

This paper deals with\footnote{See also\dots}
\end{document}

答案1

\thanksmarkwidth您可以通过指定与脚注前面的缩进相同来对齐它们。

\documentclass[a4paper,12pt]{article}
\usepackage{titling}
\thanksmarkseries{arabic}
\continuousmarks
\setlength{\thanksmarkwidth}{\parindent}     %%% <--- here
\author{A. U. Thor\thanks{Is grateful\dots}}
\title{Nice paper\thanks{Indeed\dots}}

\begin{document}

\maketitle

This paper deals with\footnote{See also\dots}
\end{document}

在此处输入图片描述

相关内容