
在頁面的頁腳中,註腳和謝謝未正確對齊。如何獲得預期的對齊方式?
在以下範例中,指令\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}