snippets

🔌 Toolbox of short, reusable pieces of code and knowledge.

View the Project on GitHub rosikand/snippets

LaTeX images

Here is my snippet that I use when I want to place an image in a LaTeX document.

\begin{center}
\begin{figure}[H]
\centering
\includegraphics[width=0.55\textwidth]{images/your-image.png}
\caption{Your text caption.}     
\end{figure}
\end{center}