There's a way to center the items, using the gathered environment, but I think it's "unnatural" :
Code: Select all
\documentclass[12pt,letterpaper]{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\begin{document}
Test
\begin{align}
&\begin{gathered}
ABC, \\[16pt]
QWEGH,
\end{gathered}
&\begin{gathered}
FGAW, \\[16pt]
{}
\end{gathered}
&&\begin{gathered}
NHYUR, \\[16pt]
FGH.
\end{gathered}
\end{align}
\end{document}
EDIT : There's also this variation :
Code: Select all
\documentclass[12pt,letterpaper]{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\begin{document}
Test
\begin{align}
&\begin{gathered}
ABC, \\
{} \\
QWEGH,
\end{gathered}
&\begin{gathered}
{} \\
FGAW, \\
{}
\end{gathered}
&&\begin{gathered}
NHYUR, \\
{} \\
FGH.
\end{gathered}
\end{align}
\end{document}
I feel this is a bit complicated for what I'm trying to do. What is the proper way of doing this ?