It is needed to replicate the following conducting patterns, the starting code is as follow:
\documentclass[tikz,border=3mm]{standalone}
\usepackage[T1]{fontenc}
\usepackage{polyglossia}
\setmainlanguage{spanish}
\usepackage{float}
\usepackage{tikz}
\begin{document}
Conducting patterns:
\begin{figure}[H]
\centering
\begin{tikzpicture}
\begin{scope}[xshift=-7cm]
%Lineas de 2 tiempos
\node (point1) at (6,-4) {\textbf{1}};
\draw[draw=red, line width=1pt,-stealth] (6,-0.3)--(6,-3.8);
\node (point2) at (6.5,0) {\textbf{2}};
\draw[draw=red, line width=1pt,-stealth] (6.5,-3.8)--(6.5,-0.3);
\node [below of=point1] {\parbox{0.3\linewidth}{duple meter}};
\end{scope}
\begin{scope}
%Lineas de 3 tiempos
\node (point3) at (2,0) {\textbf{3}};
\draw[draw=red, line width=1pt,-stealth] (2,-0.3)--(2,-4);
\node (point1) at (2,-4.2) {\textbf{1}};
\draw[draw=red, line width=1pt,-stealth] (2.1,-4.1)--(3.9,-2.2);
\node (point2) at (4,-2) {\textbf{2}};
\draw[draw=red, line width=1pt,-stealth] (3.9,-1.8)--(2.1,-0.2);
\node [below of=point1] {\parbox{0.3\linewidth}{triple meter}};
\end{scope}
\begin{scope}[xshift=8cm]
%Lineas de 4 tiempos
\node (point4) at (2,0) {\textbf{4}};
\draw[draw=red, line width=1pt,-stealth] (2,-0.3)--(2,-4);
\node (point1) at (2,-4.2) {\textbf{1}};
\draw[draw=red, line width=1pt,-stealth] (1.9,-4.1)--(0,-2.2);
\node (point2) at (0,-2) {\textbf{2}};
\draw[draw=red, line width=1pt,-stealth] (0.2,-2)--(3.9,-2);
\node (point3) at (4,-2) {\textbf{3}};
\draw[draw=red, line width=1pt,-stealth] (3.9,-1.8)--(2.1,-0.2);
\node [below of=point1] {\parbox{0.3\linewidth}{quadruple meter}};
\end{scope}
\end{tikzpicture}
\end{figure}
\end{document}



