[Tex/LaTex] How to make $\exists$ bold

boldboldmath

I have looked in
symbols file
and tried various forms of $\exists$ with various fonts but I always get something that appears very thin. As if there is no bold version. Is there a way of approximating a bold version? I am assuming this applies to many of logic symbols.

I had a similar question, which was closed due to lack of clarity.
There the suggestion was to take letter E and rotate or flip it. The results are not that satisfactory.

Best Answer

Hmmm... several ideas (to be surrounded by \mathop, or \mathord — really do not know). You can change easily the thickness and proportion of the tikz symbol changing the line width, x and y keys, and align it with the baseline option.

\documentclass{article}
\usepackage{bm}
\usepackage{tikz}
\newcommand{\Exists}{\bm{\exists}\kern-0.6em\bm{\exists}}
\newcommand{\ReallyExists}{\tikz[baseline=-0.7pt,line width=1.4pt,
    line cap=round, x=0.5em,y=0.3em] 
    \draw (0,0) -- (1,0) -- (1,1) -- (0,1) (1,1) -- (1,2) -- (0,2);} 
\begin{document}
Test: $\exists\,\bm{\exists}\,\Exists\,\ReallyExists$
\end{document}

it really exists...

Related Question