我嘗試畫一個像這樣的分割矩形:
這是我目前的狀態:/有什麼想法嗎?
答案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}