Basic LaTeX Document
Including png Images
Compile_&_View
Sections
Graphics
References
\documentclass[a4paper,12pt]{article}
\begin{document}
\setlength{\parskip}{10pt}
\setlength{\parindent}{0pt}
\end{document}
\vspace*{24.7mm}
\hspace*{35mm}
\textbf{bold}
\\ return
\begin{center} \end{center}
\ldots ...
\frac{1}{\pi}
\quad space
\infty br/>
a_{n} subscript
\sum_{n=1}^{\infty}
\begin{displaymath}
f(x) = \sin
\left(
\frac
{ \log \left( \frac {1+x}{1-x} \right }
{ e^{2/x} }
\right)
\end{displaymath}
To compile the latex file a001.tex
$latex a001
- assumes latex .tex extension and produces
$a001.dvi
- to view on my Linux box
$xdvi
- and open the file.
dvips -o a001.ps a001.dvi
- for postscript file.
ps2pdf a001.ps for a001.pdf.
Alternatively do not use tex but pdftex
and you can include .png graphics images.
<TODO> - migrated to newer versions and this way has broken. Fix.
Here is an example where I used Gimp to find the height
of img44.png file. I only specified one axis so the package
determines the other.
Compile the tex file with After declaring the documentclass load the graphics
package. Latex only accepts eps and ps files. See Including png Images. A less complicated version
...latex has a complicated way of dealing
with bitmap images. Consequently it was recommended
that you use
\includegraphics[width=75mm]{img44.png}
pdflatex.Sections
\section{Introduction}
\label{Introduction}
\section{System Description}
\lable{System Description}
Graphics
\usepackage{graphicx} % needed for including graphics e.g. EPS, PS
\begin{figure*}
\centerline{
\mbox{\includegraphics[width=3.00in]{assemblyWorkcellOverview1_0.eps}}
\mbox{\includegraphics[width=3.00in]{assemblyWorkcellOverview1_0.eps}}
}
\caption{Replace text here with your desired caption.}
\label{overView}
\end{figure*}
\includegraphics[]{img25.ps}
References
can track faster moving subjects[2].
...
can track faster moving subjects \cite{FranklinBOOK}.
\begin{thebibliography}{99}
\bibitem{CarpenterBOOK} Carpenter, R.H.S., {\it Movements of the Eyes},
2nd Edition, Pion Publishing, 1988.
\bibitem{FranklinBOOK} Franklin, G.F., Powel, J.D., Workman, M.L.,
{\it Digital Control of Dynamic Systems}, Second Edition,
Addison-Wesley, 1990.
\end{thebibliography}