我想使用 Beamer 中的 Tikzmark 突出显示表格中的列。下面是一个示例,它执行相同的操作,但针对的是表格行。我想知道是否可以对列执行相同的操作:
在 Beamer 中注释 Tikzmark 突出显示的表格行
先感谢您。
最好,T。
答案1
\documentclass{beamer}
\usetheme{CambridgeUS}
\usecolortheme{beaver}
% The usual suspects
\usepackage{booktabs} % Tables
% The table highlighting for hypothesis discussion.
\usepackage[beamer,customcolors]{hf-tikz}
\usetikzlibrary{calc}
% To set the hypothesis highlighting boxes red.
\tikzset{hl/.style={
set fill color=red!80!black!40,
set border color=red!80!black,
},
}
\begin{document}
\begin{frame}
\frametitle{Table highlighted by columns}
\[
\begin{array}{ccc}
\toprule
A & B & C \\
\midrule
1 &\tikzmarkin<1>{col}2 & 3 \\
4 & 5 & 6 \\
7 & 8\tikzmarkend{col} & 9 \\
\bottomrule
\end{array}%
\]
\end{frame}
\end{document}