I have made two tabulars, inside a pmatrix, inside a math environment (displaymath). The outcome doesn't fit on the page, does anybody know how I can scale my code, so that it fits?
\documentclass[a4paper]{amsart}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1ex plus 0.5ex minus 0.2ex}
\usepackage[dutch]{babel}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage{graphicx}
\begin{document}
\begin{displaymath}
\begin{pmatrix}
\begin{tabular}{c c c c c c c c c c c}
& & &$\vdots$ & & & &$\vdots$ & & & \\
&$A$ & & 0 & & $B$& & 0& & $C$& \\
& & &$\vdots$ & & & &$\vdots$ & & & \\ \cline{4-8}
$\cdots$ &0 &$\cdots$ 0&\multicolumn{1}{|l}{0} & 0 & $\cdots$&0 & 1 &\multicolumn{1}{|l}{0}$\cdots$ & 0&$\cdots$ \\\cline{5-7}
& & & \multicolumn{1}{|l}{0} & \multicolumn{1}{|l}{} & & & \multicolumn{1}{|l}{0}&\multicolumn{1}{|l}{} & & \\
&$D$ & & \multicolumn{1}{|l}{ $\vdots$ } & \multicolumn{1}{|l}{} & $E$& &\multicolumn{1}{|l}{$\vdots$}& \multicolumn{1}{|l}{}& $F$& \\
& & & \multicolumn{1}{|l}{0} &\multicolumn{1}{|l}{} & & & \multicolumn{1}{|l}{0}& \multicolumn{1}{|l}{}& & \\ \cline{5-7}
$\cdots$ &0 &$\cdots$ 0 & \multicolumn{1}{|l}{1} & 0 & $\cdots$&0 & 0 &\multicolumn{1}{|l}{0 $\cdots$} & 0&$\cdots$ \\ \cline{4-8}
& & & $\vdots$ & & & & $\vdots$& & & \\
&$G$ & & 0 & & $H$& & 0& & $I$& \\
& & & $\vdots$ & & & & $\vdots$& & & \\
\end{tabular}
\end{pmatrix}
\Longrightarrow
\begin{pmatrix}
\begin{tabular}{c c c c c c c c c c c}
& & &$\vdots$ & & & &$\vdots$ & & & \\
&$A$ & & 0 & & $B$& & 0& & $C$& \\
& & &$\vdots$ & & & &$\vdots$ & & & \\ \cline{4-8}
$\cdots$ &0 &$\cdots$ 0&\multicolumn{1}{|l}{0} & 0 & $\cdots$&0 & 1 &\multicolumn{1}{|l}{0}$\cdots$ & 0&$\cdots$ \\\cline{5-7}
& & & \multicolumn{1}{|l}{0} & \multicolumn{1}{|l}{} & & & \multicolumn{1}{|l}{0}&\multicolumn{1}{|l}{} & & \\
&$D$ & & \multicolumn{1}{|l}{ $\vdots$ } & \multicolumn{1}{|l}{} & $E$& &\multicolumn{1}{|l}{$\vdots$}& \multicolumn{1}{|l}{}& $F$& \\
& & & \multicolumn{1}{|l}{0} &\multicolumn{1}{|l}{} & & & \multicolumn{1}{|l}{0}& \multicolumn{1}{|l}{}& & \\ \cline{5-7}
$\cdots$ &0 &$\cdots$ 0 & \multicolumn{1}{|l}{1} & 0 & $\cdots$&0 & 0 &\multicolumn{1}{|l}{0 $\cdots$} & 0&$\cdots$ \\ \cline{4-8}
& & & $\vdots$ & & & & $\vdots$& & & \\
&$G$ & & 0 & & $H$& & 0& & $I$& \\
& & & $\vdots$ & & & & $\vdots$& & & \\
\end{tabular}
\end{pmatrix}
\end{displaymath}
\end{document}


