It's kind of hard to describe my problem with words so let me start with a code sample :
\documentclass[10pt]{amsart}
\begin{document}
\[
\begin{array}{cccc}
Y(N)_{\mathbf Z[\frac 1 N]} : & \mathbf Z[\frac 1 N]- Sch & \longrightarrow & Ens \\
& T & \longmapsto & \left\{ \begin{split}\text{Classes d'isomorphismes de paires $(E,\varphi)$ o\`u}\\ \text{ $E$ est une courbe elliptique sur $T$ et} \\ \text{ $\varphi : (\mathbf Z/N\mathbf Z)_T \to E[N]$ est}\\ \text{ un isomorphisme de sch\'emas en groupes sur $T$} \end{split} \right \}
\end{array}
\]
\end{document}
Basically i'm trying to fit a paragraph of text in an equation. I can do it using split but then I have to choose where to split itby hand + it looks very bad (cf above code). I would like a solution which splits everything nicely and automatically.


\parboxwithin\text. then all you should have to do is decide how wide the\parboxis to be. oh -- probably a good idea to set that text\raggedright. – barbara beeton Sep 15 '15 at 19:38\usepackage[utf8]{inputenc}and\usepackage[T1]{fontenc}to your preamble. – Bernard Sep 15 '15 at 21:40\parboxwon't do, particularly if you set it\raggedright, unless you're particularly lucky that all lines are nearly full. – egreg Sep 15 '15 at 22:25varwidthis better, but why won't a\parboxwork? (and of course anything of the sort will look awful with wildly varying line lengths;\raggedrightis usually the "least worst" alternative, and i see you've used it too.) – barbara beeton Sep 16 '15 at 13:18