I want to increase the spacing between 2 nodes of a stencil. The original design of the stencil comes from this question.
\documentclass[a4paper, 12pt]{book}
\usepackage{pgfplots, tikz}
\newcommand{\stencilptbig}[4][]{\node[circle,draw,inner sep=0.1em, outer sep=0pt, minimum size=0.7cm,font=\normalfont,#1] at (#2) (#3) {#4}}
\begin{document}
\begin{center}
\begin{tikzpicture}
\stencilptbig {-1,1} {i-1} {$\frac{-1}{h^2_t}$};
\stencilptbig {0,1} {i} {$\frac{-2}{h^2_t}+\frac{2}{h^2_x}$};
\stencilptbig {0,0} {ij-1} {$\frac{1}{h^2_t}$};
\stencilptbig {0,2} {ij+1} {$\frac{1}{h^2_t}$};
\stencilptbig {1,1} {i+1} {$\frac{-1}{h^2_t}$};
\draw
(i-1) -- (i)
(i) -- (i+1)
(i) -- (ij-1)
(i) -- (ij+1);
\end{tikzpicture}
\end{center}
\end{document}
I also tried \newcommand{\stencilptbig}[4][]{\node[circle,draw,inner sep=0.1em, outer sep=0pt, minimum size=0.7cm,font=\normalfont,#1, node distance=2cm] at (#2) (#3) {#4}} according to that question but it didn't work
By the way: If there is an easier way to draw the whole thing, please let know.

