次のように分割された四角形を描画してみます。
これが私の現在の状態です :/ 何かアイデアはありますか?
答え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}