How to draw arcs.
How to add the blue arcs in a simple way?

Or in a simple line with 3 nodes.
I have problem with the final lines
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage[x11names,table]{xcolor}
\usepackage{mathpazo}
\usepackage{tikz}
\usetikzlibrary{calc}% to calculate auxilary coordinates
\newcommand\tikznode[3][]{%
\tikz[remember picture,baseline=(#2.base)]
\nodeminimum size=0pt,inner sep=0pt,#1{#3};%
}
\tikzstyle{arrow}=[thick,->,>=stealth]
\tikzstyle{arrowr}=[red,thick,->,>=stealth]
\tikzstyle{arrowg}=[Green4,thick,->,>=stealth]
%
\usetikzlibrary{shapes,snakes}
\begin{document}
\begin{center}
\begin{tabular}{ccc}
\tikznode{diasupp}{} & \tikznode{cochupp}{} & \tikznode{mecupp}{} \
\tikznode{diasup}{} & \tikznode{cochup}{} & \tikznode{mecup}{} \
\tikznode{dias}{\underline{Días}} & \tikznode{coch}{\underline{Coches}} & \tikznode{mec}{\underline{Mecanicos}} \
%\midrule
2 & 5 & 4 \
8 & 30 & $x$
\end{tabular}
\end{center}
\begin{tikzpicture}[remember picture,overlay,red,thick]
\draw [arrowr] (dias) -- (diasupp)--(mecupp)node[midway,sloped,left,rotate=0]{\raisebox{-.0\height}[46pt][50pt]I}--+(mec);
\draw [arrowg] (coch) -- (cochup)--(mecup)node[midway,sloped,left,rotate=0]{\raisebox{-.0\height}[48pt][52pt]D}--+(mec);
% The next lines is where the trouble is.
%\path[->] (dias) edge [bend left=-20] node[above] {$1$} (coch);
%\path[->] (coch) edge [bend left=-20] node[above] {$2$} (mec);
%\path[->] (dias) edge [bend left=-36] node[above] {$3$} (mec);
\end{tikzpicture}
\end{document}



->would be resolved by loadingtikzlibrarybabel. – muzimuzhi Z Feb 02 '21 at 00:14