您能将双栏文章拆分成更多栏吗?

您能将双栏文章拆分成更多栏吗?

我喜欢像这样写数学笔记/讲稿:

\documentclass[twocolumn, 10px]{article}

在我发现上述代码之前,我使用包 paracol 随时拆分页面,但我的教授最近开始在表格环境旁边写方程式。我的问题是,当已经采用双列格式时,是否有一种简单的方法可以将方程式并排写在表格环境的左侧或右侧。例如,如果我想要蓝色圆圈中的方程式但仍保留在左列中:

在此处输入图片描述

虽然我怀疑你们需要这么简单的表格的代码,但我还是提供了它以防万一:)

\begin{tabular}{c|c}
 $x$ & $f(x)$ \\
   \hline
 $0$ & $1-p$ \\
 $1$ & $p$
 \end{tabular}

编辑:进一步测试我意识到如果我将代码添加到表格末尾,它确实会在表格右侧居中生成一个方程式

\begin{tabular}{c|c}
 $x$ & $f(x)$ \\
   \hline
 $0$ & $1-p$ \\
 $1$ & $p$
 \end{tabular} $f(x)=p^x(1-p)^{1-x}\enspace x=0,1$

在此处输入图片描述

但我认为这只有在我需要一个方程式时才会起作用,但如果我需要几个方程式或者可能是一个案例环境,我不确定这种方法是否有效。

答案1

只是一个建议:您可以使用 align* 丢失方程编号。

\documentclass[twocolumn, 10pt]{article}% 10px is not supported, and would be incredibly tiny
\usepackage{amsmath}
\begin{document}
\begin{align}
  \begin{array}{c|c}
     x & f(x) \\
     \hline
     0 & 1-p \\
     1 & p
  \end{array} && % every second & separates an equation
  f(x)=p^x(1-p)^{1-x}\quad x=0,1
\end{align}
\end{document}

演示

答案2

以下是使用两个小页面的替代建议:

在此处输入图片描述

\documentclass[twocolumn]{article}
\usepackage{amsmath}
\usepackage{lipsum} % just for dummy text. Do not use in actual document.
\begin{document}
\lipsum[1]
\begin{minipage}{0.25\linewidth}
  \[\begin{array}{c|c}
     x & f(x) \\
     \hline
     0 & 1-p \\
     1 & p
  \end{array}\]
\end{minipage}%
\begin{minipage}{0.75\linewidth}
  \[f(x)=p^x(1-p)^{1-x}\quad x=0,1\]
\end{minipage}

\lipsum
\end{document}

相关内容