Estou tentando usar o seguinte 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}
No entanto, ele não será compilado. Tirando as \ifthenelse
obras (pode ser testado colocando um %
infront), mas preciso muito colocar. O erro é o seguinte:
/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
Responder1
Alguns problemas:
Você está usando
\ifthenelse
o que requer oifthen
pacote(ouxifthen
).O mesmo vale para
\setstretch
o que exigesetspace
.
Porém, um problema maior é o teste para ver se \@author
está vazio {}
. As classes de documentos LaTeX padrão são definidas \@author
paranãoestar vazio, mesmo que não \author
seja especificado. Na verdade, se não \author
for especificado, \@author
fica assim (delatex.ltx
):
\def\author#1{\gdef\@author{#1}}
\def\@author{\@latex@warning@no@line{No \noexpand\author given}}
\author
apenas redefine \@author
para conter o nome do autor, caso contrário, a saída padrão é um warning No \author given
. A seguirapenasaltera essa parte, pois não tenho certeza do que você deseja fazer com o restante da formatação do 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}
A ideia é capturar a \@author
aparência do início do preâmbulo. Então você pode verificar exatamente as definições da macro e ramificar/condicionar de acordo. \@emptyauthor
armazena \@author
sem quaisquer modificações e o texto \ifx\@author\@emptyauthor <true/no author> \else <false/author> \fi
fornece a condição.
Porém, seria mais fácil especificar \author{no author}
... realmente.
Para adicionar a data como outra saída ramificada, você pode 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
em seu preâmbulo.
\title{A title}
\date{}
\begin{document}
\maketitle
\end{document}