我正在尝试将表格包含到我的一个投影仪框架中。我希望此表格的每隔一列都有灰色背景。在我的 LaTeX 文档中,以下代码有效:
\definecolor{Gray}{gray}{0.9}
\newcolumntype{g}{>{\columncolor{Gray}}c}
\begin{table}[ht]
\centering
\begin{tabular}{c|g|c|g|c|g}
5.35 & 0.35 & 5.61 & -0.39 & 6.84 & -0.16 \\
5.45 & 0.45 & 5.52 & -0.48 & 6.84 & -0.16 \\
5.45 & 0.45 & 5.51 & -0.49 & 6.96 & -0.04 \\
5.45 & 0.45 & 5.63 & -0.37 & 6.96 & -0.04
\end{tabular}
\caption{my caption.}
\label{myTable}
\end{table}
但是,这在 Beamer 中不起作用。我正在使用软件包\usepackage{xcolor}
。现在,我发现这个博客我应该将 documentclass 改为\documentclass[xcolor=table]{beamer}
使用\usepackage[table]{xcolor}
,然后一切都应该正常工作。这里的问题是我使用的是自定义模板,而不是 beamer 模板。无论如何,我无法理解这一点,它不应该那么复杂,不是吗?
不幸的是,弹出的错误消息根本没有帮助。它只是说:Undefined control sequence \end{frame}
答案1
包beamer
加载xcolor
包。如果你想为添加一些选项xcolor
,你应该在文档类选项之间写上此选项:
\documentclass[table]{beamer} % <--- option "table" is passed to "xcolor" pacage
\definecolor{Gray}{gray}{0.9}
\newcolumntype{g}{>{\columncolor{Gray}}c}
\begin{document}
\begin{frame}
\frametitle{My colored table}
\begin{table}% table in beamer isn't float ...
\centering
\begin{tabular}{c|g|c|g|c|g}
5.35 & 0.35 & 5.61 & -0.39 & 6.84 & -0.16 \\
5.45 & 0.45 & 5.52 & -0.48 & 6.84 & -0.16 \\
5.45 & 0.45 & 5.51 & -0.49 & 6.96 & -0.04 \\
5.45 & 0.45 & 5.63 & -0.37 & 6.96 & -0.04
\end{tabular}
\caption{my caption.}
\label{myTable}
\end{table}
\end{frame}
\end{document}
它给出了期望的结果:
答案2
由于tikzpicture
适合于该类beamer
(它们是由同一作者 Till Tantao 编写的),因此可以将其制作为tikzpicture
。无需加载选项[table]
。
\documentclass{beamer}
\usepackage{tikz}
% I mimick the way of putting a row in a table
\newcommand{\putrow}[7]{
\path (0,#1) node{#2}
++(0:1) node{#3} ++(0:1) node{#4}
++(0:1) node{#5} ++(0:1) node{#6} ++(0:1) node{#7};
}
\begin{document}
\begin{frame}
\frametitle{Colored table}
\centering
\begin{tikzpicture}[xscale=1.2,yscale=.5]
\begin{scope}[shift={(-.5,.5)}]
\foreach \i in {1,3,5} \fill[blue!20] (\i,0) rectangle +(1,-4);
\foreach \i in {1,...,6} \draw[blue] (\i,0)--+(-90:4);
\end{scope}
\putrow{0}{5.35}{0.35}{5.61}{-0.39}{6.84}{-0.16}
\putrow{-1}{5.45}{0.45}{5.52}{-0.48}{6.84}{-0.16}
\putrow{-2}{5.45}{0.45}{5.51}{-0.49}{6.96}{-0.04}
\putrow{-3}{5.45}{0.45}{5.63}{-0.37}{6.96}{-0.04}
\path (current bounding box.south) node[below=2mm,blue]
{My colored table as a tikzpicture};
\end{tikzpicture}
\end{frame}
\end{document}