tento desenhar um retângulo dividido assim:
E este é o meu estado atual:/Alguma ideia?
Responder1
Nesta tarefa você pode usar o tikz
pacote junto com o array
ambiente, se não precisar de alguns ticks internos/externos nele. Se você fizer isso, existem maneiras melhores de obtê-los.
\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}
Responder2
Uma alternativa usando pilhas.
\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}