mirror of
https://github.com/cupcakearmy/memoir.git
synced 2024-12-22 16:16:31 +00:00
19 lines
373 B
Markdown
Executable File
19 lines
373 B
Markdown
Executable File
# Images
|
|
|
|
```latex
|
|
\usepackage{graphicx}
|
|
|
|
% Relative to .tex file
|
|
\graphicspath{ {../images/} }
|
|
|
|
\begin{figure}[h]
|
|
\label{fig:cat}
|
|
\caption{Miaaauu}
|
|
\centering
|
|
\includegraphics[width=0.6\textwidth]{cat.png}
|
|
\end{figure}
|
|
|
|
Some cat here! \ref{fig:cat}
|
|
```
|
|
|
|
[https://www.overleaf.com/learn/latex/Inserting_Images](https://www.overleaf.com/learn/latex/Inserting_Images) |