I need to get start with making a matrix in Tikz. I need to study the manual but need some help with an example to get started. My minimal example is very poor but it is the best I can do without hours of study
I want to go from:
\documentclass{article}
\usepackage{amsmath}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{shapes.arrows,matrix,positioning}
\usetikzlibrary{decorations.markings}
%%%
\begin{document}
\begin{center}
\begin{tikzpicture}
\matrix[matrix of math nodes,nodes={align=center,inner sep=3pt,
text height=1.5ex,text depth=.25ex,draw=gray!40,ultra thin},draw,inner
sep=0pt,ampersand replacement=\&] (mat1)
at (0,0){
|[fill=green!40!gray,text width=30mm]| \text{Graph over the} \& |
[fill=green!40!gray,text width=11mm]| f(x) \\
|[fill=green!40!gray,text width=30mm]| \text{interval $(a,b)$} \& |
[fill=green!40!gray,text width=11mm]| f(x) \\
|[text width=30mm]| \& |[text width=11mm]| \\
|[text width=30mm]|
\& |[text width=11mm]| \\
|[text width=30mm]|
\& |[text width=11mm]| \\
};
\end{tikzpicture}
\end{center}
\end{document}
which outputs:
to a program which outputs:
Again sorry that the minimum example is so weak but I am just getting started with the matrix in TiKz.



tikzpicturein a table. All the other textual parts shoud belong to the table. – Sigur Dec 27 '18 at 18:53