There are some very advanced answer that I can't figure out how to adapt to this situation.
When I do the following the text in the second column does get vertically centred for some reason.
Question
Can someone figure out how vertically centre both columns?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{fontawesome5}
\begin{document}
\begin{tabular}{cl}
{\huge \faIcon{envelope}} \hspace{0.5em} & xxx\\
{\huge \faIcon{phone-square-alt}} \hspace{0.5em} & xxx\\
{\huge \faIcon{trophy}} \hspace{0.5em} & xxx y.o.\\
{\huge \faIcon{map-marker-alt}} \hspace{0.5em} & xxx
\end{tabular}
\end{document}
Update
The problem seams to be related to font awesome?
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{fontawesome5}
\usepackage{tabularray}
\begin{document}
\begin{tblr}{Q[c,m]Q[l,m]]}
\hline
{\huge \faIcon{envelope}} \hspace{0.5em} & xxx\\
\hline
{\huge \faIcon{phone-square-alt}} \hspace{0.5em} & xxx\\
{\huge \faIcon{trophy}} \hspace{0.5em} & xxx y.o.\\
{\huge \faIcon{map-marker-alt}} \hspace{0.5em} & xxx
\end{tblr}
\end{document}







tabularraypackage which should be very simple: https://tex.stackexchange.com/questions/7208/how-to-vertically-center-the-text-of-the-cells/611601#611601 – user202729 Feb 03 '23 at 15:09{\huge }character in a cell and a normal character in the other cell, where both are on baseline… https://tex.stackexchange.com/a/673903/23418 I would go with\raisebox{}{}trials too https://tex.stackexchange.com/a/673871/23418 – gildux Feb 04 '23 at 02:04