Fonts & Character Setsequals with arrow on top

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
juliette
Posts: 75
Joined: Thu Nov 20, 2008 10:15 pm

equals with arrow on top

Post by juliette »

Hello,
I need an equals sign with an arrow (something like \rightarrow or \rightharpoonup, whichever looks more elegant ) on top of it, but I couldn't find it in Scott Pakin's 2009 list, has anyone come across this symbol ?

Very much appreciated,
Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

equals with arrow on top

Post by gmedina »

Hi,

\overset could help you to define the new symbol:

Code: Select all

\documentclass{book}
\usepackage{amsmath}

\begin{document}

$a\overset{\rightarrow}{=} b$

\[ a\overset{\rightarrow}{=} b\]

$a\overset{\rightharpoonup}{=} b$

\[ a\overset{\rightharpoonup}{=} b\]

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply