[go: up one dir, main page]

0% found this document useful (0 votes)
11 views2 pages

Latex Code

This document is an assignment by Divya Goyal that showcases various LaTeX features such as sections, lists, and mathematical formulas. It includes examples of ordered and unordered lists, as well as simple mathematical equations. The conclusion emphasizes the basic overview of using LaTeX for document structuring.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

Latex Code

This document is an assignment by Divya Goyal that showcases various LaTeX features such as sections, lists, and mathematical formulas. It includes examples of ordered and unordered lists, as well as simple mathematical equations. The conclusion emphasizes the basic overview of using LaTeX for document structuring.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

\documentclass{article}

\usepackage{graphicx} % Required for inserting images

\title{Assignment 1}
\author{DIVYA GOYAL}
\date{February 2025}

\begin{document}

\maketitle

\section{Introduction}
This document demonstrates the use of various LaTeX features, including section,
subsections, lists, and simple formulas.
\section{Structure of the document}
In LaTeX, we can organize content using sections and subsections. Additionally,
we can create lists, include mathematical formulas, and much more.\\
\\
This is the next paragraph. We can also create multiple para like this. In
future, we will see more features of LaTeX. Soon you will be able to make your
CV in LaTeX
\subsection{Lists}

\subsubsection{ordered list}
An ordered list (enumerate) uses the number to denote each item:
\begin{enumerate}
\item First item
\item second item
\item third item

\subsubsection{unordered list}
An unordered list (itemize) uses bullet points:
\begin{itemize}
\item first item
\item second item
\item third item

\subsection{simple formulaes}
LaTeX makes it easy to write mathematical formulas. Let us begin with the
simple formula ei + 1 = 0. This equation is in-line with the sentence. By using
a double dollar sign we can make it look like this
$e^{iπ} + 1 = 0$

here are other examples:


\begin{itemize}
\item Einstein’s famous formula:$E=mc^2$
\item A chemical compound: $SF6$
\item A fraction: $1/n$

\end{itemize}
\section{conclusion}
This is your first assignment. This document provided a basic overview of how
to use sections, subsections, lists, and formulas in LaTeX.
\end{itemize}
\end{enumerate}

\end{document}

You might also like