是否可以按照这种特定方式排列小页面?

是否可以按照这种特定方式排列小页面?

我正在尝试使用 minipages 排列两个表格和一个公式,以获得如下结果:

我想要的是

到目前为止,我得到的最接近的代码如下:

我得到了什么

  \documentclass[paper=a4, fontsize=11pt]{scrartcl}
  \usepackage{float}



  \begin{document}

  \begin{table}[H]
      \begin{minipage}[b]{0.40\linewidth}
            \caption{Short table}
            \qquad
            \begin{tabular}{c c c c}
              A & B & C & D \\ \hline
              7 & 4 & 7 & 1 \\
              4 & 3 & 4 & 9 \\
              5 & 5 & 9 & 2 \\
           \end{tabular}
     \end{minipage}
     \qquad \quad
     \begin{minipage}[b]{0.55\linewidth}
            \caption{This table continues to the right}
            \begin{tabular}{c c c c}
                  E  & F & G & H    \\ \hline
                  3  & 1 & 1 & 1   \\
                  6  & 4 & 4 & 1   \\
                  9  & 8 & 7 & 9   \\
                  12 & 2 & 1 & 8   \\
                  15 & 8 & 1 & 7   \\
                  18 & 8 & 1 & 4   \\
                  21 & 9 & 1 & 5   \\
                  24 & 5 & 2 & 4 
              \end{tabular}
          \end{minipage}
     \begin{minipage}[b]{0.45\linewidth}
         \[R_{LED}=\frac{1.31+1.39+1.32}{3}=1.34k\Omega\]
    \end{minipage}
   \end{table}

   \end{document}

我很感激你能给我提供任何帮助

答案1

只需制作小页面:

\documentclass[paper=a4, fontsize=11pt]{scrartcl}

\begin{document}

\begin{table}
\begin{minipage}[t]{0.45\linewidth}
\caption{Short table}
\centering
\begin{tabular}{c c c c}
A & B & C & D \\ \hline
7 & 4 & 7 & 1 \\
4 & 3 & 4 & 9 \\
5 & 5 & 9 & 2 \\
\end{tabular}

\bigskip\bigskip

$\displaystyle R_{LED}=\frac{1.31+1.39+1.32}{3}=1.34k\Omega$
\end{minipage}\hfill
\begin{minipage}[t]{0.55\linewidth}
\caption{This table continues to the right}
\centering
\begin{tabular}{c c c c}
E& F & G & H\\ \hline
3& 1 & 1 & 1 \\
6& 4 & 4 & 1 \\
9& 8 & 7 & 9 \\
12 & 2 & 1 & 8 \\
15 & 8 & 1 & 7 \\
18 & 8 & 1 & 4 \\
21 & 9 & 1 & 5 \\
24 & 5 & 2 & 4 
\end{tabular}
\end{minipage}

\end{table}

\end{document}

在此处输入图片描述

不要使用[H]:你的文档会看起来很糟糕。我已警告你。;-)

相关内容