Que: See the attached figure how can I achieve it? I want to draw arrows on both sides of the real lines with some text inside it.
MWE:
\documentclass[12pt]{article}
\usepackage[bindingoffset=0.2in,left=0.5in,right=0.5in,top=0.5in,bottom=0.5in,footskip=.25in]{geometry}
\usepackage[centertags]{amsmath}
\usepackage{latexsym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{newlfont}
\usepackage{enumerate}
\usepackage{makeidx}
\usepackage{tikz}
\usetikzlibrary{arrows.meta}
\usepackage{xparse}
\usetikzlibrary{backgrounds,intersections}
\begin{document}
\begin{tikzpicture}[xscale=1.5]
\draw[thick,latex-latex] (-5,0) -- (6,0)node[right]{};
\foreach \x in {-4,-3,-2,-1,0,1,2,3,4}{
\node[fill,circle,inner sep=1.20pt,label=below:$\x$] at (\x,0) {};
};
\end{tikzpicture}
\end{document}


