答案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}