垂直对齐单元格表格

垂直对齐单元格表格
\begin{tabularx}{\textwidth}{>{\raggedright\arraybackslash}Xr}
\textbf{Sample Text\hfill\break next line} & aligin bottom right \\ \hline
\end{tabularx}

如何使第二列对齐右下角,现在是对齐右上角

类似这样的

在此处输入图片描述

答案1

\renewcommand{\tabularxcolumn}[1]{b{#1}}您可以在加载包后发出指令tabularx

在此处输入图片描述

\documentclass{article}
\usepackage{tabularx}
\renewcommand{\tabularxcolumn}[1]{b{#1}}
\begin{document}
\noindent
\begin{tabularx}{\textwidth}{>{\raggedright}X r}
\textbf{Sample Text\hfill\break next line} 
& align bottom right \\ 
\hline
\end{tabularx}
\end{document} 

相关内容