.png)
タイトル ページのテンプレートを作成中ですが、memoir クラスを使用してカスタム脚注のインデントを調整できません。
編集:
\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}