我的目的是让一个图形旋转并且在其边界后面用一个小边框框起来。
我找到了一个解决方案来旋转数字 旋转带标题的图片
但当我在序言中添加这行代码时
\floatstyle{boxed}
\restylefloat{figure}
那么标题旋转就不起作用了。请注意,边框和图形之间有空白(我宁愿避免它们)。
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass{DissertateB5}
\captionsetup{labelfont=\rmdefault, textfont=\rmdefault }
\usepackage{adjustbox}
\graphicspath{ {figures/} }
\usepackage{float}
\floatstyle{boxed}
\restylefloat{figure}
\begin{document}
\begin{figure}
\begin{adjustbox}{addcode={\begin{minipage}{\width}}{\caption{Visualización de los datos en Kibana}\label{fig:kibana} \end{minipage}},rotate=90,center}
\includegraphics[scale=.4]{kibana.png}
\end{adjustbox}
\end{figure}
\end{document}