我在文档中使用 xcolor\cellcolor
命令创建了多个表格,但它会稍微偏移文本,因此无法正确居中。\rowcolor
不会表现出相同的行为。它看起来就像这样:
有人知道为什么会这样以及在全球范围内如何解决这个问题吗?
\documentclass{article}
\usepackage[table]{xcolor}
\begin{document}
\begin{tabular}{|c|}
Centred \\ \hline
\cellcolor{white} Centred \\ \hline
Centred \\ \hline
\rowcolor{white} Centred
\end{tabular}
\end{document}