当我在本地布局(在 Lyx 中)中使用此代码时出现错误:
Style myLaw
Category MainText
Margin Static
LatexType Environment
LatexName bluec
NextNoIndent 1
LeftMargin MMM
RightMargin MMM
ParIndent MM
ParSkip 0
ItemSep 0
TopSep 0.5
BottomSep 0.5
ParSep 0
Align Block
AlignPossible Block, Left, Right, Center
Preamble
\usepackage{mdframed}
\usepackage{xcolor}
\newenvironment{bluec}
{\begin{mdframed} [backgroundcolor=LightSkyBlue!50,linecolor=LightSkyBlue!50,roundcorner=0pt]\scriptsize\quotation}
{\endquotation\end{mdframed}}
EndPreamble
End
答案1
LightSkyBlue
大概您指的是颜色未定义的错误?
虽然xcolor
预定义了许多颜色,但大多数颜色只有在加载包时添加特定选项才可用。请参阅手册xcolor
以获取完整列表。LightSkyBlue
来自svgnames
“集合”,因此您需要
\usepackage[svgnames]{xcolor}