改变 \frame{} 的边框颜色

改变 \frame{} 的边框颜色

我正在使用\frame{}命令在图像周围绘制一个框,如\frame{\includegraphics{...}}。有没有办法改变这个框的颜色?默认情况下是黑色。

答案1

\documentclass{article}
\usepackage{xcolor,graphicx}
\begin{document}
\frame{\includegraphics[width=3cm]{example-image-duck}}
\textcolor{red}{\frame{\includegraphics[width=3cm]{example-image-duck}}}
\end{document}

在此处输入图片描述

相关内容