我如何使用 TIkz 制作类似的东西?

我如何使用 TIkz 制作类似的东西?

在此处输入图片描述

你好,我想做一个像这样的方形排列,这是一个数据样本,所以我希望能够填充一些方块;例如,一行中三个空白,后面跟着两个黑色(填充)(*我对这个软件还不熟悉,抱歉。)

答案1

tikz 的基础知识并不难理解。基本方法可能看起来像这样,我相信您可以自己创建它 :-)

\documentclass{standalone}
\usepackage{tikz}
\begin{document}

\begin{tikzpicture}

  \draw[help lines] (0,1) grid (7,-3); %to guide your eye
  \draw (0,0) rectangle (1,1); %just the rectangle
  \fill[gray] (2,0) rectangle (3,1); %filled without the borders
  \filldraw[black] (4,0) rectangle (5,1); %filled with borders

  \draw (5.5,0.5) rectangle (6.5,1.5);
  \draw (5.5,-1) rectangle (6.5,0);
  \draw (5.5,-2.5) rectangle (6.5,-1.5);

\end{tikzpicture}
\end{document}

基本信息

你退房了吗http://www.texample.net/tikz/examples/然而?

答案2

PSTricks 解决方案仅用于好玩的目的。

\documentclass[pstricks,border=12pt,12pt]{standalone}
\begin{document}
\pspicture(15,10)
    \rput(5,8){1. Any text goes here\ldots}
    \rput(13,9){Squares}
    \multips(0,5)(2,0){5}{\psframe(1,1)}
    \multips(10,9)(0,-2){5}{\psframe[fillstyle=solid,fillcolor=lightgray](1,1)}
\endpspicture
\end{document}

在此处输入图片描述

相关内容