I am using MiKTex 2.9. I would like to include the 'Abbreviations' page in my contents page, along with the roman numeral page number. However when I use the \section{section name}command it gives the title a section number. And when I use \section*{section name}, the title does not appear in the contents page. I have also tried the suggestion from Using scrbook, how to suppress page numbers for all but several chapters in TOC? but I get an 'undefined control error'.
Can you please advise? I have attached my MWE.
\documentclass[a4paper,11pt]{article}
\usepackage{color}
\usepackage{graphicx, epstopdf}
\usepackage{gensymb}
\usepackage{times}
\usepackage{adjustbox}
\usepackage{tabulary}
\usepackage{tabularx}
\usepackage{booktabs,caption, makecell}
\usepackage{pdflscape,afterpage,caption}
\usepackage[british]{babel}
\usepackage[backend=bibtex, citestyle=ieee, bibstyle=ieee]{biblatex}
\usepackage[section]{placeins}%Allows you to permanently fix figures.
\begin{document}
\pagenumbering{roman}
\newpage
\tableofcontents
\newpage
\section*{Abbreviations}
\begin{table}[ht]
\setlength\tabcolsep{60pt}
\centering
\small
% your table
\hspace*{-18mm}%
\begin{tabular}{cc}
\toprule
{Abbreviation}&{Explanation}\\ [0.5ex]
\midrule
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
Item1&Item1\\
\bottomrule
\end{tabular}%
\hspace*{-12mm}%
\label{table:ETD Raman}
\end{table}
\newpage
\pagenumbering{arabic}
\section{Test 1}
Video provides a powerful way to help you prove your point. When you click Online Video, you can paste in the embed code for the video you want to add. You can also type a keyword to search online for the video that best fits your document.
\end{document}
Thanks in advance!
tableenvironment is wrong here, remove it. Also, *Always* do\cleardoublepagebefore changing the pagenumbering style. Also, packagetimesis obsolete for many years, just to point out a few things in your code. – Johannes_B Feb 24 '18 at 09:42