Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Carson Witt

2061 views
1
\documentclass{article}
2
\title{Test Document}
3
\author{Carson Witt}
4
5
\usepackage{graphicx}
6
7
\begin{document}
8
\maketitle
9
10
\begin{figure}
11
\caption{This is my best graph}
12
\label{graph1}
13
\includegraphics[scale=0.5]{parametric_plot.pdf}
14
\end{figure}
15
16
I can now reference Figure \ref{graph1}
17
18
\end{document}
19
20