表格对齐

表格对齐

我想问一下如何对齐该表以便所有二进制数据都准确地位于相应的标题“x_i”下?

\documentclass[a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{tabularx,ragged2e,booktabs,caption}
\newcolumntype{C}[1]{>{\Centering}m{#1}}
\renewcommand\tabularxcolumn[1]{C{#1}}
\begin{document}

\begin{table}
\caption{Table Title}‎
\centering
‎\begin{tabular}{||c c c||}
‎\hline‎
\text{$‎\mathcal{C}-x_1‎$‎‎}  &  \text{$‎\mathcal{C}^x_1‎$} & \text{$‎tail_{x_1}
(\mathcal{C})‎$}\\ [0.5ex]‎
‎\hline\hline‎
‎$‎x_2‎$ ‎‎$‎x_3‎$ ‎‎$‎x_4‎$‎   &    $‎x_2‎$ ‎‎$‎x_3‎$ ‎‎$‎x_4‎$  &    ‎$‎x_1$ $‎x_2‎$ ‎‎$‎x_3‎$ ‎‎$‎x_4‎$ \\ 
[0.5ex]‎
‎\hline\hline‎
‎0 0 0    &    0 0 0    &    0 1 0 1    \\ [0.5ex]‎
‎0 1 0    &    ‎0 1 0    &    ‎0 1 1 0    \\ [0.5ex]‎
‎0 1 1    &    ‎0 1 1    &    0 1 1 1    \\ [0.5ex]‎
1 0 0    &    1 0 0    &                  \\ [0.5ex]‎
‎1 0 1    &               &                  \\ [0.5ex]‎
1 1 0    &               &                  \\ [0.5ex]‎ 
1 1 1    &               &                  \\ [0.5ex]‎           
         &               &                   \\ [1ex]‎
‎\hline‎  ‎‎
\bottomrule[1.25pt]
\end {tabular}
\\[10pt]
\caption*{See This}
\end{table}‎ \vspace{0.5cm}‎ ‎

\end{document}

答案1

在数学试验台上我为下表编写了代码:

在此处输入图片描述

梅威瑟:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}

\usepackage{amsmath, amssymb}
\usepackage{array, booktabs}
\newcommand\mcx[2]{\multicolumn{#1}{c}{$#2$}}

\usepackage[skip=1ex]{caption}

\begin{document}
    \begin{table}
\caption{Table title}
\label{tab:codetable}
    \centering
\setlength\tabcolsep{3pt}
\begin{tabular}{*{12}{>{\ttfamily}c}}
    \toprule
\mcx{3}{\mathcal{C} - x_1} &
    &   \mcx{3}{\mathcal{C}^x_1} &
        &  \mcx{4}{\text{tail}_{x_1}(\mathcal{C})}   \\
$x_2$ & $x_3$ & $x_4$ &
    & $x_2$ & $x_3$ & $x_4$ &
        & $x_1$ & $x_2$ & $x_3$ & $x_4$              \\
    \cmidrule{1-3}
    \cmidrule{5-7}
    \cmidrule{9-12}
0 & 0 & 0  &&  0 & 0 & 0   &&  0 & 1 & 0 & 1            \\
0 & 1 & 0  &&  0 & 1 & 0   &&  0 & 1 & 1 & 0            \\
0 & 1 & 1  &&  0 & 1 & 1   &&  0 & 1 & 1 & 1            \\
1 & 0 & 0  &&  1 & 0 & 0   &&    &   &   &              \\
1 & 0 & 1  &&    &   &     &&    &   &   &              \\
1 & 1 & 0  &&    &   &     &&    &   &   &              \\
1 & 1 & 1  &&    &   &     &&    &   &   &              \\
    \bottomrule
\end{tabular}
    \end{table}
\dots, see table \ref{tab:codetable}.
\end{document}

编辑: 我对你的代码有些疑惑。它似乎包含隐藏字符或未知编码字符,导致我的编辑器出现问题。这就是我喜欢看你的文档前言的主要原因。现在,希望我能解决这个问题(通过重新输入你的代码):-)

相关内容