如何在 2 个段落中包含 4 个小节

如何在 2 个段落中包含 4 个小节

因此,我尝试在“2 个不同段落”中设置四个不同的小节。我的意思是:

                x ¦ x
              ----¦----
                x ¦ x

其中x表示我希望得到的文本(没有虚线,因为会有 4 组方程式)

编辑:这是我迄今为止所做的:

让我们定义以下内容:

\smallskip
$\chi_0(x) = 1$
\bigskip

$\chi_1(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a,   & \text{if } x = 1, \\
    a^2, & \text{if } x = 2, \\
    a^3, & \text{if } x = 3, \\
    a^4, & \text{if } x = 4, 
\end{cases}$

$\chi_2(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a^2, & \text{if } x = 1, \\
    a^4, & \text{if } x = 2, \\
    a,   & \text{if } x = 3, \\
    a^3, & \text{if } x = 4, 
\end{cases}$

$\chi_3(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a^3, & \text{if } x = 1, \\
    a,   & \text{if } x = 2, \\
    a^4, & \text{if } x = 3, \\
    a^2, & \text{if } x = 4, 
\end{cases}$

$\chi_4(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a^4, & \text{if } x = 1, \\
    a^3, & \text{if } x = 2, \\
    a^2, & \text{if } x = 3, \\
    a,   & \text{if } x = 4, 
\end{cases}$

首先,我想将其\chi_0(x)向下移动一行;另外四个“块”我希望它们并排出现,如下所示:

            chi_1(x) ¦ chi_3(x)
           ----------¦---------
            chi_2(x) ¦ chi_4(x)

我不确定该如何继续。

答案1

这里的“小节”和“段落”这两个词很容易让人误解,因为在 TeX 中它们指的是文本元素,而你写的是方程式。这可能是一种可能的实现(我不确定\chi_0应该在哪里)

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\begin{align*}
\chi_0(x) &= 1 \\[1ex]
\chi_1(x) &=
\begin{cases}
    1,   & \text{if } x = 0, \\
    a,   & \text{if } x = 1, \\
    a^2, & \text{if } x = 2, \\
    a^3, & \text{if } x = 3, \\
    a^4, & \text{if } x = 4, 
\end{cases}
&
\chi_3(x) &=
\begin{cases}
    1,   & \text{if } x = 0, \\
    a^3, & \text{if } x = 1, \\
    a,   & \text{if } x = 2, \\
    a^4, & \text{if } x = 3, \\
    a^2, & \text{if } x = 4, 
\end{cases}
\\[1ex]
\chi_2(x) &=
\begin{cases}
    1,   & \text{if } x = 0, \\
    a^2, & \text{if } x = 1, \\
    a^4, & \text{if } x = 2, \\
    a,   & \text{if } x = 3, \\
    a^3, & \text{if } x = 4, 
\end{cases}
&
\chi_4(x) &=
\begin{cases}
    1,   & \text{if } x = 0, \\
    a^4, & \text{if } x = 1, \\
    a^3, & \text{if } x = 2, \\
    a^2, & \text{if } x = 3, \\
    a,   & \text{if } x = 4.
\end{cases}
\end{align*}

\end{document}

在此处输入图片描述

答案2

正如 campa 所说,首先显示的没有代码的问题具有误导性,而在这种情况下可以很好地解决align* (+1)

因此,这个答案并不是为了寻找接受度,而只是为了展示在其他情况下你可以用带注释的小页面做什么,不仅仅是数学,因为小页面可以包含任何内容,甚至是一个真正的小节(例如\subsection{text} Text ...)带有图像、表格等。但当然,也只有用你的方程式才有可能:

\documentclass[12pt]{article}
\usepackage{amsmath}
\begin{document}

Let us define the following:


\[\chi_0(x) = 1\]

\noindent
\begin{minipage}[t]{.45\textwidth}
$\chi_1(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a,   & \text{if } x = 1, \\
    a^2, & \text{if } x = 2, \\
    a^3, & \text{if } x = 3, \\
    a^4, & \text{if } x = 4, 
\end{cases}$\bigskip
\end{minipage}\hfill%
\begin{minipage}[t]{.45\textwidth}
$\chi_3(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a^3, & \text{if } x = 1, \\
    a,   & \text{if } x = 2, \\
    a^4, & \text{if } x = 3, \\
    a^2, & \text{if } x = 4, 
\end{cases}$\bigskip
\end{minipage}\hfill%
\begin{minipage}[t]{.45\textwidth}
$\chi_2(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a^2, & \text{if } x = 1, \\
    a^4, & \text{if } x = 2, \\
    a,   & \text{if } x = 3, \\
    a^3, & \text{if } x = 4, 
\end{cases}$\bigskip
\end{minipage}\hfill%
\begin{minipage}[t]{.45\textwidth}
$\chi_4(x)$ = $\begin{cases}
    1,   & \text{if } x = 0, \\
    a^4, & \text{if } x = 1, \\
    a^3, & \text{if } x = 2, \\
    a^2, & \text{if } x = 3, \\
    a,   & \text{if } x = 4, 
\end{cases}$\bigskip
\end{minipage}\hfill%

\end{document}

相关内容