将表格中某一部分的所有单词设置为彩色

将表格中某一部分的所有单词设置为彩色

为了编写练习的解决方案,我想用红色填充表格中的答案。表格的标题应与练习的样式保持一致,并且只有表格的一部分应该着色。我可以通过\textcolor{red}{...}在我的表格的每个单元格中使用来实现这一点,但这非常残酷。我正在寻找一种解决方案来声明以下所有单词都必须为红色,直到环境表格结束。

我尝试了一些\color{red},但是没有效果。

这是一个小例子。

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[left=1.00cm, right=1.00cm, top=1.00cm, bottom=1.00cm]{geometry}

\usepackage{colortbl}
\usepackage{chemformula}
\begin{document}
    \begin{center}
        \footnotesize
        \renewcommand{\arraystretch}{1.5}
        \hspace*{-1cm}\begin{tabular}{|c|c|c||c|c|c|c|c|c|c|c|}
            \hline \rowcolor{black}
            \multicolumn{11}{|c|}{\textcolor{white}{Corps purs}}\\\hline
            \rowcolor{gray!90}
            élémentaires&
            \multicolumn{2}{c||}{simples} &  \multicolumn{8}{c|}{composés}\\ 
            \hline
            \rowcolor{gray!70}
            &métal.& non-métal. & \multicolumn{2}{c|}{Oxydes} & Hydroxydes & \multicolumn{2}{c|}{Acides}  & \multicolumn{2}{c|}{Sels}  & Corps organiques\\ 
            \hline 
            \rowcolor{gray!50}
            &&  & métal. & non-métal. &  & bin. & tern. & bin. & tern. &\\ 
            \hline 
            &&  &  &  &  &  &  &  &  &\ch{C6H12O6}\\ 
            \hline 
            && \ch{Fe2O3} &  &  &  &  &  &  &  &\\ 
            \hline 
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\
            \hline 
        \end{tabular}
    \end{center}
\end{document}

期望输出:

在此处输入图片描述

附言:我知道 Fe2O3 在错误的位置,它只是第二个元素:)!

答案1

假设表中的每个条目也使用\ch,您可以定义自己的命令,如下所示:

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[left=1.00cm, right=1.00cm, top=1.00cm, bottom=1.00cm]{geometry}

\usepackage{colortbl}
\usepackage{chemformula}

\newcommand{\redch}[1]{\textcolor{red}{\ch{#1}}}
\begin{document}
    \begin{center}
        \footnotesize
        \renewcommand{\arraystretch}{1.5}
        \hspace*{-1cm}\begin{tabular}{|c|c|c||c|c|c|c|c|c|c|c|}
            \hline \rowcolor{black}
            \multicolumn{11}{|c|}{\textcolor{white}{Corps purs}}\\\hline
            \rowcolor{gray!90}
            élémentaires&
            \multicolumn{2}{c||}{simples} &  \multicolumn{8}{c|}{composés}\\ 
            \hline
            \rowcolor{gray!70}
            &métal.& non-métal. & \multicolumn{2}{c|}{Oxydes} & Hydroxydes & \multicolumn{2}{c|}{Acides}  & \multicolumn{2}{c|}{Sels}  & Corps organiques\\ 
            \hline 
            \rowcolor{gray!50}
            &&  & métal. & non-métal. &  & bin. & tern. & bin. & tern. &\\ 
            \hline 
            &&  &  &  &  &  &  &  &  &\redch{C6H12O6}\\ 
            \hline 
            && \redch{Fe2O3} &  &  &  &  &  &  &  &\\ 
            \hline 
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\
            \hline 
        \end{tabular}
    \end{center}
\end{document}

您还可以使用\setchemformula{format=\color{red}}环境内部来改变该环境内部center的颜色 :\ch

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage[left=1.00cm, right=1.00cm, top=1.00cm, bottom=1.00cm]{geometry}

\usepackage{colortbl}
\usepackage{chemformula}


\begin{document}
    \begin{center}
    \setchemformula{format=\color{red}}
        \footnotesize
        \renewcommand{\arraystretch}{1.5}
        \hspace*{-1cm}\begin{tabular}{|c|c|c||c|c|c|c|c|c|c|c|}
            \hline \rowcolor{black}
            \multicolumn{11}{|c|}{\textcolor{white}{Corps purs}}\\\hline
            \rowcolor{gray!90}
            élémentaires&
            \multicolumn{2}{c||}{simples} &  \multicolumn{8}{c|}{composés}\\ 
            \hline
            \rowcolor{gray!70}
            &métal.& non-métal. & \multicolumn{2}{c|}{Oxydes} & Hydroxydes & \multicolumn{2}{c|}{Acides}  & \multicolumn{2}{c|}{Sels}  & Corps organiques\\ 
            \hline 
            \rowcolor{gray!50}
            &&  & métal. & non-métal. &  & bin. & tern. & bin. & tern. &\\ 
            \hline 
            &&  &  &  &  &  &  &  &  &\ch{C6H12O6}\\ 
            \hline 
            && \ch{Fe2O3} &  &  &  &  &  &  &  &\\ 
            \hline 
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\ 
            \hline
            &&  &  &  &  &  &  &  &  &\\
            \hline 
        \end{tabular}
    \end{center}
\end{document}

在此处输入图片描述

答案2

一个可能的解决方案(如果我理解你的问题正确的话)是将命令定向到所有列中。我为此\color{red}定义了一种新的列类型。此后,你将标题文本括在里面以防止着色。R\multicolumn{1}{c|}{<text>}

你可以适应大卫卡莱尔回答了这个问题到您的代码中,并定义一个接受 -command 的新列\rowfont(也在代码中定义):

示例 1 – 定义\rowfont-command

在此处输入图片描述

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{array}

\newcolumntype{C}{>{\rowfont}c}
\newcommand\setrowfont[1]{\noalign{\gdef\rowfont{#1}}}
\gdef\rowfont{}

\usepackage[left=1.00cm, right=1.00cm, top=1.00cm, bottom=1.00cm]{geometry}

\usepackage{colortbl}
\usepackage{chemformula}
\begin{document}
    \begin{center}
        \footnotesize
        \renewcommand{\arraystretch}{1.5}
        \hspace*{-1cm}\begin{tabular}{|*{3}{C|}|*{8}{C|}}
            \hline \rowcolor{black}
            \multicolumn{11}{|c|}{\textcolor{white}{Corps purs}}\\\hline
            \rowcolor{gray!90}
            élémentaires &
            \multicolumn{2}{c||}{simples} &
            \multicolumn{8}{c|}{composés}\\ 
            \hline
            \rowcolor{gray!70}
            &
            métal. &
            non-métal. &
            \multicolumn{2}{c|}{Oxydes} &
            Hydroxydes &
            \multicolumn{2}{c|}{Acides} &
            \multicolumn{2}{c|}{Sels} &
            Corps organiques\\ 
            \hline 
            \rowcolor{gray!50}
            &&  &
            métal. &
            non-métal. &
            &
            bin. &
            tern. &
            bin. &
            tern. &\\ 
            \hline \setrowfont{\color{red}}
            &&  X&  &  &  &  &  &  &  &\ch{C6H12O6}\\ 
            \hline 
            && \ch{Fe2O3} &  &  &  &  &  &  &  &\\ 
            \hline 
            X&X& X & X & X & X & X & X & X & X &X\\ 
            \hline
            &&  X&  &  &  &  &  &  &  &\\ 
            \hline
            &&  X&  &  &  &  &  &  &  &\\ 
            \hline
            &&  X&  &  &  &  &  &  &  &\\
            \hline 
        \end{tabular}
    \end{center}
\end{document}

示例 2 – >{color{red} and\multicolomn}}

在此处输入图片描述

\documentclass[11pt,a4paper]{report}
\usepackage[utf8]{inputenc}
\usepackage{array}

\usepackage[left=1.00cm, right=1.00cm, top=1.00cm, bottom=1.00cm]{geometry}

\newcolumntype{R}{>{\color{red}}c}

\usepackage{colortbl}
\usepackage{chemformula}
\begin{document}
    \begin{center}
        \footnotesize
        \renewcommand{\arraystretch}{1.5}
        \hspace*{-1cm}\begin{tabular}{|*{3}{R|}|*{8}{R|}}
            \hline \rowcolor{black}
            \multicolumn{11}{|c|}{\textcolor{white}{Corps purs}}\\\hline
            \rowcolor{gray!90}
            \multicolumn{1}{c|}{élémentaires} &
            \multicolumn{2}{c||}{simples} &
            \multicolumn{8}{c|}{composés}\\ 
            \hline
            \rowcolor{gray!70}
            &
            \multicolumn{1}{c|}{métal.} &
            \multicolumn{1}{c||}{non-métal.} &
            \multicolumn{2}{c|}{Oxydes} &
            \multicolumn{1}{c|}{Hydroxydes} &
            \multicolumn{2}{c|}{Acides}  &
            \multicolumn{2}{c|}{Sels} &
            \multicolumn{1}{c|}{Corps organiques}\\ 
            \hline 
            \rowcolor{gray!50}
            &&  &
            \multicolumn{1}{c|}{métal.} &
            \multicolumn{1}{c|}{non-métal.} &
            &
            \multicolumn{1}{c|}{bin.} &
            \multicolumn{1}{c|}{tern.} &
            \multicolumn{1}{c|}{bin.} &
            \multicolumn{1}{c|}{tern.} &\\ 
            \hline 
            &&  X&  &  &  &  &  &  &  &\ch{C6H12O6}\\ 
            \hline 
            && \ch{Fe2O3} &  &  &  &  &  &  &  &\\ 
            \hline 
            X&X& X & X & X & X & X & X & X & X &X\\ 
            \hline
            &&  X&  &  &  &  &  &  &  &\\ 
            \hline
            &&  X&  &  &  &  &  &  &  &\\ 
            \hline
            &&  X&  &  &  &  &  &  &  &\\
            \hline 
        \end{tabular}
    \end{center}
\end{document}

相关内容