Latex command documentclass

The \documentclass command in LaTeX is used to determine what type of document is being created. For example,

\documentclass{article}

indicates that the template used internally by LaTeX is for a common article.

Main Options


The possible options to the documentclass command include:

Optional Parameters


The documentclass command can also receive optinal parameters that determine some formatting options for the Latex document. For example, the 11pt and 12pt options determine the size of the fonts used in the document. The following declaration:

\documentclass[12pt]{article}

will generate a document using the "article" template and use fonts of size 12 points. Other options include:
Article created on 2008-08-21 22:35:48

Post a comment