我想对hline进行着色,例如:
\hline[color=red,width=2mm,dashed]
或者其他什么。
以下是一次失败的微弱尝试。我在{|}
周围放置了textcolor grey以尝试使其变灰。理想情况下,我希望它是灰色和虚线。还要注意{\hline}
标记周围的textcolor grey。任何帮助将不胜感激使用乳胶语法。
\hline
是否有属性?如果是这样,文档在哪里?我喜欢php.net以满足其他编程需求。
\begin{array}{c\textcolor{gray}{|}cccccccccc}
& \textcolor{gray}{P_1} & \textcolor{gray}{P_2} & \textcolor{gray}{P_3} & \textcolor{gray}{P_4} & \textcolor{gray}{P_5} & \textcolor{gray}{P_6} & \textcolor{gray}{P_7} & \textcolor{gray}{P_8} & \textcolor{gray}{P_9} & \textcolor{gray}{P_{10}}\\
\textcolor{gray}{\hline}
\textcolor{gray}{P_1} &0&0&0&0&0&0&0&0&0&0\\
\textcolor{gray}{P_2} & 0&0&0&0&0&0&0&0&0&0\\
\textcolor{gray}{P_3} &0&0&0&0&0&0&0&0&0&0\\
\textcolor{gray}{P_4} &0&1&1&0&0&0&0&0&0&0\\
\textcolor{gray}{P_5} &1&1&0&0&0&0&0&0&0&0\\
\textcolor{gray}{P_6} &0&0&0&0&0&0&0&0&0&0\\
\textcolor{gray}{P_7} &1&1&0&0&1&1&0&0&0&0\\
\textcolor{gray}{P_8} &1&0&0&1&0&1&0&0&0&0\\
\textcolor{gray}{P_9} &0&0&1&0&0&0&0&0&0&0\\
\textcolor{gray}{P_{10}} &0&0&0&0&0&1&0&1&0&0
\end{array}
答案 0 :(得分:6)
答案 1 :(得分:0)
使用官方软件包即可;)
在序言中写下以下内容:
\usepackage{xcolor}
\usepackage{colortbl}
%It sets your colour line and then sets back to default (black)
\newcommand{\grayline}{\arrayrulecolor{gray}\hline\arrayrulecolor{black}}
在表格中使用与 \grayline
完全相同的 \hline
。