I have a document with 3 chapters. I would like the chapter 2 - Dolor, to appear as a section 1.1 in the table of contents, instead of chapter 2.
I have separate file for each of the chapter and it must stay as a seperate file. How can call chapter as a section from inside chapter 1?
MWE is :
\documentclass[british]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage{subfiles}
\usepackage[backend=biber, style=numeric-comp, refsection=chapter]{biblatex}
\addbibresource{biblatex-examples.bib}
\begin{document}
\tableofcontents
\include{Lorem}
\include{Dolor}
\include{Sit}
\end{document}
The contents of chapter 1 (Lorem.tex) are:
\chapter{Lorem}
Ipsum \autocite{sigfridsson} dolor \autocite{geer,worman}
\section{Lorem Section 1}
To err is human
\printbibliography[heading=subbibliography]
The contents of chapter 2 (Dolor.tex) are:
\chapter{Dolor}
Lorem ipsum \autocite{sigfridsson} dolor \autocite{knuth:ct:a,pines}
\printbibliography[heading=subbibliography]
The contents of chapter 3 (Sit.tex) are:
\chapter{Sit}
Lorem ipsum \autocite{sigfridsson} dolor
\autocite{geer,cicero,companion}
\printbibliography[heading=subbibliography]


\section{Dolor}instead of\chapter{Dolor}. – moewe Sep 29 '18 at 11:49\includestill causes the contents ofDolorto appear on a new page. If you don't want that you should probably use\input. Note that changing from\chapterto\sectionwill also change the behaviour of therefsection. – moewe Sep 29 '18 at 11:56\refstepcounter{section}\addcontentsline{toc}{section}{\protect\numberline{\thesection}Dolor}should do it. – moewe Sep 29 '18 at 12:12\chapter{Dolor}. – moewe Sep 29 '18 at 12:22\chapter{Dolor}in the.texfile for the second chapter with the suggested bit of code. That code just fakes the heading entry for the TOC. It does nothing more. – moewe Sep 29 '18 at 12:24dolor.texand not relative from the main file. – moewe Sep 29 '18 at 12:36