我想在上一行的某个单词下方直接开始新行。例如,让第一行以“让 A 表示...”开头,我希望第二行以“B 表示...”开头。但是我希望“B”正好位于“A”下方。在 Latex 中是否有技术方法可以做到这一点?如果您有任何其他建议,请告诉我。
答案1
\documentclass{article}
\usepackage{tabto}
\newcommand\rememberthisspot{%
\tabto*{0pt}\let\thisspot\TabPrevPos\tabto{\TabPrevPos}}
\begin{document}
Let \rememberthisspot A denote...
\tabto{\thisspot}B denote...\bigskip
Now really I want \rememberthisspot A to denote...
\tabto{\thisspot}B to denote.
\end{document}