在颜色框中指定 RGB 颜色 - tcolorbox 包

在颜色框中指定 RGB 颜色 - tcolorbox 包

我尝试用这种方式在颜色框中指定 RGB 颜色,但是它无法识别 RGB,只能识别 rgb,那是不同的东西。

如何在颜色框中指定 RGB 颜色?

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage[most]{tcolorbox}

\title{}
\author{}
\date{}

\begin{document}

\maketitle

\section{Introduction}

\begin{equation}
\theta(t) = \frac{k_t \,
\colorbox{yellow!40!white}{$\displaystyle ~
v(s)
~\vphantom{\int}$} 
- (R + L \, s) \,
\colorbox{RGB:red,0;green,127;blue,255}{$\displaystyle ~
\tau_L(s)
~\vphantom{\int}$} 
}
{(R + L \, s) \, (J \, s^2 + b \, s)
+ k_t \, k_e \, s}
\end{equation}

\end{document}

答案1

您可以先使用定义颜色\definecolor,然后在需要时调用它,如下所示:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage[most]{tcolorbox}

\definecolor{mycolor}{RGB}{0,127,255}

\title{}
\author{}
\date{}

\begin{document}

\maketitle

\section{Introduction}

\begin{equation}
\theta(t) = \frac{k_t \,
\colorbox{yellow!40!white}{$\displaystyle ~
v(s)
~\vphantom{\int}$} 
- (R + L \, s) \,
\colorbox{mycolor}{$\displaystyle ~
\tau_L(s)
~\vphantom{\int}$} 
}
{(R + L \, s) \, (J \, s^2 + b \, s)
+ k_t \, k_e \, s}
\end{equation}

\end{document}

另一种方法是\colorbox[RGB]{0,127,255}{...}直接使用。

在此处输入图片描述

相关内容