This commit is contained in:
2023-04-04 13:12:59 +02:00
parent 2a14b71435
commit 17d7ff129c
11 changed files with 203 additions and 1 deletions

19
pages/latex/images.md Executable file
View File

@@ -0,0 +1,19 @@
# 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)