半平面,阴影无界区域

半平面,阴影无界区域

你用什么方法来绘制$\mathbb{R}^{2};$中的无界区域 $y\geq-x$

答案1

在此处输入图片描述

\documentclass[margin=3mm]{standalone}
\usepackage{tikz}

\begin{document}
    \begin{tikzpicture}
\fill[cyan!50]      (-4,4) -| (4,-4) -- cycle;
\draw[cyan, thick]  (-4,4) -- (4,-4);
% axis, on the top
\draw[->] (-4,0) -- (4,0) node[below left] {$x$};
\draw[->] (0,-4) -- (0,4) node[below left] {$y$};
    \end{tikzpicture}
\end{document} 

相关内容