仅填充正方形的高度/3

仅填充正方形的高度/3

我怎样才能只为正方形的高度/3着色?我只知道如何填充整个正方形:

\begin{center}
    \begin{tikzpicture}
        \draw[fill=blue](0,0) -- (4,0) -- (4,4) -- (0,4) -- (0,0);
    \end{tikzpicture}
\end{center}

非常感谢您的宝贵时间。

答案1

例如

\documentclass{article}
\usepackage{color}
\usepackage{tikz}

\begin{document} 

\begin{center}
    \begin{tikzpicture}
    \draw[fill=blue](0,0) -- (4,0) -- (4,4/3) -- (0,4/3) -- (0,0);
        \draw(0,0) -- (4,0) -- (4,4) -- (0,4) -- (0,0);
    \end{tikzpicture}
\end{center}
\end{document}

在此处输入图片描述

相关内容