I have a question that may be subjective but I will try to make it as less subjective as possible.
Is this the correct way to format a book in LaTeX?
What I have done is the following:
Main.tex - This file contains the structure of the book.
Separate file for each chapter:
Chapter1.tex
Chapter2.tex
etc..
Each chapter file is set up in the following way:
\chapter{Chapter name}
\section{Section name}
\subsection{subsection name}
Then these chapter files are added to the main file through input
Is this the correct way of formatting? Or in other words, is there a more efficient way to do this or am I do this correctly? Can I improve on this?
Thanks a lot for your time!
EDIT:
I am referring to the input files and how they should be structured and if the way I have structured my chapters is also correct.
\inputto\includeand now only my first chapter is showing. – Jeel Shah Mar 09 '13 at 20:13\includeforces a\clearpage, i.e. the content will start at a new page, which is also need in combination with\includeonlywhich you don’t have with\input. Only the first chapter is showing? Something’s wrong. – Qrrbrbirlbel Mar 09 '13 at 20:26