自定义智能图表

自定义智能图表

我想要定制下图:

在此处输入图片描述

使用以下代码

 \documentclass[border=10pt]{standalone} 
 \usepackage{smartdiagram}
 \begin{document}
    \smartdiagram[descriptive diagram]{
        {XYZ,LOREM IPSUM},
    }
 \end{document}

像是

在此处输入图片描述

答案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 的,但是该包不接受rotatexscale=-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}

输出 : 在此处输入图片描述

相关内容