我最初计划投入tabu
——tcolorbox
失败了。
然后我尝试编译示例代码tabu
手动的——又失败了!
是该代码有问题还是我不知道我应该知道什么?
环境:
Miktex 控制台 4.1,
TexnicCenter 2.02(64位),
模式:LaTeX=>PDF,
输出:
这是 pdfTeX,版本 3.14159265-2.6-1.40.21(MiKTeX 21.1)
12 XUndefined control sequence
梅威瑟:
...
\documentclass[a4paper,11pt,oneside]{book}
\usepackage{xcolor}
\usepackage{tabu}
\begin{document}
\chapter{chapter}
\section{section}
\subsection{subsection}
Some text ...
\taburowcolors[2] 2{green!25 .. yellow!50}
\begin{tabu}{*2{X[c]}} \toprule
\repeatcell2{
rows=5,
text/col1=test,
text/col2=row \thetaburow} \\
test & other row \thetaburow \\ \cmidrule
{1-2}
test & other row \thetaburow \\
test & other row \thetaburow \\ \bottomrule
\end{tabu}
Some other text ...
\end{document}
...
我需要的是:
- 自由行/单元格着色,
- 行与行之间有一定宽度的线,
- 定义列宽和表宽时需要一点精度。
现在我尝试利用colortbl
手册中的示例。