关于如何插入图像框架以及如何为它们着色,有很多帮助,但我找不到任何关于如何只将顶部框架涂成蓝色、将右侧框架涂成红色等内容。如果能提供任何线索,我将不胜感激,例如使用\fbox
或mdframed
...
答案1
在...的帮助下tcolorbox
:
\documentclass{article}
\usepackage{tcolorbox}
\tcbuselibrary{skins}
\usepackage{graphicx}
\begin{document}
\begin{tcolorbox}[enhanced,
hbox,
sharp corners,
colback=white,
colframe=white,
borderline west ={0.5pt}{0pt}{blue},
borderline north ={0.5pt}{0pt}{red},
borderline east ={0.5pt}{0pt}{green},
borderline south ={3pt}{0pt}{yellow}]
\includegraphics[width=5cm]{example-image}
\end{tcolorbox}
\end{document}