Difference between revisions of "Document Titles"

From Wiki
Jump to navigation Jump to search
m (Added the top navlinks.)
(Elaborated on the "In LaTeX" description.)
Line 2: Line 2:
  
 
== In LaTeX ==
 
== In LaTeX ==
 +
 +
The standard LaTeX document classes define a <code>\maketitle</code> command, along with <code>\title</code>, <code>\author</code>, and <code>\date</code> commands, which can be used to produce a relatively automatic title block.
  
 
<texcode>
 
<texcode>
Line 12: Line 14:
 
\end{document}
 
\end{document}
 
</texcode>
 
</texcode>
 +
 +
The title, author, and date defined by these commands is also used to create the PDF authoring information, if appropriate packages are used.  (I'm not sure of the details of this; will look them up later. --Brooks)
  
 
== In ConTeXt ==
 
== In ConTeXt ==
  
 
{{howto}}
 
{{howto}}

Revision as of 20:52, 3 September 2005

< From LaTeX to ConTeXt >

In LaTeX

The standard LaTeX document classes define a \maketitle command, along with \title, \author, and \date commands, which can be used to produce a relatively automatic title block.

\documentclass{article}
  \title{How to do this in Context}
  \author{The author}
  \date{July 26, 2005}
\begin{document}
  \maketitle
\end{document}

The title, author, and date defined by these commands is also used to create the PDF authoring information, if appropriate packages are used. (I'm not sure of the details of this; will look them up later. --Brooks)

In ConTeXt


The author of this entry is looking for a solution for the described problem. (See: How to?)