i have the following question.
Suppose i have a main file and separate chapters. Then all is compile in a pdf file (for example).
The question is how to change features of only one chapter.
For example:
\documentclass[12pt,twoside]{report}
\title{\vspace{-4.0cm}Study}}
\begin{document}
\maketitle
\tableofcontents
\chapter{Introduction}
\input{chapte/intro}
\chapter{State}
\input{chapte/state}
\end{document}
And then i want to change the font type only in one of the chapters, how can i do it?
Should i use some package in the chapter i want to change?
{\itshape \input{....}}and the chapter will be in italic, if that's what you want. – David Carlisle May 27 '17 at 22:33\inputtext is just treated as if it was copied in at that point (not quite true but near enough). – David Carlisle May 27 '17 at 22:39\inputed file. But for TeX, it is exactly the same. – Johannes_B May 28 '17 at 07:30