Math & Science ⇒ Symbol
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Symbol
Code: Select all
\documentclass{article}
% Setting the font to Times to match your sample (not important)
\usepackage[T1]{fontenc}
\usepackage{mathptmx}
% These packages are important
\usepackage{amsmath,amssymb}
\begin{document}
\[
f \mathrel{\mathop{\nrightarrow}_{R}^{u}} f \text{\quad and \quad} f \mathrel{\mathop{=}_{R}^{u}} f
\]
\[
f \overset{u}{\underset{R}{\nrightarrow}} f \text{\quad and \quad} f \overset{u}{\underset{R}{=}} f
\]
\end{document}