[Tex/LaTex] Table of Contents numbered in Roman in Lyx

lyxroman numerals

I use Lyx 2.1, document class : report.
I want the pages table of contents, list of figures and list of tables etc. be numbered with roman numerals.
I put this tag before the table of Contents :

\pagenumbering{Roman}

and this tag before the general introduction :

\cleardoublepage\pagenumbering{arabic}

The problem for Roman numerals, only the 1st page Table of Contents is numbered. I want the other pages will be numbered as (the 2nd page table of contents and list of figures etc).

enter image description here
enter image description here

\documentclass{report} 

\usepackage{setspace}
\begin{document}
\begin{onehalfspace}
\pagenumbering{roman}\tableofcontents{}

\listoffigures

\end{onehalfspace}

\listoftables


\pagenumbering{arabic}


\chapter*{\noun{Inroduction générale}\setcounter{page}{1}}

\end{document} % was missing

Best Answer

If the standard setup is applied, no empty second page of the ToC should appear, regardless whether \tableofcontents, \listoffigures etc. is used.

I have used a loop to generate dummy chapters, dummy figures and dummy tables just in order to fill up the corresponding list of something (;-)) and removed the \thispagestyle{empty} used directly after \tableofcontents by the OP.

Basically, Torbjorn T. changed already the code sample in the OP to a working one ;-)

**Edited version, with list of figures and list of tables also in the toc

\documentclass{report}

\usepackage{setspace}%

\usepackage[demo]{graphicx}%
\usepackage{forloop}  % Only for quick chapters ;-)

%\usepackage{hyperref}%

\newcounter{loopcounter}

\begin{document}

\pagenumbering{roman}%
\begin{onehalfspace}%
%\phantomsection% if hyperref is used, then \phantomsection
\addcontentsline{toc}{chapter}{\contentsname}%
\tableofcontents%
\cleardoublepage
%\phantomsection% if hyperref is used, then \phantomsection
\addcontentsline{toc}{chapter}{\listfigurename}%
\listoffigures%
\cleardoublepage
%\phantomsection% if hyperref is used, then \phantomsection
\addcontentsline{toc}{chapter}{\listtablename}%
\listoftables%

\end{onehalfspace}%
\clearpage

% Just a proof that `\pagenumbering{arabic}` resets the page counter
\setcounter{page}{100}

\pagenumbering{arabic}



\forloop{loopcounter}{1}{\number\value{loopcounter} < 21}{%

\chapter{Chapter \number\value{loopcounter}}

\begin{table}
\centering
\begin{tabular}{lll}
\hline
1  & 2 & 3 \tabularnewline
\hline
\end{tabular}
\caption{Dummy table}
\end{table}

\begin{figure}%
\centering
\includegraphics[width=5cm,height=4cm]{somefig}%
\caption{Dummy figure}
\end{figure}%

}



\end{document}

enter image description here

enter image description here

Editorial note I kept the screenshot, since nothing visually changed for that part of the document.