Answers for "latex table multiline"

1

multiline underbrace latex

\[
  \underbrace{...}_{\substack{\text{Some long text that} \\ \text{should be multiline}}}
\]
Posted by: Guest on September-21-2021
0

latex table multiline

\documentclass{article}

\begin{document} 
\begin{tabular}{ccc}
    one & two & three \\
    one & two & \shortstack{aa \\ bb}\\

\end{tabular}
\end{document}
Posted by: Guest on March-28-2022
0

latex table multiline

\begin{tabular}{l|p{15mm}}
  \hline
  foo & bar \newline rlz \\
  \hline
\end{tabular}
Posted by: Guest on March-28-2022

Browse Popular Code Answers by Language