如何在两行之间写一行?

如何在两行之间写一行?

我怎样才能在 LaTex 中写这样的文字 我怎样才能在 LaTex 中写这样的文字。

答案1

在此处输入图片描述

\documentclass{article}
\begin{document}
I want to do something similar.  There is some text.   There is some text.

\qquad I have one sentence here 
\begin{tabular}{l}
  Outcome one\\
  Outcome two
\end{tabular}

And then my passage moves on.  There is some text.   There is some text.
\end{document}

答案2

作为单独的段落,然后作为单个段落。请注意,堆叠的材料不会换行。从问题中不清楚这是否是一个问题。

产生\stackanchor垂直分割的文本,同时\addstackgap在堆栈上方/下方添加垂直缓冲区。

\documentclass[a4paper]{article}
\usepackage{stackengine}
\def\stackalignment{l}
\begin{document}
I want to do something similar.  There is some text.   There is some text.

\qquad have one sentence here \addstackgap[5pt]{\stackanchor[8pt]{Outcome one}{Outcome two}}

And then my passage moves on.  There is some text.   There is some text.


\bigskip
I want to do something similar.  There is some text.   There is some text.
have one sentence here \addstackgap[5pt]{\stackanchor[8pt]{Outcome one}{Outcome two}}
And then my passage moves on.  There is some text.   There is some text.
\end{document}

在此处输入图片描述

相关内容