I would like to start a new line directly below a certain word in previous line. For example, let the first line begins by 'Let A denote ...' and I want to have 'B denote ...' for the second line. However I want 'B' to be exactly below 'A'. Is there a technical method of doing this in Latex? If you have any other suggestions, please let me know.
Asked
Active
Viewed 515 times
6
1 Answers
11
\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}
Steven B. Segletes
- 237,551

\phantomor thetabbingenvironment, or atabular. It depends on what the ultimate context is. – Werner Feb 03 '19 at 01:45