我尝试绘制一个像这样的分割矩形:
这就是我目前的状态 :/ 有什么想法吗?
答案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}