我喜欢\includegraphics[<your options>,frame]{image}
在图片周围创建紧密的边框。如何更改边框的颜色?
最小工作示例:
\documentclass[tikz]{standalone}
\usepackage[export]{adjustbox}
\begin{document}
\includegraphics[frame]{example-image-A}
\end{document}
答案1
使用adjustbox
\documentclass{article}
\usepackage{xcolor}
\usepackage[export]{adjustbox}
\begin{document}
\includegraphics[width=2cm,cfbox=blue 1pt 1pt]{example-image}
\end{document}
如何使用cfbox
?这是来自的手册adjustbox
:
通过export
选项,这些键可以\includegraphics
答案2
可以通过修改长度来改变图像和框架之间的白色间隙\fboxsep
,默认为3pt。
\documentclass[12pt]{article}
\usepackage{graphicx,xcolor}
\begin{document}
\textcolor{cyan}{\fboxrule=4pt\fbox{\includegraphics[height=1in]{example-image-A}}}
\end{document}
答案3
和tcolorbox
\documentclass{article}
\usepackage[most]{tcolorbox}
\begin{document}
\tcbincludegraphics[hbox,colframe=blue,boxrule=3pt,arc=0pt,outer arc=0pt,graphics options={width=3cm}]{example-image}
\tcbincludegraphics[size=fbox,colframe=red!50!black,colback=red!20!black,
fonttitle=\bfseries,center title,drop fuzzy shadow,title=my picture,colback=olive,boxsep=4pt,arc=0pt,graphics options={width=3cm}]{example-image}
\end{document}
更多内容请参阅tcolorbox
手册第 213 页第 10.1 节。