%20a%20l%C3%A1tex%3F.png)
Estoy intentando utilizar "\usepackage{smartdiagram}" pero tengo algunas dificultades. este es el código que escribí hasta ahora:
\documentclass[12pt]{report}
\usepackage{smartdiagram}
\smartdiagramset{%module shape=diamond,
%font=\scriptsize,
set color list= {blue!30!cyan, blue!50!cyan,blue!50!cyan,blue!50!cyan},
module minimum width=2cm,
module minimum height=2cm,
module x sep=3cm,
module y sep=3cm,
text width=4cm,
%circular distance=2cm,
%circular final arrow disabled=true,
%border color= blue,
%text color= ,
back arrow disabled= true,
}
\begin{document}
\smartdiagram[flow diagram]{PRODUCT TREE,
ENTRY SYSTEM, LANDER, GNC }
\end{document}
Respuesta1
El smartdiagram
paquete no es la herramienta adecuada para este tipo de diagrama de árbol. Prueba con forest
:
\documentclass[12pt]{report}
\usepackage[edges]{forest}
\begin{document}
\begin{forest}
forked edges, for tree={edge=thick, rounded corners=6pt, blue!50!black,
fill=blue!10, draw, font=\strut\footnotesize\sffamily}
[PRODUCT TREE
[ENTRY SYSTEM
[HEAT SHIELD]
[LANDER,
[GNC, for tree={folder, grow'=0,
% parent anchor=-115, % to center folder root
anchor=west}, anchor=center,
[IMU ]
[CAMERA]
[Whatever ...]
]]]]]
\end{forest}
\end{document}