General ⇒ \title, \author don't get displayed
\title, \author don't get displayed
I have defined \documentclass[12pt,a4paper]{article} and I use a set of packages. Before \begin{document}, I put title{myTitle} and \author{Me} but don't get displayed. I get neither warning nor error message that they can't be displayed. Does anyone know why they don't get displayed and what prevents?
Thanks
Carol
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: \title, \author don't get displayed
\maketitle
That's the command that actually prints the title.
\title, \author don't get displayed
Moreover, Is there any predefined command for the authors' contact information (address, email), as appear on the papers?
Many thanks
frabjous wrote:Right after \begin{document}, did you include:
\maketitle
That's the command that actually prints the title.
\title, \author don't get displayed
As far as I know there's nowhere by default to put contact info in the article document class, but someone may know better. You can add stuff like that into \author if you want, e.g.:
Code: Select all
\author{Me \\ Institution or Organization \\ Address \\ \texttt{myemail@mydomain.com}}