1

I am writing a bachelor thesis and I want to mark observations or remarks with this symbol:

remark symbol

which is produced by this code

\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}[scale=0.25]
\filldraw[color=black] (0,0) circle (1.5cm);
\fill[color=white] (0,0) circle (1cm);
\draw[very thick](-3,0) .. controls (-2,2) and (2,2) .. (3,0) .. controls (2,-2) and (-2,-2) .. (-3,0)--cycle;
\end{tikzpicture}
\end{document}

I want to have this eye symbol on the left side of the paragraph to illustrate the observation process that I have made. It seems silly to me to input it in my thesis like a picture.

Does anybody know how to do this? Thanks!

Henri Menke
  • 109,596

1 Answers1

3

Is an alternative, you could use the icon provided by the fontawesome5 package:

enter image description here

\documentclass{article}
\usepackage{fontawesome5}
\begin{document}
\faEye 
\faEye[regular]
\end{document}
leandriis
  • 62,593