I want to get below the image. But when I write this $F \equiv^{SAT} G$, not getting the intended result.
Asked
Active
Viewed 40 times
1 Answers
1
As José Carlos Santos
has already pointed out in the comments, \stackrel will do the trick. Here is the MWE.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
[
F\stackrel{\text{\scriptsize SAT}}{\equiv}G
]
\end{document}
Note \mathclap is not used here because SAT is too wide to discard its width (inevitably ugly otherwise).
Teddy van Jerry
- 2,110

\overset{\text{SAT}}{\equiv}– egreg Jan 24 '24 at 10:09\stackrel{\mathclap{\scriptstyle(a)}}{=}in analignedenvironment, so that=will be aligned perfectly. Here (a) is quite short (narrow). – Teddy van Jerry Jan 24 '24 at 11:03