i am constructing a hierarchical diagram for my thesis document having large number of child and parent nodes but they exceed the size of paper due to which i am unable to see half of the content of my diagram. The code i used is as follows:
\documentclass[12pt,oneside]{mitthesis}
\usepackage{geometry}
\usepackage{forest}
\begin{document}
\noindent\begin{forest}
for tree={
parent anchor=south,
child anchor=north,
align=left,
edge path={
\noexpand\path [\forestoption{edge}] (!u.parent anchor) -- +(0,-5pt) -| (.child anchor)\forestoption{edge label};
},
}
[Text Summarization
[Extractive\\Summarization
[Similarity
[Topic
[Explicit]
[Implicit]]
[Cluster, tier=other
[Gold Method]
[test]]
]
[Lexical Chain
[LexGraph]
[LexRank]
]
[Classification, tier=other
[Supervised]
[Unsupervised]
]
[Feature\\Selection
[Graph Based]
[Swarm Based]
[Document Categorization]
]
[Feature\\Extraction
[Sentence\\Segmentation]
[Fuzzy Logic]
[Sentence Ranking]
]
]
[Abstractive\\Summarization]
]
\end{forest}
\end{document}
i want to display all the content on a single page but with mitthesis page format any help would be appreciated.

mitthesisis not a standard class. – cfr Sep 27 '15 at 15:09a4size paper used for thesis purpose. – Afzaal Ahmad Sep 27 '15 at 15:45