Here is my mwe:
\documentclass[%
english,
cdfont=false,
cdtitle=color,
cdfont=nodin
]{tudscrreprt}
\usepackage{blindtext}
\usepackage[toc,page]{appendix}
\usepackage{listings}
\usepackage{tocloft}
\begin{document}
\pagenumbering{roman}
\tableofcontents
\newpage
\listoffigures
\addcontentsline{toc}{chapter}{List of Figures}
\listoftables
\addcontentsline{toc}{chapter}{List of Tables}
\lstlistoflistings
\addcontentsline{toc}{chapter}{List of Listings}
\clearpage
\pagenumbering{arabic} %%%%%%% RESETTING PAGE NUMBERING TO 1.
\chapter{Requirement/Limitation}
\section{Layout Dependancy}
\section{corner Dependancy}
\chapter{Performance on a Large Design}
\section{Design}
\section{Results}
\chapter{Future Works}
\begin{appendices}
\clearpage
\pagenumbering{arabic}\renewcommand{\thepage}{\thechapter-\arabic{page}}
\chapter{Parasitic Extraction}
\chapter{Development of Box Methodology}
\blindtext
\end{appendices}
\newpage
\clearpage
\pagenumbering{Roman}
\end{document}
It outputs List of Figures and List of Tables in the same page but List of Listings in a new page. If I comment the \usepackage{tocloft} then, I get the List of Listings in the same page. But I need this package for some other purpose. Is there a clean work-around to bring the heading in the same page?
tudscrrprtclass? – Aug 28 '17 at 17:41