\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}