There are symbols for a magnifying glass in LaTeX but I want something like this:
How can I achieve this?
There are symbols for a magnifying glass in LaTeX but I want something like this:
How can I achieve this?
I use instead fontawesome5 package of Marcel Kruger of the June 7, 2019 (the lens grip should be different from fontawesome with the command \reflectbox to obtain the very similar image of the user @Sr. Schneider.
\documentclass[a4paper,12pt]{article}
\usepackage{fontawesome5}
\usepackage{graphicx}
\newcommand{\faSearchPluss}{\reflectbox{\faSearchPlus}}
\newcommand{\faSearchMinuss}{\reflectbox{\faSearchMinus}}
\begin{document}
\faSearchPluss, \faSearchMinuss
\end{document}
You can use the tikz machinery.
\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}
stackinsetcommand (stackenginepackage). – Bernard Nov 10 '19 at 19:09