是否有类似 \arrayrulecolor 的命令来改变 \fbox 的规则颜色?

是否有类似 \arrayrulecolor 的命令来改变 \fbox 的规则颜色?

问题已经写在上面了。

答案1

您可以fcolorboxxcolor包中使用,也可以定义自己的命令!

\documentclass{article}
\usepackage[kernelfbox]{xcolor}
\begin{document}

\def\twocolorbox#1#2#3{\color{#1}\fbox{\color{#2}#3}}

\twocolorbox{blue}{red}{terrible}

\fcolorbox{gray}{yellow}{test}
\end{document}

答案2

\documentclass{article}
\usepackage{color}
\newcommand{\myfbox}[2]{\textcolor{#1}{\fbox{\normalcolor#2}}}
\begin{document}
\myfbox{red}{This is a test}
\end{document}

或者

\documentclass{article}
\usepackage{color}
\newcommand{\myfbox}[2]{\fcolorbox{#1}{white}{#2}}
\begin{document}
\myfbox{red}{This is a test}
\end{document}

相关内容