TikZ 내부에 다음과 같은 소프트웨어 아키텍처를 만들고 싶습니다.
내 코드 아래를 참조하십시오.
\documentclass[border=2px]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzset{
green/.style = {draw, rectangle, minimum width=1cm, minimum height=1cm, text centered, text width=1.2cm, font=\footnotesize, draw=black, fill=green!30},
blue/.style = {draw, rectangle, minimum width=6cm, minimum height=1cm, text centered, text width=5.0cm, font=\footnotesize, draw=black, fill=blue!30},
yellow/.style = {draw, rectangle, minimum width=6cm, minimum height=1cm, text centered, text width=5.0cm, font=\footnotesize, draw=black, fill=yellow!30},
}
\begin{document}
\begin{tikzpicture}[node distance=1.1cm]
\node (r1c1) [green] {VC++};
\node (r1c2) [green, right of=r1c1, xshift=0.5cm] {VB.NET};
\node (r1c3) [green, right of=r1c2, xshift=0.5cm] {C\#.NET};
\node (r1c4) [green, right of=r1c3, xshift=0.5cm] {Others};
\node (r2c1) [blue, below of=r1c2, xshift=0.8cm] {COM-API Interface};
\node (r3c1) [yellow, below of=r2c1] {Autodesk Inventor Application};
\draw (r1c1);
\draw (r1c2);
\draw (r1c3);
\draw (r1c4);
\draw (r2c1);
\draw (r3c1);
\end{tikzpicture}
\end{document}
다음은 생성된 다이어그램입니다.
생성된 다이어그램 내부의 모듈이 제대로 정렬되지 않았습니다. 제안사항이 있으신가요?
답변1
그냥 재미로 누군가 제안한대로 tcolorbox
...
\documentclass{article}
\usepackage[most]{tcolorbox}
\tcbset{enhanced, fontupper=\bfseries, notitle, sharp corners, halign=center, valign=center}
\begin{document}
\begin{tcbitemize}[%
raster equal height=rows,
raster columns=4,
raster equal height,
raster every box/.style={height=2cm},
raster column skip=1mm,
raster row skip=1mm,
colback=green!70!black]
\tcbitem VC++
\tcbitem VB.NET
\tcbitem C\#.NET
\tcbitem Others
\tcbitem[colback=blue!40, raster multicolumn=4]
COM-API Interface
\tcbitem[colback=yellow!50, raster multicolumn=4]
Autodesk Inventor Application
\end{tcbitemize}
\end{document}
답변2
체인을 사용하는 또 다른 솔루션:
\documentclass[border=2px]{standalone}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows, chains, calc}
\tikzset{
green/.style = {draw, rectangle, minimum width=2cm, minimum height=1cm, text centered, text width=1.2cm, font=\footnotesize, draw=black, fill=green!30},
blue/.style = {draw, rectangle, minimum width=8cm+3\pgflinewidth, minimum height=1cm, text centered, text width=5.0cm, font=\footnotesize, draw=black, fill=blue!30},
yellow/.style = {draw, rectangle, minimum width=8cm+3\pgflinewidth, minimum height=1cm, text centered, text width=5.0cm, font=\footnotesize, draw=black, fill=yellow!30},
}
\begin{document}
\begin{tikzpicture}[start chain=1 going right,
start chain=2 going below, node distance=1mm]
\node [name=r1c1, on chain=1, green] {VC++};
\node [name=r1c2, on chain=1, green] {VB.NET};
\node [name=r1c3, on chain=1, green] {C\#.NET};
\node [name=r1c4, on chain=1, green] {Others};
\draw let \p1=($(r1c4.east)-(r1c1.west)$), \n1 = {veclen(\x1,\y1)} in
node [name=r2c1, on chain=2, blue, anchor=north west, yshift=-1mm,
minimum width=\n1-\pgflinewidth]
at (r1c1.south west) {COM-API Interface};
\draw let \p1=($(r1c4.east)-(r1c1.west)$), \n1 = {veclen(\x1,\y1)} in
node [name=r3c1, on chain=2, yellow, minimum width=\n1-\pgflinewidth] {Autodesk Inventor Application};
\end{tikzpicture}
\end{document}
답변3
TikZ의 내 솔루션: 주어진 좌표를 사용하면 더 많은 제어가 가능합니다. 내 좌표를 사용하려면 중간 및 아래쪽 레이어 상자의 최소 너비를 8cm로 조정해야 했습니다.
편집하다
댓글에서 요청한 대로 상자 사이에 수평 간격이 있어야 합니다.
outer sep=1mm
따라서 스타일 정의에 옵션을 추가했습니다 . 외부 셉은 상자의 왼쪽 및 오른쪽 크기에서 작동합니다. 따라서 첫 번째 상자와 마지막 상자의 정렬이 손상됩니다. 그에 따라 첫 번째 상자와 마지막 상자의 x 좌표에 약간의 공간을 추가하여 이를 수정했습니다. 내 MWE의 댓글을 살펴보시기 바랍니다.
여기 있어요:
\documentclass[11pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzset{
green/.style = {draw, rectangle,
minimum width=1.6cm, minimum height=1cm,
%% NEW: added outer space
outer sep=1mm,
%% continued as before
text centered, text width=1.2cm, font=\footnotesize,
draw=black, fill=green!30},
blue/.style = {draw, rectangle,
minimum width=8cm, minimum height=1cm,
text centered, text width=5.0cm, font=\footnotesize,
draw=black, fill=blue!30},
yellow/.style = {draw, rectangle,
minimum width=8cm, minimum height=1cm,
text centered, text width=5.0cm, font=\footnotesize,
draw=black, fill=yellow!30},
}
\begin{document}
\begin{tikzpicture}
%% Define the nodes of the rectangles in the top layer.
%% Corrected the x-position of the VC++ and Other box.
\node at (-0.2,3) [green] {VC++} ;
\node at (2,3) [green] {VB.net} ;
\node at (4,3) [green] {C\#} ;
\node at (6.2,3) [green] {Others} ;
%% Node of the second/middle layer
\node at (3,2) [blue] {COM-API Interface} ;
%% Node of the bottom layer
\node at (3,1) [yellow] {Autodesk Inventor Applikation} ;
\end{tikzpicture}
\end{document}
그리고 (또한 편집된) 결과는 다음과 같습니다.