This minimal example
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
A
&\leq
\begin{aligned}[t]
&\int \text{first part of a long expression}
\\& \times \text{second part of the long expression}
\end{aligned}
\\&\leq \int \text{shorther expression}
\end{align*}
\end{document}
gives
The two integral signs are not aligned because there is too much space before the first ones (or equivalently, before the aligned environment).
How can I get the correct horizontal space before the first integral sign?




\! \begin{aligned}....this removes the added space in front ofaligned– daleif Jul 27 '16 at 15:53\!solved the problem. – Gilles Bonnet Jul 27 '16 at 15:55\!seemed to solve the problem... It made it more aligned but not completely. This is really a small detail, but there is still a difference. – Gilles Bonnet Jul 27 '16 at 16:02&\intadd\!before the&insidealignedor move (if space)&after\int– daleif Jul 27 '16 at 16:07&\intin thealignedpart, remember that\intis an operator and thatamsmathinserts{}after&, so you get a thin space in front of the operator. – egreg Jul 27 '16 at 18:00