타이틀링 패키지

타이틀링 패키지

페이지 바닥글에는각주그리고감사해요올바르게 정렬되지 않았습니다. 예상되는 정렬을 얻는 방법은 무엇입니까?


다음 예에서 명령은 \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}

여기에 이미지 설명을 입력하세요

관련 정보