我正在制作标题页的模板,但仍然无法使用回忆录类来调整自定义脚注的缩进。
编辑:
我想创建\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}