合并表中的文本

合并表中的文本

我不知道为什么合并列顶部的文本总是会重复。 \textbf{A}第 6 行表格中显示为 AA,我不知道为什么。

谢谢你的帮助。

\begin{figure}[!htbp]
\centering
    \subfloat[$A\land B$ (AND)]{\label{fig:fAndOp}
        \begin{tabular}{|c|c|c|c|c|}
            \hhline {~~|---}
            \multicolumn{1}{c}{} &  &  \multicolumn{3}{c|}{ \textbf{A}} \tabularnewline
            \hhline {~~|---}
            \multicolumn{1}{c}{} &\Large$ \land  $  & \cellcolor[gray]{0.9} \textbf{0} & \cellcolor[gray]{0.9} \textbf{1} & \cellcolor[gray]{0.9} \textbf{N}\tabularnewline
            \hline
            \multirow{3}{*}{} & \cellcolor[gray]{0.9}\textbf{0} & 0 & 0 & N\tabularnewline
            \hhline {|~|----}
             \textbf{B}& \cellcolor[gray]{0.9} \textbf{1} & 0 & 1 & N\tabularnewline
            \hhline {|~|----}
             & \cellcolor[gray]{0.9} \textbf{N} & N & N & N\tabularnewline
            \hline
        \end{tabular}
    }
\caption{Primitive functions in three-value logic }
\label{fig:fOperators}
\end{figure}

答案1

对我来说很好。您需要按照以下方法进行完整的 MWE 来定位问题

\documentclass{article}
\usepackage{subfig,hhline,xcolor,colortbl,multirow}

\begin{document}
\begin{table}
\centering
\subfloat[$A\land B$ (AND)]{\label{fig:fAndOp}
    \begin{tabular}{|c|c|c|c|c|}
        \hhline {~~|---}
        \multicolumn{1}{c}{} &  &  \multicolumn{3}{c|}{\textbf{A}} \tabularnewline
        \hhline {~~|---}
        \multicolumn{1}{c}{} &\Large$ \land  $  & \cellcolor[gray]{0.9} \textbf{0} & \cellcolor[gray]{0.9} \textbf{1} & \cellcolor[gray]{0.9} \textbf{N}\tabularnewline
        \hline
        \multirow{3}{*}{} & \cellcolor[gray]{0.9}\textbf{0} & 0 & 0 & N\tabularnewline
        \hhline {|~|----}
         \textbf{B}& \cellcolor[gray]{0.9} \textbf{1} & 0 & 1 & N\tabularnewline
        \hhline {|~|----}
         & \cellcolor[gray]{0.9} \textbf{N} & N & N & N\tabularnewline
        \hline
    \end{tabular}
}
\caption{Primitive functions in three-value logic }
\label{fig:fOperators}
\end{table}
\end{document}

在此处输入图片描述

相关内容