나는 다음과 같이 분할된 직사각형을 그리려고 합니다:
이것이 제 현재 상태입니다./ 어떤 아이디어가 있으신가요?
답변1
이 작업에서는 내부/외부 틱이 필요하지 않은 경우 환경 tikz
과 함께 패키지를 사용할 수 있습니다 . array
그렇다면 이를 얻는 더 좋은 방법이 있습니다.
\documentclass[a4paper]{article}
\pagestyle{empty}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\node[draw=blue, fill=blue!30, line width=2pt]
{\def\arraystretch{1.5}%
$\begin{array}{c}
x_1\\ x_2\\[9pt] \vdots\\[6pt] x_n
\end{array}$};
\end{tikzpicture}
\end{document}
답변2
스택을 사용하는 대안.
\documentclass{article}
\usepackage{xcolor}
\usepackage{stackengine}
\begin{document}
\setstackgap{L}{1.6\baselineskip}
\fcolorbox{black}{gray!40}{\ensurestackMath{\Centerstack{\,x_1\, x_2 {} {\vdots} {} x_n}}}
\end{document}