I have a chapter which have a table with 'tiny' font size. However, the following chapter is still using 'tiny' font size rather than the default text size. What should I do to change it back? Here is the code
Code: Select all
\documentclass[a4paper,12pt,oneside]{report}
\usepackage{graphicx}
\usepackage[left=4.5cm,right=2.5cm]{geometry}
\usepackage{epsfig}
\usepackage[margin=10pt,font=footnotesize,labelfont=bf]{caption}
\usepackage[singlespacing]{setspace}
\usepackage[english]{babel}
\begin{document}
\chapter{test1}
\tiny {
test tiny font
}
\chapter{test2}
blah blah
\end{document}