Starting a new line below a certain word [duplicate]
This question already has an answer here:
Aligned, hanging indents in non-monospaced code
2 answers
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.
line-spacing
marked as duplicate by Werner, Stefan Pinnow, CarLaTeX, Sebastiano, Kurt Feb 3 at 9:17
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Aligned, hanging indents in non-monospaced code
2 answers
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.
line-spacing
marked as duplicate by Werner, Stefan Pinnow, CarLaTeX, Sebastiano, Kurt Feb 3 at 9:17
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
You can usephantom
or thetabbing
environment, or atabular
. It depends on what the ultimate context is.
– Werner
Feb 3 at 1:45
The provided answer by @Steven is what I was seeking and it is succinct and to the point.
– Rob
Feb 3 at 2:43
add a comment |
This question already has an answer here:
Aligned, hanging indents in non-monospaced code
2 answers
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.
line-spacing
This question already has an answer here:
Aligned, hanging indents in non-monospaced code
2 answers
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.
This question already has an answer here:
Aligned, hanging indents in non-monospaced code
2 answers
line-spacing
line-spacing
asked Feb 3 at 1:33
RobRob
474
474
marked as duplicate by Werner, Stefan Pinnow, CarLaTeX, Sebastiano, Kurt Feb 3 at 9:17
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Werner, Stefan Pinnow, CarLaTeX, Sebastiano, Kurt Feb 3 at 9:17
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
You can usephantom
or thetabbing
environment, or atabular
. It depends on what the ultimate context is.
– Werner
Feb 3 at 1:45
The provided answer by @Steven is what I was seeking and it is succinct and to the point.
– Rob
Feb 3 at 2:43
add a comment |
You can usephantom
or thetabbing
environment, or atabular
. It depends on what the ultimate context is.
– Werner
Feb 3 at 1:45
The provided answer by @Steven is what I was seeking and it is succinct and to the point.
– Rob
Feb 3 at 2:43
You can use
phantom
or the tabbing
environment, or a tabular
. It depends on what the ultimate context is.– Werner
Feb 3 at 1:45
You can use
phantom
or the tabbing
environment, or a tabular
. It depends on what the ultimate context is.– Werner
Feb 3 at 1:45
The provided answer by @Steven is what I was seeking and it is succinct and to the point.
– Rob
Feb 3 at 2:43
The provided answer by @Steven is what I was seeking and it is succinct and to the point.
– Rob
Feb 3 at 2:43
add a comment |
1 Answer
1
active
oldest
votes
documentclass{article}
usepackage{tabto}
newcommandrememberthisspot{%
tabto*{0pt}letthisspotTabPrevPostabto{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}
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
documentclass{article}
usepackage{tabto}
newcommandrememberthisspot{%
tabto*{0pt}letthisspotTabPrevPostabto{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}
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
add a comment |
documentclass{article}
usepackage{tabto}
newcommandrememberthisspot{%
tabto*{0pt}letthisspotTabPrevPostabto{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}
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
add a comment |
documentclass{article}
usepackage{tabto}
newcommandrememberthisspot{%
tabto*{0pt}letthisspotTabPrevPostabto{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}
documentclass{article}
usepackage{tabto}
newcommandrememberthisspot{%
tabto*{0pt}letthisspotTabPrevPostabto{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}
answered Feb 3 at 1:45
Steven B. SegletesSteven B. Segletes
154k9198405
154k9198405
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
add a comment |
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
Thanks! It works perfectly.
– Rob
Feb 3 at 1:50
add a comment |
You can use
phantom
or thetabbing
environment, or atabular
. It depends on what the ultimate context is.– Werner
Feb 3 at 1:45
The provided answer by @Steven is what I was seeking and it is succinct and to the point.
– Rob
Feb 3 at 2:43