Code
\documentclass{article}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\begin{equation*}
c_{0} =
\left( (u_{j})_{j \in \mathbb{N}} \subseteq \mathbb{K}
| \lim\limits_{j \to +\infty} u_{j} = 0 \, \text{ converges } \right)
\end{equation*}
\end{document}
Output
I do not like the
- unadjusted
limitsof lim, - the manual spacing; I started to write
\,\,\,things between things there but things get too manual fast. - and the use of
\text{...}because of printing to other formats
How can you write the statement better in limits and spacing?


c_0 = \Bigl( (u_j)_{j\in\N} \subseteq \K \Bigm| \lim_{j\to\infty} u_j = 0 \Bigr)? – Manuel Sep 14 '15 at 10:52\,\,\,? What is wrong with\textor what are those other formats you are talking about? I would just type\begin{equation*} c_{0} = \bigl((u_{j})_{j\in\mathbb{N}} \subseteq \mathbb{K} \bigm| \lim\limits_{j \to +\infty} u_{j} = 0 \text{ converges}\bigr) \end{equation*}and see no problem whatsoever. – LaRiFaRi Sep 14 '15 at 11:05