Need help regarding arrows in TikZ

arrowstikz-arrows

I need an arrow diagram which would look somewhat like this:

enter image description here

The latex code that I've written for the same is:

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{shapes,arrows.meta,positioning}

\begin{document}
    
    \begin{tikzpicture}
        \centering
        
        \node[ellipse,draw,minimum size=2cm,text centered,text width=0.15\textwidth] (a) {Fuzzy regular open};
        \node[ellipse,draw,minimum size=2cm] at (6,6) (b) {Fuzzy open};
        \node[ellipse,draw,minimum size=2cm] at (12,0) (c) {Fuzzy $\gamma^*$-open};
        \node[ellipse,draw,minimum size=2cm,text centered,text width=0.15\textwidth] at (9,-6) (d) {Fuzzy semi $\delta$-open};
        \node[ellipse,draw,minimum size=2cm] at (3,-6) (e) {Fuzzy $\delta$-open};
        
        \draw[->] (a)--(b);
        %\draw[->] (b)--(a);
        \draw[<->] (b)--(c);
        \draw[<->] (c)--(d);
        \draw[->] (e)--(d);
        %\draw[->] (d)--(e);
        \draw[->] (e)--(a);
        %\draw[->] (a)--(e);
        \draw[<->] (a)--(c);
        \draw[->] (e)--(b);
        %\draw[->] (b)--(e);
        \draw[<->] (a)--(d);
        \draw[<->] (c)--(e);
        \draw[<->] (a)--(d);
        
    \end{tikzpicture}
    
\end{document}

This is the output:

enter image description here

The nodes are okay, but I am struggling with the arrows. Also I want the arrow-heads to be a little bit bigger than they currently are. Kindly help me fix the arrows so that they are like the ones in the first picture.

Best Answer

Not the final picture, but it includes all the elements you want, I think.

\documentclass{article}

\usepackage{tikz}
\usetikzlibrary{shapes,arrows.meta,positioning}

\begin{document}
    
\begin{tikzpicture}[
    >={Straight Barb[scale=3]},    % <--- added
    tick/.style={draw,minimum width=0pt,minimum height=3ex,inner sep=0pt,sloped},  % <--- added
]
    \centering
    
    \node[ellipse,draw,minimum size=2cm,text centered,text width=0.15\textwidth] (a) {Fuzzy regular open};
    \node[ellipse,draw,minimum size=2cm] at (6,6) (b) {Fuzzy open};
    \node[ellipse,draw,minimum size=2cm] at (12,0) (c) {Fuzzy $\gamma^*$-open};
    \node[ellipse,draw,minimum size=2cm,text centered,text width=0.15\textwidth] at (9,-6) (d) {Fuzzy semi $\delta$-open};
    \node[ellipse,draw,minimum size=2cm] at (3,-6) (e) {Fuzzy $\delta$-open};
    
    \draw[->] (a.80)--(b.200);  % <--- modified
    \draw[->] (b.230)-- node[pos=0.5,tick]{} (a.40);  % <--- modified
    \draw[<->] (b)--(c);
    \draw[<->] (c)--(d);
    \draw[->] (e)--(d);
    %\draw[->] (d)--(e);
    \draw[->] (e)--(a);
    %\draw[->] (a)--(e);
    \draw[<->] (a)--(c);
    \draw[->] (e)--(b);
    %\draw[->] (b)--(e);
    \draw[<->] (a)--(d);
    \draw[<->] (c)--(e);
    \draw[<->] (a)--(d);
    
\end{tikzpicture}
    
\end{document}

enter image description here

Related Question