我想在对齐文本中结束一行而不拉伸该行。基本上,我想让 \linbreak 对齐它结束的那一行。
为此,我不想使用 setparsizes (或类似功能),因为我仍然希望能够使用 \par。
谢谢
答案1
您可以使用\\
或\newline
,并且它们都不会妨碍使用\par
使用\\
This is a line that I want to break the line after.\\ This is the next line
或者
This is a line that I want to break the line after.\\
This is the next line
使用\newline
This is a line that I want to break the line after.\newline This is the next line
或者
This is a line that I want to break the line after.\newline
This is the next line