[Tex/LaTex] Zoom in / Zoom out symbol

fontawesome

There are symbols for a magnifying glass in LaTeX but I want something like this:

enter image description here

How can I achieve this?

Best Answer

You can use the tikz machinery.

enter image description here

\documentclass[border=3pt]{standalone}

\usepackage{tikz}
    \usetikzlibrary{calc}

\begin{document}
\begin{tikzpicture}
% \node[draw,line width=2pt,circle,inner sep=2pt] (A) at (0,0) {$-$};
\node[draw,line width=2pt,circle,inner sep=2pt] (A) at (0,0) {$+$};
\draw[line width=2pt] ($(A.225)+(.5\pgflinewidth,.5\pgflinewidth)$) -- ++(-1em,-1em);
\end{tikzpicture}
\end{document}
Related Question