I am now doing a chart. And I want to position the node A in the middle and keep the other nodes unchanged. However, neither \begin{center}...\end{center} nor \centering are working. Any idea how to solve this? Thanks a lot.
\documentclass{article}
%-----------------------------------------------
\usepackage{pdflscape}
%\usepackage{rotating}
\usepackage{adjustbox}
%\usepackage[pdftex]{graphics}
\usepackage[a4paper,margin=0mm]{geometry}
\usepackage{tikz}
\usetikzlibrary{chains, positioning}
\tikzstyle{startstop} = [rectangle, minimum width=3cm, minimum height=1.5cm,text centered, text width=3cm, draw=black]
\tikzstyle{process} = [rectangle, minimum width=2.5cm, minimum height=1cm, text centered, draw=black, fill=orange!0]
\tikzstyle{process2} = [rectangle, minimum width=2.5cm, minimum height=1cm, text centered, draw=black, fill=orange!0]
\tikzstyle{process3} = [rectangle, minimum width=2.5cm, minimum height=1cm, text centered, text width=2.5cm, draw=black, fill=orange!0]
\tikzstyle{process4} = [rectangle, rounded corners, minimum width=2.5cm, minimum height=1cm, text centered, text width=2.5cm, draw=black, fill=orange!0]
\tikzstyle{process5} = [rectangle, rounded corners, minimum width=2.5cm, minimum height=1cm, text centered, text width=2.5cm, draw=black, fill=orange!0]
\tikzstyle{process6} = [rectangle, rounded corners, minimum width=2.5cm, minimum height=1cm, text centered, text width=2.5cm, draw=black, fill=orange!0]
\tikzstyle{process7} = [rectangle, rounded corners, minimum width=2cm, minimum height=1.0cm, text centered, text width=2cm, draw=black, fill=orange!0]
\tikzstyle{process8} = [rectangle, rounded corners, minimum width=1cm, minimum height=1.0cm, text centered, text width=1cm, draw=black, fill=orange!0]
\tikzstyle{arrow} = [thick,->,>=stealth]
%-----------------------------------------------
\begin{document}
\begin{landscape}
\begin{figure}[htb]
\centering
\begin{adjustbox}{width=29.5cm, height=\textheight, keepaspectratio}
\begin{tikzpicture}[node distance=2cm][scale=0.01,anchor=center]
\node (start) [startstop] {\textbf{A}};
\node (pro1) [process, below of=start, yshift=-1cm]{B};
\node (pro2) [process2, right of=pro1, xshift=2.5cm]{C};
\node (pro3) [process3, right of=pro2, xshift=3cm]{D};
\node (pro4) [process4, below of=pro1, yshift=-1cm]{E};
\node (pro5) [process5, right of=pro4, xshift=1cm]{F};
\node (pro6) [process6, right of=pro5, xshift=1cm]{G};
\node (pro7) [process7, right of=pro6, xshift=0.8cm]{H};
\node (pro8) [process8, right of=pro7, xshift=0.08cm]{I};
\draw [arrow] (start) -- (pro1.north);
\draw [arrow] (start) -- (pro2.north);
\draw [arrow] (start) -- (pro3.north);
\draw [arrow] (pro2) -- (pro4.north);
\draw [arrow] (pro2) -- (pro5.north);
\draw [arrow] (pro2) -- (pro6.north);
\draw [arrow] (pro2) -- (pro7.north);
\draw [arrow] (pro2) -- (pro8.north);
\end{tikzpicture}
\end{adjustbox}
\caption{Hello}
\end{figure}
\end{landscape}
\end{document}


