答案1
该包确实接受旋转等选项,但此图的方向完全取决于节点锚点。修改它们很简单。
\documentclass[border=10pt]{standalone}
\usepackage{smartdiagram}
\begin{document}
\begingroup%make modifications local
\tikzset{description title/.append style={anchor=west},
description/.append style={anchor=east},
every shadow/.append style={shadow xshift=-0.5ex}}
\smartdiagram[descriptive diagram]{
{XYZ,LOREM IPSUM},
}\endgroup
\end{document}
答案2
似乎它是基于 Tikz 的,但是该包不接受rotate
或xscale=-1
键作为选项。
我用 成功了\reflectbox{}
。
\documentclass[border=10pt]{standalone}
\usepackage{smartdiagram}
\begin{document}
\smartdiagram[descriptive diagram]{
{XYZ,LOREM IPSUM},
}
\reflectbox{\smartdiagram[descriptive diagram]{
{\reflectbox{XYZ},\reflectbox{LOREM IPSUM}},
}}
\end{document}