Fonts & Character SetsNeed symbol

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
teletubijs1
Posts: 13
Joined: Fri Dec 24, 2010 3:55 am

Need symbol

Post by teletubijs1 »

How can i get n\righttarrow\infty under longrightarrow

-> (n->infinity)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
torbjorn t.
Posts: 162
Joined: Wed Jun 17, 2009 10:18 pm

Need symbol

Post by torbjorn t. »

Like this?

Code: Select all

\documentclass{article}
\usepackage{amsmath} % needed for underset command
\begin{document}
\[
\underset{n\to\infty}{\longrightarrow}
\]
\end{document}
Post Reply