如何将文本“并排”放置

如何将文本“并排”放置

我想创建这样的东西:

enter image description here

左侧有定义,右侧有示例。左侧和右侧可以简单地用“\qquad”分隔。但这只是在页面的一个特定位置,我不希望将整个页面分成两列(如使用 multicol)

这个想法有点像子图,你可以将图片并排放置

这是通过表格完成的吗?我们是否在给定位置将页面分成两列?实现此目的的最佳方法是什么?

答案1

两个并排的minipage环境都可以工作。在下面的例子中,左侧小页面的宽度是右侧小页面的两倍;您可以随意调整相对大小以满足您的需要。

enter image description here

\documentclass{article}
\usepackage{amsmath} % for "\text" macro
\begin{document}

\noindent
\begin{minipage}[t]{0.6667\textwidth}
\textbf{Root test}: 
Given $\displaystyle \sum_{n=1}^\infty \lvert a_n\rvert^{\frac{1}{n}}$ then:

\smallskip
1. $L>0 \Rightarrow \text{Divergent}$

2. $L<0 \Rightarrow \text{Convergent}$

3. $L=0 \text{ Undetermined}$
\end{minipage}% % leave no gap
\begin{minipage}[t]{0.3333\textwidth}
Divergent:

$\displaystyle \sum_{n=1}^\infty \frac{-12^n}{n}$

\bigskip
Convergent:

$\displaystyle \sum_{n=1}^\infty \frac{n^n}{3^{1+2n}}$
\end{minipage}

\end{document}

答案2

enter image description here

可以像以下方式使用 \parbox{...}{...}\hfill\parbox{...}{...} :

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\parbox{0.6\textwidth}{
\textbf{Root test}: 
Given $\displaystyle \sum_{n=1}^\infty \lvert a_n\rvert^{\frac{1}{n}}$ then:

\smallskip
1. $L>0 \Rightarrow \text{Divergent}$

2. $L<0 \Rightarrow \text{Convergent}$

3. $L=0 \text{ Undetermined}$
}
\hfill
\parbox{0.3\textwidth}{
Divergent:

$\displaystyle \sum_{n=1}^\infty \frac{-12^n}{n}$

\bigskip
Convergent:

$\displaystyle \sum_{n=1}^\infty \frac{n^n}{3^{1+2n}}$
}

\end{document}

相关内容