Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 5

Simple Document in LaTex

\documentclass[12pt]{article}
\begin{document}
\section{Introduction}
Main Page
\subsection{College}
SIES GST
SIES Arts,Commerce,Science
\paragraph{Menu}
List of Colleges
\subparagraph{contents}
This is an engg college

Suppose we have $(x+1)$and $(x+3)$ sides of rectangle then area of rectange


is
$$A=x^2+3x+4$$

$\lambda$
$\pi$
\end{document}

Adding Picture in Document


\documentclass[12pt]{article}
\usepackage{graphicx}
\usepackage{float}
\begin{document}
Hi This is flowers shop
You can have more flowers of any kind

\begin{figure}
\includegraphics[width=\linewidth]{JellyFish.jpg}
\caption{Rose}
\label{fig:Rose1}
\end{figure}
Hi Very Good Morning ,

Figure \ref{fig:Rose1} shows flower

\begin{figure}[H]
\includegraphics[width=\linewidth]{Jellyfish.jpg}
\caption{Rose}
\label{fig:Rose2}
\end{figure}

Its the document of flowers .


Enjoy it

Figure \ref{fig:Rose2} shows flower


\end{document}
Adding table
\documentclass[12pt]{article}
\begin{document}
\begin{table}
\centering
\begin{tabular}{|l|l|l|l|}
\hline
h1 & h2 & h3 & h4 \\
\hline
a & b & c & d \\
\hline
a & b & c & d \\
\hline
\end{tabular}
\end{table}
\end{document}

Adding title page


\documentclass{article}
\title{MainPage}
\author{FCdfd}

\date{\today}
\begin{document}
\maketitle
\newpage
\end{document}

Adding List
\documentclass[12pt]{article}
\title{Restaurant}
\newpage
\begin{document}
\maketitle
\newpage
Menu
\begin{itemize}
\item GJHJ
\item KJLHJH
\end{itemize}

\begin{enumerate}
\item GJHJ
\item KJLHJH
\end{enumerate}

\end{document}
Adding Index/ TableofContents
\documentclass{article}

\begin{document}

\tableofcontents
\newpage
\listoffigures
\section{Section}

Dummy text

\subsection{Subsection}

Dummy text
\listoftables
\section{Section}

Dummy text

\subsection{Subsection}
\end{document}

Adding BiblioGraphy in Document

Database.bib
@Article{man87,
author = {J. Mantas},
title = {Methodologies in Pattern Recognition and Image Analysis-A Brief
Survey},
journal = {Pattern Recognition},
year = {1987},
}

@Conference{sam09,
author = {Samuel Foucher},
title = {An Evaluation Of Medical Imaging},
booktitle = {IGARSS},
year = {2009}
}

@Book{jslee,
author = {Sen Lee and Eric Foucher },
title = { Radar Imaging and Applications},
publisher = {CRC Press},
year = {2009}
}

@InProceedings{5lopesgn,
author={Zurada, A. and Zage, S. and Nezry, E.},
booktitle={Remote Sensing Symposium, 1992. IAPRSS '98. }, title={Frequency
Division {FDM} },
year={1992},
pages={80 -82}
}

@Article{sss,
author = {Shitole Sanjay},
title = {Digital Image Processing},
journal = {Recognition},
year = {1988},
}

@Article{ppp,
author = {Y S Rao},
title = {Microwave imaging},
journal = {Imaging},
year = {1992},
}

@Inproceedings{chaturvedi2015adaptive,
title={Adaptive parametric estimator for complex valued images},
author={Chaturvedi, Abha and Sharma, Roshni and Wadekar, Damini and
Bhandwalkar, Ashwini and Shitole, Sanjay},
booktitle={Technologies for Sustainable Development (ICTSD), 2015
International Conference on},
pages={1--6},
year={2015},
organization={IEEE}
}

Create bib file compile with BibTex and


generate errors free file

Now create Tex file and


1.compile BibTex->LaTex->PdfLaTex->Quick
Build

Myfile.tex
\documentclass[12pt]{article}
\begin{document}
The references here are ~\cite{sss},~\cite{ppp} and ~\
cite{chaturvedi2015adaptive} we are going to use

\bibliographystyle{IEEETran}
\bibliography{database}
\end{document}
Presentations in LaTex

\documentclass{beamer}

\usetheme{Boadilla}
\title{My Presentation}
\subtitle{Using Beamer}
\author{Joe Bloggs}
\institute{University of ShareLaTeX}
\date{\today}

\begin{document}
<document goes here>

\begin{frame}
\titlepage
\end{frame}
\section{Section 1}
\subsection{sub a}

\begin{frame}
\frametitle{Title}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
\end{frame}
\section{Section 1}
\subsection{sub a}

\begin{frame}
\frametitle{Title}
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua.
\end{frame}

\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}

\end{document}

You might also like