Látex \@autor Con ifthenelse

Látex \@autor Con ifthenelse

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 \ifthenelseobras (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:

Sin embargo, un problema mayor es la prueba para ver si \@authorestá vacío {}. Las clases de documentos LaTeX predeterminadas \@authordefinennoestar vacío, aunque no \authorse especifique no. De hecho, si no \authorse especifica, \@authorse ve así (delatex.ltx):

\def\author#1{\gdef\@author{#1}}
\def\@author{\@latex@warning@no@line{No \noexpand\author given}}

\authorsimplemente se redefine \@authorpara 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:

ingrese la descripción de la imagen aquí

\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 \@authorse ve al comienzo del preámbulo. Luego puede verificar las definiciones de macro exactamente y bifurcar/condicionar en consecuencia. \@emptyauthorse almacena \@authorsin modificaciones y el texto \ifx\@author\@emptyauthor <true/no author> \else <false/author> \fiproporciona 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.

ingrese la descripción de la imagen aquí

\title{A title}
\date{}
\begin{document}

\maketitle

\end{document}

información relacionada