曲線で囲まれた領域を着色する

曲線で囲まれた領域を着色する

曲線で囲まれた領域に色を付けるときに問題が発生しました\sigma^{(0)}, \sigma^{(1)}, \sigma^{(0)}。 コマンドを使用しました が、3 つの頂点、、\draw[fill=red!30, opacity=.5] (h2)--(h3)--(h4)--cycle; で形成される三角形にのみ色が付いています。下の画像のように:v_0v_1v_2

ここに画像の説明を入力してください

これは私のコードです

\documentclass[12pt]{article}

\usepackage{epsfig,psfrag}

\usepackage{amsmath,amsxtra,amssymb,latexsym,amscd,amsthm}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\usepackage{graphicx}
\setlength{\textwidth}{6.2in}
\setlength{\oddsidemargin}{0.3in}
\setlength{\evensidemargin}{0in}
\setlength{\textheight}{8.7in}
\setlength{\voffset}{-.7in}
\setlength{\headsep}{26pt}
\setlength{\parindent}{10pt}

\usepackage{epic}
\usepackage{curves}

\usepackage{tikz, tikz-3dplot, pgfplots}
\usepackage{tkz-graph}
\usetikzlibrary{calc,arrows.meta}
\usetikzlibrary{shapes.geometric,calc}
\usetikzlibrary[positioning,patterns]
\usetikzlibrary{decorations.markings}
\usetikzlibrary{arrows}  
\usetikzlibrary{arrows,calc,shapes,decorations.pathreplacing}
\usepackage{tikz-cd}


\usepackage{young}
\usepackage[vcentermath]{youngtab}

\begin{document}
\begin{tikzpicture}
  [decoration={markings,mark=at position 0.5 with {\arrow{>}}},
   witharrow/.style={postaction={decorate}},
   shorten <>/.style={shorten <=#1,shorten >=#1},
   dot/.style={radius=2pt}
  ]


  % ellipse
  \begin{scope}
    \fill 
          (-2,0) coordinate (h1) circle[dot] node[left](k1){$q$}
          (2,0) coordinate (h2) circle[dot] node[below](k2){$v_0$}
          (4,2) coordinate (h3) circle[dot] node[above](k3){$v_2$}
          (5,-2) coordinate (h4) circle[dot] node[below](p3){$v_1$}
          (0,0) coordinate (a3)  node[left](p3){}

          (5,0.5) coordinate (b3)  node[right]{}
          (1,-0.5) coordinate (c3) node[right]{};


     \draw[bend right=20,witharrow]  (h1) to node [anchor=south]{$\alpha(v_0)$} (h2);      
      \draw[bend left=30,witharrow]  (h1) to node [anchor=south]{$\alpha(v_2)$} (h3);       
       \draw[bend right=30,witharrow]  (h1) to node [anchor=north]{$\alpha(v_1)$} (h4);    
          \draw[bend right=30,witharrow]  (h2) to node [anchor=south]{$\sigma^{(1)}$} (h3); 
           \draw[bend left=20,witharrow]  (h2) to node [anchor=north]{$\sigma^{(2)}$} (h4); 
          \draw[bend left=25,witharrow]  (h3) to node [anchor=west]{$\sigma^{(0)}$} (h4); 
\draw ($0.5*(a3)+0.5*(b3)$) circle[x radius=6,y radius=4];
    \node at ($(a3)+(6,2.5)$) (X3) {$X$};      
    \draw[fill=red!30, opacity=.5] (h2)--(h3)--(h4)--cycle;    
\end{scope}          
\end{tikzpicture}
\end{document}

この問題を解決するにはどうすればいいでしょうか? 誰かアイデアをくれませんか?

答え1

以下を使用できます:

        \path [fill=red!30, opacity=.5] (h2) to [ bend right=30] (h3) to [ bend left=25] (h4) to [ bend right=20] (h2);   

MWE:

\documentclass[12pt]{article}

\usepackage{epsfig,psfrag}

\usepackage{amsmath,amsxtra,amssymb,latexsym,amscd,amsthm}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\usepackage{graphicx}
\setlength{\textwidth}{6.2in}
\setlength{\oddsidemargin}{0.3in}
\setlength{\evensidemargin}{0in}
\setlength{\textheight}{8.7in}
\setlength{\voffset}{-.7in}
\setlength{\headsep}{26pt}
\setlength{\parindent}{10pt}

\usepackage{epic}
\usepackage{curves}

\usepackage{tikz, tikz-3dplot, pgfplots}
\usepackage{tkz-graph}
\usetikzlibrary{calc,arrows.meta}
\usetikzlibrary{shapes.geometric,calc}
\usetikzlibrary[positioning,patterns]
\usetikzlibrary{decorations.markings}
\usetikzlibrary{arrows}  
\usetikzlibrary{arrows,calc,shapes,decorations.pathreplacing}
\usepackage{tikz-cd}


\usepackage{young}
\usepackage[vcentermath]{youngtab}

\begin{document}
\begin{tikzpicture}
  [decoration={markings,mark=at position 0.5 with {\arrow{>}}},
   witharrow/.style={postaction={decorate}},
   shorten <>/.style={shorten <=#1,shorten >=#1},
   dot/.style={radius=2pt}
  ]

  \begin{scope}
    \fill 
          (2,0) coordinate (h2) circle[dot] node[below](k2){$v_0$}
          (4,2) coordinate (h3) circle[dot] node[above](k3){$v_2$}
          (5,-2) coordinate (h4) circle[dot] node[below](p3){$v_1$};

          \draw[bend right=30,witharrow]  (h2) to node [anchor=south]{$\sigma^{(1)}$} (h3); 
           \draw[bend left=20,witharrow]  (h2) to node [anchor=north]{$\sigma^{(2)}$} (h4); 
          \draw[bend left=25,witharrow]  (h3) to node [anchor=west]{$\sigma^{(0)}$} (h4); 


 \path [fill=red!30, opacity=.5] (h2) to [ bend right=30] (h3) to [ bend left=25] (h4) to [ bend right=20] (h2); 
\end{scope}          
\end{tikzpicture}

\end{document}

ここに画像の説明を入力してください

答え2

Bobyandbob はすでにその領域を塗りつぶす方法を示しているので、これはコードに関する追加のメモを含む、ある意味ではコメントのようなものになります。

  • ページの余白などを変更するには、geometry手動で長さを設定するのではなく、パッケージを使用する必要があります。つまり、次のようなものを使用します。

    \usepackage[
      textwidth=6.2in,
      textheight=8.7in,
      headsep=26pt
      ]{geometry}
    
  • パッケージepsfigは に置き換えられたのでgraphicx、これを使用する必要はありません。(現在では、これは実際には単なるラッパーですgraphicx。).epsファイルをインクルードする必要がある場合は、\includegraphics{filename}通常どおり を使用してください。

  • 複数の TikZ ライブラリを 2 回ロードしていますが、これは必要ありません。また、1 か所で\usetikzlibrary[..]の代わりにを使用します\usetikzlibrary{..}(明らかにまだ機能しますが、後者が文書化されたアプローチです)。
  • 最小限の例に関しては、以下のコードはより最小限ですが、bobyandbob が述べているように、序文には無関係なものがたくさんあります。
  • 線と塗りつぶしの後に点を描くことをお勧めします。

ここに画像の説明を入力してください

\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{decorations.markings,calc}
\begin{document}
\begin{tikzpicture}
  [decoration={markings,mark=at position 0.5 with {\arrow{>}}},
   witharrow/.style={postaction={decorate}},
   shorten <>/.style={shorten <=#1,shorten >=#1},
   dot/.style={radius=2pt}
  ]

\fill 
          (-2,0)   coordinate (h1) node[left](k1){$q$}
          (2,0)    coordinate (h2) node[below](k2){$v_0$}
          (4,2)    coordinate (h3) node[above](k3){$v_2$}
          (5,-2)   coordinate (h4) node[below](p3){$v_1$}
          (0,0)    coordinate (a3)
          (5,0.5)  coordinate (b3)
          (1,-0.5) coordinate (c3);


\fill[red!30,opacity=.5]
 (h2) to[bend right=30] (h3)
      to[bend left=25]  (h4) 
      to[bend right=20] (h2);

\draw[bend right=20,witharrow]  (h1) to node [anchor=south]{$\alpha(v_0)$} (h2);      
\draw[bend left=30,witharrow]   (h1) to node [anchor=south]{$\alpha(v_2)$} (h3);       
\draw[bend right=30,witharrow]  (h1) to node [anchor=north]{$\alpha(v_1)$} (h4);    
\draw[bend right=30,witharrow]  (h2) to node [anchor=south]{$\sigma^{(1)}$} (h3); 
\draw[bend left=20,witharrow]   (h2) to node [anchor=north]{$\sigma^{(2)}$} (h4); 
\draw[bend left=25,witharrow]   (h3) to node [anchor=west]{$\sigma^{(0)}$} (h4); 
\draw ($0.5*(a3)+0.5*(b3)$) circle[x radius=6,y radius=4];
\node at ($(a3)+(6,2.5)$) (X3) {$X$};      

\foreach \x in {h1,h2,h3,h4}
   \fill (\x) circle[dot];
\end{tikzpicture}
\end{document}

関連情報