.png)
제목 페이지의 템플릿을 작업 중인데 회고록 클래스를 사용하여 사용자 정의 각주의 들여쓰기를 조정할 수 없습니다.
편집하다:
\thanks{}
각주도 없고 들여쓰기도 되지 않은 매크로를 복사하고 싶습니다 . 일반 \thanks
명령은 영향을 받지 않습니다.
명령 을 흉내 내려고 했지만 \thanks
결과가 좋지 않습니다.
\newcommand\authordetail[1]{
\setlength{\footparindent}{0em}
\protect\footnotetext[\thefootnote]{#1}}%
}
들여쓰기를 원하지 않고 각주가 왼쪽부터 시작되도록 합니다. 그러나 이는 제목 페이지에 로컬로 적용하고 이 명령을 사용하는 경우에만 적용되어야 합니다. 다른 모든 각주는 기본 설정에 따라 작동해야 합니다.
추가해도 \setlength{\footparindent}{0em}
아무런 효과가 없습니다. 왜 내가 \setlength
무시되나요?
좀 더 긴 예
\documentclass[article]{memoir}
\newcommand\authordetail[1]{
\setlength{\footparindent}{0em}
\protect\footnotetext[\thefootnote]{#1}}%
\begin{document}
\chapterstyle{article}
\title{The Big Book of Conundrums\thanks{reprinted with permission}}
\author{The Author\authordetail{The author was born long time ago, and the wrote this book}}
\date{March 1984}
\maketitle
\newpage
Some text
\end{document}
답변1
이와 같이 ?
\documentclass[article]{memoir}
% \newcommand\authordetail[1]{
% %\setlength{\footparindent}{0em}
% \protect\footnotetext[\thefootnote]{#1}}%
\chapterstyle{article}
\title{The Big Book of Conundrums\thanks{reprinted with permission}}
\author{The Author\thanks{The author was born long time ago, and the wrote this book}}
\date{March 1984}
\renewcommand{\thanksfootmark}{%
\thanksscript{\thefootnote}
}
\begin{document}
\maketitle
\newpage
Some text\footnote{Some text description}
\end{document}