Feeding
\documentclass{article}
\pagestyle{empty}
\usepackage{mathtools}
\begin{document}
\[
\begin{multlined}[c]
\text{Line}\ 1\\
\begin{aligned}[c]
&\text{Line}\ 2.1\\
\lor\ &\text{Line}\ 2.2\\
\lor\ &\text{Line}\ 2.3
\end{aligned}\text{stuff to the right}
\end{multlined}
\]
\end{document}
to pdflatex yields
As you see, there is some white space just before “stuff to the right”.
You might think this is not that bad, but here it gets worse:
\documentclass{article}
\pagestyle{empty}
\usepackage{mathtools}
\begin{document}
\[
\begin{multlined}[c]
\text{Line}\ 1\\
\land \begin{aligned}[c]
\left(
\begin{aligned}[c]
&\text{Line}\ 2.1\\
\lor\ &\text{Line}\ 2.2\\
\lor\ &\text{Line}\ 2.3
\end{aligned}
\right)
\end{aligned}
\end{multlined}
\]
\end{document}
produces
As you see, there is superfluous white space to the left of the right closing paren. If we have longer formulas and more environment nesting, the white space grows. Where does this space come from? How to get rid of it without putting in hardcoded negative distances, such as \mskip-5mu? Btw., \mleft(…\mright) instead of \left(…\right) result in the same problem.





\lor. Thanks in any case for the answer! – Oct 11 '22 at 12:39array– Zarko Oct 11 '22 at 12:48{rl}, such as{@{}r{\>}l@{}}or similar. – Oct 12 '22 at 19:15\setlength\arraycolsep{0pt}... – Zarko Oct 12 '22 at 19:27{rl}in your array example. – Oct 12 '22 at 19:59\jotinsidepmatrixorarray. For (2), we can say\\[\jot], but I don't know how to get (1) without inserting\displaystyleinto every cell. – Oct 14 '22 at 17:23arrayis in displaystyle, – Zarko Oct 14 '22 at 18:52\mathchoice{display}{text}{script}{scriptscript}intopmatrixorarray(I tested a few cells), I get "text"… So yes, I'm sure. – Oct 14 '22 at 18:55