2010-02-25 63 views

回答

40

您可以使用stackrel

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

或者,如果您使用amsmath包,你可以使用overset如下:

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

Example

4

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

+0

@sgm:爲什麼進入'\ text'('\ text'需要'amsmath',但沒關係,因爲它的反正使用了很多),並且改變字體大小,而不是在數學模式下使用'\ scriptscriptstyle',如果你想要它很小?這可能是一個很好的理由。 – Ramashalanka 2010-02-25 04:17:00

1

使用口音包。你可以做更多有趣的東西使用TeX的原語,但這裏的簡單,最靈活的方式:

\documentclass{article} 
\usepackage{accents} 
\newcommand{\qleq}{\accentset{?}{\leq}} 
\begin{document} 
Test: $a \qleq b$. 
\end{document} 
相關問題