タイトルパッケージ

タイトルパッケージ

ページのフッターでは、脚注そしてありがとう正しく配置されていません。期待どおりの位置合わせを行うにはどうすればよいでしょうか?


\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}

ここに画像の説明を入力してください

関連情報