23 lines
382 B
TeX
23 lines
382 B
TeX
\documentclass{article}
|
|
|
|
\usepackage{graphicx}
|
|
\usepackage{cite}
|
|
|
|
\title{Programming is fun!}
|
|
\author{DarkWiiPlayer}
|
|
|
|
\begin{document}
|
|
\maketitle
|
|
|
|
\begin{figure}[h]
|
|
\centering
|
|
\includegraphics{$HOME/image.png}
|
|
\caption{An image}
|
|
\label{fig:image1}
|
|
\end{figure}
|
|
|
|
Programming is fun! \cite{sicp}
|
|
|
|
\bibliography{$HOME/me/bibliotheca.bib}
|
|
\bibliographystyle{apalike}
|
|
\end{document}
|