標題頁自訂註腳 - 本機刪除縮排(回憶錄類別)

標題頁自訂註腳 - 本機刪除縮排(回憶錄類別)

我正在製作標題頁的模板,但仍然無法使用回憶錄類來調整自訂腳註的縮排。

編輯:

我想建立\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}

相關內容