.png)
Estoy trabajando en una plantilla para una página de título y todavía no puedo ajustar la sangría de mi nota al pie personalizada usando la clase de memorias.
Editar:
Quiero crear una copia de la macro \thanks{}
que no tiene ninguna marca de nota al pie y tampoco tiene sangría. El mando normal \thanks
no se verá afectado.
Intenté imitar el \thanks
comando pero los resultados no son buenos:
\newcommand\authordetail[1]{
\setlength{\footparindent}{0em}
\protect\footnotetext[\thefootnote]{#1}}%
}
No quiero ninguna sangría y solo que la nota al pie comience a la izquierda. Sin embargo, esto sólo debería aplicarse localmente a la página de título y usando este comando. Todas las demás notas al pie deben comportarse según la configuración predeterminada.
Agregar \setlength{\footparindent}{0em}
no tiene ningún efecto. ¿Por qué se ignora mi \setlength
?
Algún ejemplo más largo
\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}
Respuesta1
Como esto ?
\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}