答案1
答案2
看起来这个问题之前已经被问过几次了,但我无法使用谷歌或搜索找到它,但 SE 的相关搜索帮我找到了它。
以下是使用 \raisebox 实现的一种方法:
\documentclass{article}
\begin{document}
\raisebox{0.5ex}{\tiny smaller text should be aligned level with} the following text here
\end{document}
答案3
adjustbox
提供一个valign=t
选项,将锚点更改为t
op:
\documentclass{article}
\usepackage{adjustbox}
\begin{document}
some regular text
\adjustbox{valign=t}{\tiny smaller text should be aligned level with}
\adjustbox{valign=t}{the following text here}
\end{document}