update to nextra 4

This commit is contained in:
2025-09-06 19:19:45 +02:00
parent d17a565130
commit 7864c38371
48 changed files with 998 additions and 500 deletions

19
content/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)