empheq、xcolor[x11names] 和 tcolorbox 的问题 - 软件包

empheq、xcolor[x11names] 和 tcolorbox 的问题 - 软件包

第一次编辑:注意:我刚刚回答了这个问题(您可以在底部找到它)请不要取消这个问题,非常感谢!

我的代码有问题:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[x11names]{xcolor}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{amsthm}
\usepackage{stix}
\usepackage[listings]{tcolorbox}
\usepackage{empheq}
\tcbuselibrary{theorems}

\newtcbox{\Goldonebox}[1][]{nobeforeafter,math upper,tcbox raise base, enhanced,frame hidden,boxrule=0pt,interior style={top color=Gold1!10!white,
bottom color=Gold1!10!white,middle color=Gold1!50!yellow},
fuzzy halo=1pt with Gold1,#1}

\newtcbox{\greenbox}[1][]{nobeforeafter,math upper,tcbox raise base,
enhanced,frame hidden,boxrule=0pt,interior style={top color=green!10!white,
bottom color=green!10!white,middle color=green!50!yellow},
fuzzy halo=1pt with green,#1}

\title{XCOLOR}
\author{MATTIA ONOFRI}
\date{August 2021}

\begin{document}

\maketitle
\Huge
\section{Introduction}

\begin{empheq}[box=\Goldonebox]{align}
a&=b+c\\
E&=mc^2
\end{empheq}

\begin{empheq}[box=\greenbox]{align}
a&=b+c\\
E&=mc^2
\end{empheq}

\textcolor{Gold1}{GOLDEN}.

\end{document}

Overleaf 告诉我有 8 个错误(第一个 begin{empheq}...\end{empheq} 有 4 个,第二个有 4 个):

  1. 程序包 pgfkeys 错误:我不知道密钥“/tcb/enhanced”,我将忽略它。也许您拼错了。

  2. 程序包 pgfkeys 错误:我不知道密钥“/tcb/frame hidden”,我将忽略它。也许您拼错了。

  3. 软件包 pgfkeys 错误:我不知道您传递了“top color=Gold1!10!white, bottom color=Gold1!10!white,middle color=Gold1!50!yellow”的键“/tcb/interior style”,我将忽略它。也许您拼错了。

  4. 程序包 pgfkeys 错误:我不知道您向其传递了“1pt with Gold1”的密钥“/tcb/fuzzy halo”,我将忽略它。也许您拼错了。

为什么在这种情况下一切运行正常?

埃姆菲克

我到底哪里委屈了?

谢谢你的帮助。

答案1

而不是 \usepackage[列表]{tcolorbox},你最好 \usepackage[最多]{tcolorbox} 以避免所有错误。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[x11names]{xcolor}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{amsthm}
\usepackage{stix}
\usepackage[most]{tcolorbox}
\usepackage{empheq}
\tcbuselibrary{theorems}

\newtcbox{\Goldonebox}[1][]{nobeforeafter,math upper,tcbox raise base, enhanced,frame hidden,boxrule=0pt,interior style={top color=Gold1!10!white,
bottom color=Gold1!10!white,middle color=Gold1!50!yellow},
fuzzy halo=1pt with Gold1,#1}

\newtcbox{\greenbox}[1][]{nobeforeafter,math upper,tcbox raise base,
enhanced,frame hidden,boxrule=0pt,interior style={top color=green!10!white,
bottom color=green!10!white,middle color=green!50!yellow},
fuzzy halo=1pt with green,#1}

\title{XCOLOR}
\author{MATTIA ONOFRI}
\date{August 2021}

\begin{document}

\maketitle
\Huge
\section{Introduction}

\begin{empheq}[box=\Goldonebox]{align}
a&=b+c\\
E&=mc^2
\end{empheq}

\begin{empheq}[box=\greenbox]{align}
a&=b+c\\
E&=mc^2
\end{empheq}

\textcolor{Gold1}{GOLDEN}.

\end{document}

相关内容