more tex snippets

This commit is contained in:
Daniel Knüttel 2021-09-20 18:26:27 +02:00
parent b206aaa7c7
commit 6d0fc32e8f
1 changed files with 18 additions and 0 deletions

View File

@ -205,3 +205,21 @@ $2
\end{frame}
}
endsnippet
snippet subfigures
\begin{figure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=\linewidth]{$1}
\caption{$2}
\end{subfigure}
\begin{subfigure}{\linewidth}
\centering
\includegraphics[width=\linewidth]{$3}
\caption{$4}
\end{subfigure}
\caption{$5}
\label{fig:$6}
\end{figure}
endsnippet