I want to put an image in latex in this way as you can see: by selecting the {image} Add SpatialLite Layer...option fro
Asked
Active
Viewed 992 times
1
1 Answers
2
As Heiko suggested you can use \includegraphics Command of the graphicx package if the image already exists.
Here is a MWE (minimal working example):
\documentclass{article}
\usepackage{graphicx}
\usepackage{mwe} % Just needed here for the dummy image.
\begin{document}
by selecting the
\includegraphics[height=0.6\baselineskip]{example-image-a}
Add SpatialLite Layer\ldots{} option fro
\end{document}
If you want to create the picture inline on the fly, you may want to look at TikZ and the \tikz{} command as discussed here: TikZ picture inline.
Matthias Arras
- 966
- 6
- 19
-
1BTW, the image
example-image-ais part of the distribution packagemwe, but it can be independently used and the loading of packagemweis not necessary. – Heiko Oberdiek Oct 23 '16 at 03:17

\includegraphicsof packagegraphicx? – Heiko Oberdiek Oct 23 '16 at 01:18