绘制阴影矩形

绘制阴影矩形

我想画这样的东西: 在此处输入图片描述

我读过tikz 手册其中谈到了阴影,但没有找到我想要的东西。

这是我的 MW:

\documentclass{article}
\usepackage{xcolor}
\usepackage{tikz} 
\usepackage{siunitx}
\begin{document}  
    \begin{figure}[H]
        \centering
            \begin{tikzpicture}[
                scale=0.8,
                transform shape,
                  ]
                \shade[left color=red,right color=green] (0,0) rectangle (\textwidth,2);
          \end{tikzpicture}
    \end{figure}
\end{document}          

输出如下:在此处输入图片描述

答案1

在此处输入图片描述

\documentclass{article}
\usepackage{tikz}
\usepackage{siunitx}

\begin{document}
    \begin{figure}
        \centering
            \begin{tikzpicture}
                \shade[left color=red,
                       right color=green,
                       middle color=yellow] % <---
                       rectangle (\textwidth,2);
          \end{tikzpicture}
    \end{figure}
\end{document}

相关内容