
В нижнем колонтитуле страницы,сноскииСпасибоне выровнены правильно. Как добиться ожидаемого выравнивания?
В следующем примере команды \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}