如何在 tikz 中绘制二群论表

如何在 tikz 中绘制二群论表

我将在我的 Beamer 演示文稿中添加两个表格。我想绘制下面给出的两个表格。

\begin{center}

\begin{tabular}{ |c|c|c|c| } 

\hline

col1 & col2 & col3 \\

\hline

\multirow{3}{4em}{Multiple row} & cell2 & cell3 \\ 

& cell5 & cell6 \\ 

& cell8 & cell9 \\ 

\hline

\end{tabular}

\end{center}

上面的表格有两个问题,首先它是一个封闭的盒子,我不需要(见下图);其次我想将两个表格放在一起,而不是一个接一个地放在一起。

但我想要以下格式的表格:

在此处输入图片描述

答案1

就是这样:

\documentclass{article}
\usepackage{multirow}
\begin{document}
\begin{center}

\begin{tabular}{ c| c c c c } 
  0? &$a_1$&$a_2$&\ldots&$a_n$\\\hline
  $a_n$&$a_1$&$a_2$&\ldots&$a_n-1$\\
  \vdots&&&&\\
  \\
\multicolumn{5}{c}{$H(0,1)$}
\end{tabular}\hspace{50pt}
\begin{tabular}{ c| c c c c } 
  0? &$a_1$&$a_2$&\ldots&$a_n$\\\hline
  $a_n$&$a_1$&$a_2$&\ldots&$a_n-1$\\
  \vdots&&&&\\
   \\
\multicolumn{5}{c}{$H(0,1)$}
\end{tabular}

\end{center}
\end{document}

在此处输入图片描述

答案2

使用科莱格尔按照你的方式回答(难道这么难提供吗?)并采纳了我上面的评论作为答案:

\documentclass{beamer}
\usepackage{multirow}
\begin{document}
\begin{frame}
\frametitle{Group theory table}
\[
    \begin{array}{ c| c c c c }
    0   &   a_1 &   a_2 &   \ldots  &   a_n     \\
    \hline
    a_n &   a_1 &   a_2 &   \ldots  &   a_{n-1} \\
    \vdots  &   &       &           &           \\[3ex]
    \multicolumn{5}{c}{$H(0,1)$}
    \end{array}\qquad
    \begin{array}{ c| c c c c }
    0   &   a_1 &   a_2 &   \ldots  &   a_n     \\
    \hline
    a_n &   a_1 &   a_2 &   \ldots  &   a_{n-1} \\
    \vdots  &   &       &           &           \\[3ex]
    \multicolumn{5}{c}{$H(0,1)$}
    \end{array}
\]
\end{frame}
\end{document}

结果:

答案3

这可能是一个粗鲁的尝试,但这足够吗?

在此处输入图片描述

\documentclass[10pt,a4paper,twoside]{article}
\usepackage{amsmath, amssymb}
\usepackage{amsthm}
\usepackage[all]{xy}

\begin{document}

\[
\begin{array}{c|cccccc|ccccc}
\circ & a_1 & a_2 & \cdots & a_n & \qquad & \circ & b_1 & b_2 & \cdots & b_n \\
\cline{1-5} \cline{7-11}
a_1 & a_1 & a_2 & \cdots & a_n & & b_1 & b_2 & b_2 & \cdots & b_n \\
a_2 & a_3 & a_4 & \cdots & a_{n-1} & & b_2 & b_2 & b_3 & \cdots & b_n \\
\vdots & \vdots & \vdots & & \vdots & & \vdots & \vdots & \vdots & & \vdots \\
a_n & a_4 & a_5 & \cdots & a_6 & & b_n & b_2 & b_3 & \cdots & b_5 \\
\multicolumn{11}{c}{} \\
\multicolumn{1}{c}{} & \multicolumn{2}{l}{(G,\circ)} & & & & \multicolumn{1}{c}{} 
& \multicolumn{2}{l}{(H,\circ)}
\end{array}
\]

\end{document}

相关内容