2

In the command:

\underset{t \rightarrow x}{\limsup} f(t) = \underset{t \rightarrow x}{\liminf} f(t)

I get the {t \rightarrow x} lower under the limsup then the liminf (due to the "p" in limsup).

How can I change the position of the underset?

Caramdir
  • 89,023
  • 26
  • 255
  • 291
milcak
  • 187

1 Answers1

4

A phantom could be useful:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
  \underset{t \rightarrow x}{\limsup} f(t) = \underset{t \rightarrow x}{\liminf\vphantom{p}} f(t)
\]

\end{document}
Gonzalo Medina
  • 505,128