how to include images

Including Images in TeX

\includegraphics{/path/to/image}

will become

<p><img src="/path/to/image" alt="image" /></p>

Possibly something like

<p><img src="{{ .Site.BaseURL }}/path/to/image" alt="image" /></p>

is preferable (TBC).

Helpful resource may be also

https://tex.stackexchange.com/questions/51757/how-can-i-use-tikz-to-make-standalone-svg-graphics

Edited by Fabian Nuraddin Alexander Gabel