I am writing a project report, where I have been asked to plot the figure using tikz in overleaf. I made the figure on Powerpoint Presentations (PPT) and then imported it on my overleaf using pdf format. Which actually is very high quality.
But I have still been asked to re-plot using tikz plots. I want to ask, is there any major difference between what I have done and what I will get using tikz? Additionally, is it possible to plot this figure?
Kindly someone, suggest how to go about this figure. I was not able to generate the boxes with proper spacing. I don't have any experience using tikz.
I tried making some of the parts of the figure using help from online websites; but could not figure out how to place them as given in the picture or how to exactly make them like the picture.
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz, pgfplots}
\usetikzlibrary{positioning}
\usepackage{geometry,graphicx}
\usepackage{tikz,amsmath}
\usetikzlibrary{fit}
\begin{document}
\vspace{2in}
\begin{tikzpicture}[
SIR/.style={rectangle, draw=black!60, fill=white!5, very thick, minimum size=5mm},
]
%Nodes
\node[SIR] (Susceptible) {X X X X X};
\end{tikzpicture}
Computation domain\
\begin{tikzpicture}
\node[draw,minimum size=1.5cm] (A) at (0,0) {Equation at $x_1$};
\end{tikzpicture}
\begin{tikzpicture}
\node[draw,minimum size=1.5cm] (A) at (0,0) {$x_2 - x_1$ extra integral};
\end{tikzpicture}\
% Preamble: \pgfplotsset{width=7cm,compat=1.3}
\begin{tikzpicture}
\begin{axis}[
xlabel=Quad point,
ylabel={Numerical error}
]
% use TeX as calculator:
\addplot {e^-x+50};
\end{axis}
\end{tikzpicture}
\end{document}

