mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
a84b0e9b56
[web] Replace inputenc with graphicx in blank template GitOrigin-RevId: ca134c24d93c23665cc538ee0c654f2a727774f9
30 lines
829 B
TeX
30 lines
829 B
TeX
\documentclass{article}
|
|
|
|
\title{<%= project_name %>}
|
|
\author{<%= user.first_name %> <%= user.last_name %>}
|
|
\date{<%= month %> <%= year %>}
|
|
|
|
\usepackage{natbib}
|
|
\usepackage{graphicx}
|
|
|
|
\begin{document}
|
|
|
|
\maketitle
|
|
|
|
\section{Introduction}
|
|
There is a theory which states that if ever anyone discovers exactly what the Universe is for and why it is here, it will instantly disappear and be replaced by something even more bizarre and inexplicable.
|
|
There is another theory which states that this has already happened.
|
|
|
|
\begin{figure}[h!]
|
|
\centering
|
|
\includegraphics[scale=1.7]{universe}
|
|
\caption{The Universe}
|
|
\label{fig:universe}
|
|
\end{figure}
|
|
|
|
\section{Conclusion}
|
|
``I always thought something was fundamentally wrong with the universe'' \citep{adams1995hitchhiker}
|
|
|
|
\bibliographystyle{plain}
|
|
\bibliography{references}
|
|
\end{document}
|