% PREAMBLE
\documentclass[12pt, twoside]{report}
% Add your useful packages here
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{csquotes}
\usepackage{graphicx}
\usepackage[main=english,vietnamese]{babel}
\usepackage[a4paper, top=1in, bottom=0.8in, left=1in, right=1in]{geometry}
\usepackage{fancyhdr}
% Include graphics path, you have to put your images into images/ folder, and only refer their name when adding them
\graphicspath{{images/}}
% BODY
\begin{document}
\pagenumbering{roman}
% Title Page (i, not printed)
\begin{titlepage}
\centering
\vspace{1cm}
\textbf{VIETNAM NATIONAL UNIVERSITY – HO CHI MINH CITY}\par \textbf{THE
INTERNATIONAL UNIVERSITY}\par \textbf{SCHOOL OF ...}\par
\vspace{2.5cm}
\includegraphics[width=0.3\textwidth]{IU.png}
\vspace{2.5cm}
\textbf{\large TITLE OF YOUR (PRE)THESIS}
\vspace{2.5cm}
By \par \textbf{Your name}
\vspace{2.5cm}
\textit{A (pre)-thesis submitted to the School of ... \\ in partial
fulfillment of the requirements for the degree of \\ Bachelor of ...}
\vspace{2.5cm}
\text{Ho Chi Minh City, Vietnam} \par 202...
\newpage
% Signature Page (ii, not printed)
\centering
\vspace*{1cm}
\textbf{\large TTILE OF YOUR (PRE)THESIS}\par
\vspace{2cm}
\hspace{7cm}
\makebox[7cm][l]{\text{APPROVED BY:}}
\par
\vspace{0.75cm}
\hspace{7cm}
\makebox[7cm][l]{\underline{\hspace{7cm}},}
\par \hspace{7cm}
\makebox[7cm][l]{\textit{Committee name here}}
\par
\vspace{0.75cm}
\hspace{7cm}
\makebox[7cm][l]{\underline{\hspace{7cm}}}
\par \hspace{7cm}
\makebox[7cm][l]{\textit{Committee name here}}
\par
\vspace{0.75cm}
\hspace{7cm}
\makebox[7cm][l]{\underline{\hspace{7cm}}}
\par \hspace{7cm}
\makebox[7cm][l]{\textit{Committee name here}}
\par
\vspace{0.75cm}
\hspace{7cm}
\makebox[7cm][l]{\underline{\hspace{7cm}}}
\par \hspace{7cm}
\makebox[7cm][l]{\textit{Committee name here}}
\par
\vspace{0.75cm}
\hspace{7cm}
\makebox[7cm][l]{\underline{\hspace{7cm}}}
\par \hspace{7cm}
\makebox[7cm][l]{\textit{Committee name here}}
\par
\vspace{0.75cm}
\hspace{7cm}
\makebox[7cm][r]{\text{THESIS COMMITTEE}}
\par
\thispagestyle{empty}
\end{titlepage}
% Acknowledgments Page (iii, not printed)
\chapter*{Acknowledgments}
I want to thank...
\thispagestyle{empty}
% Table of Contents, List of Figures, List of Tables
\tableofcontents
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
% Abstract Page (iv, printed)
\chapter*{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
Abstract goes here...
% Start main body with Arabic numbering, define a \chapter{Chapter name} followed by \input{chapters/filename}
\chapter{Introduction}
\pagenumbering{arabic}
\setcounter{page}{1}
\input{chapters/introduction}
\chapter{Chapter Two Title}
\input{chapters/chapter02}
\chapter{Chapter Three Title}
\input{chapters/chapter03}
\chapter{Chapter Four Title}
\input{chapters/chapter04}
\chapter{Conclusion}
\input{chapters/conclusion}
% Bibliography, you can add .bst style file and .bib reference file you here)
\bibliographystyle{IEEEtran}
\bibliography{IEEEexample}
% Add the Appendix part to the paper
\appendix
\chapter{Appendix Title}
\input{chapters/appendix}
\end{document}