\maketitle
command to fit the format of a journal, but I'm having difficulty getting LaTeX to italicize the \@author
list.Here is what the author list currently looks like. I would like just the names to be italicized.

And here is the code I've used to redefine the
\maketitle
command. Note that I have a \textbf{}
command around the \@title
and that works without a problem.Code: Select all
\makeatletter
\renewcommand{\@maketitle}{
\begin{flushleft}
{\textbf{\@title} \par}
\par\vspace{10pt}
\textit{\@author}
\end{flushleft}
\par} \makeatother