I have managed to make a decent Table of Contents. However, it does not include the following items:
- List of Abbreviations
- List of Symbols
- Abstract
- Acknowledgements
My Table of Contents has no problem listing the item from Introduction onwards (set in arabic numerals) but the items highlighted above (and set in roman numerals) do not appear. Basically, I want List of Abbreviations, Symbols, Abstract and Acknowledgement to appear BEFORE Introduction, and under roman numerals. Thank you so much.
I have posted my code below:
\documentclass[12pt]{article}
\usepackage{fullpage}
\usepackage{siunitx}
\usepackage{siunitx}
\usepackage[left=1.5in, right=1.5in, top=1.25in, bottom = 1.25in]{geometry}
\usepackage{amsmath, amsfonts, amssymb}
\usepackage{enumitem}
\usepackage{booktabs}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{rotating}
\usepackage{placeins}
\usepackage[font=scriptsize,labelfont=bf]{caption}
\DeclareMathSizes{12}{12}{12}{12}
\begin{document}
\pagenumbering{roman}
\tableofcontents
\pagebreak
\listoffigures
\pagebreak
\listoftables %Includes List of Tables%
\pagebreak
\section*{List of Abbreviations}
\pagebreak
\section*{List of Symbols}
\pagebreak
\section*{Abstract}
\pagebreak
\section*{Acknowledgment}
\pagebreak
\pagenumbering{arabic}

equation. Also, don't load a package more than once. – Apr 05 '19 at 14:15