I want to increase the spacing between the nodes in a stencil, linked to each other by a stroke
\documentclass[a4paper, 12pt]{book}
\usepackage{tikz}
\newcommand{\stencilptbig}[4][]{\node[circle,draw,inner sep=0.1em, outer sep=0pt, minimum size=0.7cm,font=\scriptsize,#1] at (#2) (#3) {#4}}
\begin{document}
\begin{tikzpicture}
\stencilptbig{ -1,0}{i-1} {$\frac{1}{h^2}+\frac{3}{2h}$};
\stencilptbig{ 0,0}{i} {$\frac{-2}{h^2}$};
\stencilptbig{ 1,0}{i+1}{$\frac{1}{h^2}-\frac{3}{2h}$};
\draw
(i-1) -- (i)
(i) -- (i+1);
\end{tikzpicture}
\end{document}


\stencilptbigis the node position. Change-1,0to-2,0and1,0to2,0. Or you can scale down the nodes (for example with usingscale=.5). – Kpym Dec 31 '18 at 14:48