条件斑马表

条件斑马表

首先,我使用 LyX 的序言相当长,因为我想要相当具体的东西,但序言中的几乎所有代码都是从网上剪切粘贴的,只做了一些修改。我不是 TeX 专家,但我需要一个!

我几乎总是在 Float Table 环境中使用斑马纹表。我还有几个 Float Figure 环境,我想关闭这些环境的斑马纹效果,因为它实际上不是表。这很难解释,而且似乎我无法附上示例。

我想要的是一个条件(ERT 很好,但如果我可以将它放在序言中,就更好了),当它处于 Float: Figure 环境中时,它会关闭 Zebra 表。

以下是我用于 Zebra 表格(和其他表格格式)的内容...

%
% Zebra Tables w/footnotes
%
\let\mytoprule\toprule
\renewcommand{\toprule}{\mytoprule[2pt]}
\let\mybottomrule\bottomrule
\renewcommand{\bottomrule}{\mybottomrule[2pt]}
\let\mymidrule\midrule
\renewcommand{\midrule}{\mymidrule[1pt]}
\let\tabulary\tabular
\let\endtabulary\endtabular
\renewenvironment{tabular}{\rowcolors{2}{white}{shadecolor}\tabulary}   {\endtabulary}
\usepackage{footnote}
\makesavenoteenv{tabular}

那么当 \tabular 处于 Float: Figure 环境中时,我该如何关闭所有这些?

答案1

如果我理解你的要求,你可以用这个etoolbox包来做到这一点:

\documentclass[a4paper, 11pf]{article}

\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[table, x11names]{xcolor}
\usepackage{booktabs, caption}
\colorlet{shadecolor}{LightSteelBlue1}
\let\mytoprule\toprule
\renewcommand{\toprule}{\mytoprule[2pt]}
\let\mybottomrule\bottomrule
\renewcommand{\bottomrule}{\mybottomrule[2pt]}
\let\mymidrule\midrule
\renewcommand{\midrule}{\mymidrule[1pt]}
\let\tabulary\tabular
\let\endtabulary\endtabular
\renewenvironment{tabular}{\ifbool{intableenv}{\rowcolors{2}{white}{shadecolor}}{}\tabulary} {\endtabulary}

\usepackage{etoolbox}
\newbool{intableenv}
\AtBeginEnvironment{table}{\booltrue{intableenv}}%{}{}
\AtEndEnvironment{table}{\boolfalse{intableenv}}{}{}

\begin{document}

\begin{table}[!h]
\centering
\caption{A Zebra Table}
\begin{tabular}{llccc}
\toprule
\multicolumn{2}{c} {}& \textbf{Head 1} & \textbf{Head 2} & \textbf{Head 3} \\
\midrule
 A & & & & \\
 B & & & & \\
 C & & & & \\
 D & & & & \\
 E & & & & \\
 F & & & & \\
 G & & & & \\
\bottomrule
\end{tabular}%
\end{table}

\begin{figure}[!h]
\centering
\begin{tabular}{llccc}
\toprule
\multicolumn{2}{c}{} & \textbf{Head 1} & \textbf{Head 2} & \textbf{Head 3} \\
\midrule
 A  & & & & \\
 B  & & & & \\
 C  & & & & \\
 D  & & & & \\
 E  & & & & \\
 F  & & & & \\
 G & & & & \\ 
 \bottomrule
\end{tabular}%
\caption{Same table}
\end{figure}

\end{document} 

在此处输入图片描述

相关内容