我使用 mdframed 制作带边框的表格。此外,我想使用包更改某些列的背景颜色colortbl
。但是,当我尝试使用加载时colortbl
,\usepackage
文档拒绝编译,抱怨参数失控/忘记了端组。当我不加载时colortbl
,错误消失。这是一个已知的错误吗?那么我该如何避免它?有问题的错误消息:
Package mdframed Info: mdframed inside float
mdframed uses option nobreak mdframed on input line 2440.
Package mdframed Info: mdframed inside a box
mdframed uses option nobreak mdframed on input line 2440.
Runaway argument?
{\textbf {Migräne}
! Paragraph ended before \multicolumn was complete.
答案1
我没有收到任何错误
\listfiles
\documentclass{article}
\usepackage[table]{xcolor}
\usepackage[xcolor=table]{mdframed}
\begin{document}
Text
\begin{mdframed}
\begin{tabular}{>{\columncolor{red}}r}
foo
\end{tabular}
\end{mdframed}
\end{document}