
페이지 바닥글에는각주그리고감사해요올바르게 정렬되지 않았습니다. 예상되는 정렬을 얻는 방법은 무엇입니까?
다음 예에서 명령은 \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}