我怎样才能改变宏 \framebox 中线条的颜色?

我怎样才能改变宏 \framebox 中线条的颜色?

在 \framebox 中我看不到任何颜色选项。我尝试使用 \show 来定义新命令,以查看其定义,但 \show 显示的内容没有提供任何帮助

答案1

如果你的要求不是很高,command命令\fcolorbox可能就足够了:

\documentclass{article}
\usepackage{color}
\newcommand{\myfbox}[1]{\fcolorbox{red}{white}{#1}}

\begin{document}

\fcolorbox{green}{white}{Hello world}

\myfbox{Hello world}

\end{document}

在此处输入图片描述

相关内容