23 lines
411 B
TeX
23 lines
411 B
TeX
\documentclass{article}
|
|
|
|
\usepackage{graphicx}
|
|
\usepackage[backend=biber,style=alphabetic]{biblatex}
|
|
\addbibresource{$HOME/me/bibliotheca.bib}
|
|
|
|
\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}
|
|
|
|
\printbibliography
|
|
\end{document}
|