我正在图论中学习数学博士学位。在我的论文中,我必须为Latex中表格的特定单元格行(图形的边缘)着色。可以这样做吗?我只找到了一种为整行着色的方法。
答案 0 :(得分:2)
您可以使用\cellcolor
包中的xcolor
为特定单元格着色:
\documentclass{standalone}
\usepackage[table]{xcolor}
\begin{document}
\begin{tabular}{r|c|l}
A & B & C \\\hline
1 & 2 & 3 \\\hline
x & y & \cellcolor{red!25}z
\end{tabular}
\end{document}
答案 1 :(得分:1)
首先建议,手动为每个单元格中的文本着色(如果表格不是太大):
\documentclass[english]{report}
\usepackage{color}
\usepackage{booktabs}
\definecolor{light-blue}{rgb}{0.6,0.6,1}
\begin{document}
\begin{table}
\begin{tabular}{lr}
\toprule
\color{red}{Some text} & \color{light-blue}{and some other}\\
\color{cyan}{inside} & \color{green}{a table}\\
\bottomrule
\end{tabular}
\end{table}
\end{document}
生成下表。
默认颜色为black
,white
,red
,green
,blue
,cyan
,magenta
,{{ 1}}和更多详细信息包括here。