LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Latex problem: document details (author, date etc) will not display (https://www.linuxquestions.org/questions/linux-newbie-8/latex-problem-document-details-author-date-etc-will-not-display-826555/)

physcom 08-16-2010 10:59 AM

Latex problem: document details (author, date etc) will not display
 
The following are the two tex input files written in vi and compiled with pdflatex. In the first case the document details (author, date etc) are displayed as desired but are omitted in the second case. Can someone please explain why? The only difference is the use of maketitle. Thanks in advance.

Case 1:

\documentclass{article}
\author{Name}
\date{}
\title{Title}
\begin{document}
\maketitle
Text to be inputted
\end{document}

Case 2:

\documentclass{article}
\author{Name}
\date{}
\title{Title}
\begin{document}
Text to be inputted
\end{document}

amani 08-17-2010 09:59 AM

Welcome to LQ!

\maketitle is the command that puts the info within the document (things in the document environment)

physcom 08-17-2010 03:28 PM

Ah yes, it seems my question was a little trivial! thanks for the answer


All times are GMT -5. The time now is 07:08 PM.