字幕包

字幕包

在頁面的頁腳中,註腳謝謝未正確對齊。如何獲得預期的對齊方式?


在以下範例中,指令\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}

在此輸入影像描述

相關內容