Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I put a question mark above \leq?

Tags:

How can I put a question mark above a less-than-or-equal-to symbol(\leq) in LaTeX?

like image 416
Mike Avatar asked Feb 25 '10 03:02

Mike


People also ask

How do you put a symbol above a letter in LaTeX?

To put a tilde over a letter, we can use either \tilde or \widetilde . As for which one to use in which situation, compiling a document with the following as its part can help comparison. To put a bar over a letter, we can use either \bar or \overline .

How do you put a question mark in LaTeX?

Use the \mathord command to declare an ordinary mathematical symbol, as in: t = \mathord{?} \newcommand{\que}{\mathord{?}} so that you can use it easily (and be true to the semantic ideals of LaTeX, etc.

How do you write not equal to in LaTeX?

Not equal. The symbol used to denote inequation (when items are not equal) is a slashed equal sign ≠ (U+2260). In LaTeX, this is done with the "\neq" command.


2 Answers

You can use stackrel:

\begin{equation}   2 \stackrel{?}{\le} 3 \end{equation} \end{document} 

Or, if you use the amsmath package, you can use overset as follows:

\documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation}   2 \overset{?}{\le} 3 \end{equation} \end{document} 

Example

like image 157
Ramashalanka Avatar answered Nov 06 '22 00:11

Ramashalanka


\stackrel{\text{\tiny ?}}{=}

like image 30
Nietzche-jou Avatar answered Nov 05 '22 22:11

Nietzche-jou