단어 흐름도(사진 참조)를 어떻게 라텍스로 변환할 수 있나요?

단어 흐름도(사진 참조)를 어떻게 라텍스로 변환할 수 있나요?

여기에 이미지 설명을 입력하세요

"\usepackage{smartdiagram}"을(를) 사용하려고 하는데 몇 가지 어려움이 있습니다. 이것은 내가 지금까지 작성한 코드입니다.

\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}

답변1

패키지 smartdiagram는 이러한 종류의 트리 차트에 적합한 도구가 아닙니다. 다음을 사용해 보세요 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}

관련 정보