Estoy intentando utilizar el siguiente código:
\documentclass{article}
\makeatletter
\def\@maketitle{%
\newpage
\null
\begin{center}%
\let \footnote \thanks
{\Large \MakeUppercase{\@title} \par}%
\ifthenelse{\equal{\@author}{}}{no author}%
{\vskip 1.5em\textsc{\setstretch{1.32}\@author\\\hfill}\par}%
\end{center}
\par
\vskip 4em\noindent}
\begin{document}
\maketitle
\end{document}
Sin embargo, no se compilará. Sacando las \ifthenelse
obras (se puede probar poniendo un %
delante), pero realmente necesito tenerlo. El error es el siguiente:
/tmp/gummi_V2UOCX:32: Use of \@item doesn't match its definition.
\@ifnextchar ... \reserved@d =#1\def \reserved@a {
#2}\def \reserved@b {#3}\f...
l.32 \maketitle
Respuesta1
Un par de problemas:
Estás usando
\ifthenelse
lo que requiere elifthen
paquete(oxifthen
).Lo mismo ocurre con
\setstretch
lo que requieresetspace
.
Sin embargo, un problema mayor es la prueba para ver si \@author
está vacío {}
. Las clases de documentos LaTeX predeterminadas \@author
definennoestar vacío, aunque no \author
se especifique no. De hecho, si no \author
se especifica, \@author
se ve así (delatex.ltx
):
\def\author#1{\gdef\@author{#1}}
\def\@author{\@latex@warning@no@line{No \noexpand\author given}}
\author
simplemente se redefine \@author
para contener el nombre del autor; de lo contrario, su salida predeterminada es una advertencia No \author given
. La siguientejustocambia esa parte, ya que no estoy seguro de qué quieres hacer con el resto del formato del título:
\documentclass{article}
\usepackage{setspace}% http://ctan.org/pkg/setspace
\makeatletter
\let\@emptyauthor\@author
\def\@maketitle{%
\newpage
\null
\begin{center}%
\let \footnote \thanks
{\Large \MakeUppercase{\@title} \par}%
\ifx\@author\@emptyauthor
no author%
\else% \author is supplied
\vskip 1.5em\textsc{\setstretch{1.32}\@author\\\hfill}\par
\fi%
\end{center}
\par
\vskip 4em\noindent}
\makeatother
\title{A title}
\begin{document}
\maketitle
\end{document}
La idea es capturar cómo \@author
se ve al comienzo del preámbulo. Luego puede verificar las definiciones de macro exactamente y bifurcar/condicionar en consecuencia. \@emptyauthor
se almacena \@author
sin modificaciones y el texto \ifx\@author\@emptyauthor <true/no author> \else <false/author> \fi
proporciona la condición.
Sin embargo, sería más fácil especificarlo \author{no author}
... de verdad.
Para agregar la fecha como otra salida ramificada, puede usar
\makeatletter
\def\ifemptyarg#1{% http://tex.stackexchange.com/q/308/5764
\if\relax\detokenize{#1}\relax % H. Oberdiek
\expandafter\@firstoftwo
\else
\expandafter\@secondoftwo
\fi}
\let\@emptyauthor\@author
\def\@maketitle{%
\newpage
\null
\begin{center}%
\let \footnote \thanks
{\Large \MakeUppercase{\@title} \par}%
\ifx\@author\@emptyauthor
no author%
\else% \author is supplied
\vskip 1.5em\textsc{\setstretch{1.32}\@author\\\hfill}\par
\fi%
\par\expandafter\ifemptyarg\expandafter{\@date}{no date}{\@date}%
\end{center}
\par
\vskip 4em\noindent}
\makeatother
en su preámbulo.
\title{A title}
\date{}
\begin{document}
\maketitle
\end{document}