-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreferences.tex
More file actions
40 lines (35 loc) · 829 Bytes
/
Copy pathreferences.tex
File metadata and controls
40 lines (35 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
\documentclass{article}
\usepackage{booktabs}
\usepackage[capitalize]{cleveref}
\usepackage{graphicx}
\begin{document}
\section{Equations}
\Cref{eq:maxwell} shows something important.
\begin{equation}
\nabla \cdot \mathbf{E} = \frac{\rho}{\epsilon_0} \label{eq:maxwell}
\end{equation}
\section{Figures}
A dummy image is depicted in \cref{fig:example}.
\begin{figure}[h]
\centering
\includegraphics[width=0.5\linewidth]{example-image}
\caption{
My Figure!
}\label{fig:example}
\end{figure}
\section{Tables}
\Cref{tab:foo} shows nonsense.
\begin{table}[h]
\centering
\begin{tabular}{cc}
\toprule
Foo & bar \\
\midrule
Boo & far \\
\bottomrule
\end{tabular}
\caption{
Some random table.
}\label{tab:foo}
\end{table}
\end{document}