📘 LaTeX Practical 1
Basic document · title, author, date & three paragraphs
❓ Question 1: Create a basic LATEX document that includes a title, author name, date, and three paragraphs of text. Compile the document and generate the PDF output.
⌨️ LaTeX Source Code
\documentclass[12pt]{article}
\title{Introduction to \LaTeX}
\author{ARO Study Circle}
\date{\today}
\begin{document}
\maketitle
\LaTeX is a document preparation system widely used
for typesetting mathematical and scientific documents.
It provides powerful tools for formatting equations,
tables, figures, references, and bibliographies.
\LaTeX documents are written using commands and can be
compiled to produce high-quality PDF documents.
\end{document}
📖 Explanation of Commands
\documentclass[12pt]{article}specifies the article document class and 12-point font size.\title{}defines the title of the document.\author{}specifies the author's name.\date{\today}automatically inserts the current date.\maketitledisplays the title, author, and date.- The three paragraphs demonstrate normal text formatting in LaTeX.
\begin{document}starts the document and\end{document}ends it.
📄 Compiled PDF Output
Introduction to LaTeX
August 21, 2026
LaTeX is a document preparation system widely used for typesetting mathematical and scientific documents.
It provides powerful tools for formatting equations, tables, figures, references, and bibliographies.
LaTeX documents are written using commands and can be compiled to produce high-quality PDF documents.
0 Comments