填滿拋物線和形狀之間的區域

填滿拋物線和形狀之間的區域

我看過類似的情況,我甚至無法理解 pgfplots 如何幫助我,因為我需要填充兩條線和一條拋物線之間的區域。這是我的程式碼:

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{intersections}
\begin{document}

\begin{tikzpicture}

\coordinate (A1) at (0,0);
\coordinate (A2) at (1,3);
\coordinate (A3) at (3,2);

\draw[very thin,color=gray] (0,0) grid (3.2,3.2);    
\draw[->,name path=xaxis] (-0.1,0) -- (3.2,0) node[right] {$x$};
\draw[->,name path=yaxis] (0,-0.1) -- (0,3.2) node[above] {$y$};
\foreach \x in {0,...,3}
        \draw (\x,1pt) -- (\x,-3pt)
        node[anchor=north] {\x};
\foreach \y in {0,...,3}
        \draw (1pt,\y) -- (-3pt,\y) 
            node[anchor=east] {\y};

\draw[name path=plot,domain=0:3.2] plot (\x,{\x^2/3}) node[right] {$y=\frac{x^2}{3}$}; 

coordinate [name intersections={of= A2--A3 and plot,by=intersect-1}];
coordinate [name intersections={of= A1--A3 and plot,by=intersect-2}];

\filldraw[thick,fill=blue,fill opacity=0.4] (A1) -- (A2) -- (A3) -- cycle;

\end{tikzpicture}
\end{document}

感謝您的幫助,我知道這是一個簡單的問題,但說實話,這是我在 TeX 中繪製的第一個圖表。

答案1

您可以使用\clipTikZ 中的命令來執行此操作。引用自TikZ/PGF 手冊(第 2.11 節,第 35 頁):

在 TikZ 中剪輯非常容易。您可以使用該\clip命令來剪輯所有後續繪圖。它的工作原理類似於\draw,只是它不繪製任何內容,而是使用給定的路徑隨後剪輯所有內容。

所以我在你的情節中添加了兩個剪輯:

\clip (A1) -- (A2) -- (A3) -- (3,0) -- cycle;
\clip [domain=0:3.2] plot (\x, \x^2/3) -- (A2) -- (A1);

編輯:既然我知道你想要剪輯什麼,這仍然相當容易。對於第一個命令,我們刪除-- (3,0),否則我們會剪輯太多。對於第二個命令,-- (A2) -- (A1)剪輯多於拋物線。如果我們將其替換為-- (3.2,0) -- (0,0),那麼我們會剪輯在下面線。請參閱下面更新的螢幕截圖和程式碼。

為了清楚地說明這兩行程式碼剪切的內容,這裡有一個額外的螢幕截圖:

在此輸入影像描述

第一行程式碼剪下了紅色虛線邊框內的區域。第二個是藍色虛線邊框內的區域。

第一個剪切兩條線之間的區域。第二個剪切拋物線上方的區域,並延伸出去以覆蓋線之間的區域。如果我沒有添加額外的點,那麼它會剪切一條到原點的直線,這會錯過您想要著色的部分區域。

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{intersections}
\begin{document}

\begin{tikzpicture}

\coordinate (A1) at (0,0);
\coordinate (A2) at (1,3);
\coordinate (A3) at (3,2);

\draw[very thin,color=gray] (0,0) grid (3.2,3.2);    
\draw[->,name path=xaxis] (-0.1,0) -- (3.2,0) node[right] {$x$};
\draw[->,name path=yaxis] (0,-0.1) -- (0,3.2) node[above] {$y$};
\foreach \x in {0,...,3}
        \draw (\x,1pt) -- (\x,-3pt)
        node[anchor=north] {\x};
\foreach \y in {0,...,3}
        \draw (1pt,\y) -- (-3pt,\y) 
            node[anchor=east] {\y};

\draw[name path=plot,domain=0:3.2] plot (\x,{\x^2/3}) node[right] {$y=\frac{x^2}{3}$};

\draw (A1) -- (A2);
\draw (A2) -- (A3);
\draw (A1) -- (A3);

\clip (A1) -- (A2) -- (A3) -- cycle;
\clip [domain=0:3.2] plot (\x, \x^2/3) -- (3.2,0) -- (0,0);

\fill [blue, opacity=0.4] (0,0) rectangle (3,3);

\end{tikzpicture}
\end{document}

它看起來像這樣:

在此輸入影像描述

答案2

對於使用 PSTricks 進行打字練習來說,它太短了。我不知道你到底想要哪一種,所以我提供你以下2種情況。

情況1

\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-eucl,pst-plot}
\def\f{(x^2/3)}
\def\g{(2*x/3)}
\def\h{((-x+7)/2)}

\pstVerb{/I2P {AlgParser cvx exec} def}

\begin{document}
\begin{pspicture}[saveNodeCoors,algebraic,linejoin=2](-1,-1)(4,4)
    \psaxes{->}(0,0)(-1,-1)(3.5,3.5)[$x$,0][$y$,90]
    \pstInterFF[PointName=none,PointSymbol=none]{\f I2P}{\h I2P}{2}{A}
    \pscustom*[linecolor=blue!50]
    {
        \psplot{0}{3}{\g}
        \psplot{3}{N-A.x}{\h}
        \psplot{N-A.x}{0}{\f}
        \closepath
    }
    \psplot{0}{3.2}{\f}
    \pspolygon(*3 {\g})(*1 {\h})
    \uput[u](*3.2 {\f}){\scriptsize $f(x)=\frac{x^2}{3}$}
\end{pspicture}
\end{document}

在此輸入影像描述

案例2

\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-eucl,pst-plot}
\def\f{(x^2/3)}
\def\g{(2*x/3)}
\def\h{((-x+7)/2)}

\pstVerb{/I2P {AlgParser cvx exec} def}

\begin{document}
\begin{pspicture}[saveNodeCoors,algebraic,linejoin=2,PointName=none,PointSymbol=none](-1,-1)(4,4)
    \psaxes{->}(0,0)(-1,-1)(3.5,3.5)[$x$,0][$y$,90]
    \pstInterFF{\f I2P}{\g I2P}{2}{A}
    \pstInterFF{\f I2P}{\h I2P}{2}{B}
    \pscustom*[linecolor=blue!50]
    {
        \psplot{N-A.x}{3}{\g}
        \psplot{3}{N-B.x}{\h}
        \psplot{N-B.x}{N-A.x}{\f}
        \closepath
    }
    \psplot{0}{3.2}{\f}
    \pspolygon(*3 {\g})(*1 {\h})
    \uput[u](*3.2 {\f}){\scriptsize $f(x)=\frac{x^2}{3}$}
\end{pspicture}
\end{document}

在此輸入影像描述

筆記:

最新版本pst-eucl可以接受中綴表示法,因此I2P不再需要運算子。

答案3

PSTricks 解決方案:

\documentclass{article}

\usepackage{pst-plot}

\begin{document}

\begin{pspicture}[algebraic](-0.35,-0.4)(4.4,3.7)
  \psaxes[
    tickcolor = black!20,
    xticksize = 0 3,
    yticksize = 0 3
  ]{->}(0,0)(3.3,3.3)[$x$,0][$y$,90]
  \pscustom*[
    linecolor = blue!50
  ]{
    \psline(3,2)(!177 sqrt 3 sub 4 div 31 177 sqrt sub 8 div)
    \psplot{2}{2.576}{x^2/3} % plot from 2 to (sqrt(177)-3)/4
    \psline(!2 4 3 div)(3,2)
    \closepath
  }
  \psplot{0}{3.2}{x^2/3}
  \uput[0](!3.2 256 75 div){$y = \frac{x^{2}}{3}$}
  \pspolygon(0,0)(1,3)(3,2)
\end{pspicture}

\end{document}

輸出

答案4

MetaPost 解決方案。使用方便的巨集可以找到並填滿所需區域buildcycle

input mpcolornames;
input latexmp; 
setupLaTeXMP(options="12pt", packages = "amsmath", textextlabel = enable, mode = rerun);

u := 1.5cm; xmin := -.5; xmax := 3.5; ymin := -.5; ymax := 3.5; len := 3bp;
vardef f(expr x) = (x**2)/3 enddef;
path p; p = origin -- (3, 2) -- (1, 3) -- cycle;
path curve; curve = origin
  for i = 0.01 step 0.01 until 3:
    -- (i, f(i)) 
  endfor;

beginfig(1);
  labeloffset := 6bp;
  for i = 1 upto 3:
    draw u*(i, 0) -- u*(i, ymax) withcolor LightGray;
    draw u*(0, i) -- u*(xmax, i) withcolor LightGray;
    draw (i*u, -len) -- (i*u, len); label.bot("$" & decimal i & "$", (i*u, 0));
    draw (-len, i*u) -- (len, i*u); label.lft("$" & decimal i & "$", (0, i*u));
  endfor;
  labeloffset := 3bp;
  label.llft("$O$", origin); label.bot("$x$", (xmax*u, 0)); label.lft("$y$", (0, ymax*u));
  fill buildcycle(subpath(1, 2) of p, reverse curve, subpath (epsilon, 3) of p) 
    scaled u withcolor SlateBlue1;
  draw p scaled u;
  draw curve scaled u;
  picture curvelabel; 
  curvelabel = thelabel.rt("$y=\dfrac{x^2}{3}$", u*point infinity of curve);
  unfill bbox curvelabel; draw curvelabel;
  drawarrow (xmin*u, 0) -- (xmax*u, 0);
  drawarrow (0, ymin*u) -- (0, ymax*u);
endfig;
end.

在此輸入影像描述

相關內容