I got a problem when I want to color the region bounded by curves \sigma^{(0)}, \sigma^{(1)}, \sigma^{(0)}. I use the command \draw[fill=red!30, opacity=.5] (h2)--(h3)--(h4)--cycle; but it is colored only the triangle formed by 3 vertices v_0, v_1, v_2. Like in the image below:
This is my code
\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}
How can I fix this problem? Can any one give me some idea?



\documentclass{...}, the required\usepackage's,\begin{document}, and\end{document}. That may seem tedious to you, but think of the extra work it represents for TeX.SX users willing to give you a hand. Help them help you: remove that one hurdle between you and a solution to your problem. – Moriambar Apr 22 '17 at 15:37\documentclassnorusepackages norbegin{document}etc… It may work on you because you have a specific class and a specific package loaded… but if you don't complete your post with the needed information, it's gonna be hard to help you – Moriambar Apr 22 '17 at 15:40