如果我说string replace={x}{\cellcolor{pink}x}
一个包含内容“x”的单元格被突出显示。
但是如何同时突出显示“x”的行和列呢?
\documentclass[]{article}
\usepackage{pgfplotstable}
\pgfplotsset{compat=newest}
\pgfplotstableset{string type, col sep=comma, header=false}
\pgfplotstableread[]{
a, b, c
d, e, f
g, x, i
j, k, l
}\mytable
\usepackage{colortbl}
\begin{document}
\section{Highlight a Cell with special Content}
\pgfplotstabletypeset[
string replace={x}{\cellcolor{pink}x}
]{\mytable}
\section{Highlight row, column too?}
\pgfplotstabletypeset[
string replace={x}{\cellcolor{pink}x}
]{\mytable}
\end{document}