I'm new to the LaTeX scene as I've starting writing my thesis. I'm using a root .tex file and using \include to add in my chapters (etc). I'm also using \nomencl to add an abbreviations list. I'd like to have one central file that I can add abbreviations too and then add it to my final document. So I have manged to make that work but I can't get rid of the blank page created where I include my abbreviations file
abbrev.tex
\addtocontents{toc}{\protect\setcounter{tocdepth}{-1}}
\section{}
\nomenclature{JOE}{Job Obselete Effort}%
\nomenclature{NHE1}{The human Na$^{+}$/H$^{+}$ exchanger isoform-1}%
\nomenclature{home}{Where the heart is}
\nomenclatenter code hereure{LaTeX}{better than sliced bread}%
root.tex
\documentclass[10pt,oneside]{report}
...
\begin{document}
...
\include{chapter1
\include{chapter2}
\include{abbreviations}
...
\end{document}
and just to make it really clear: everything (i.e. all abbreviations and abbreviation list are inserted correctly in the document) is working EXCEPT I get a blank page where \include{abbreviations} is. I know I can just add all the \nomenclature{...} lines at the end of a chapter file but it would be nice to have them in one place. I've also tried `\input' instead but it's exactly the same.
clearpage,cleardoublepageas detailed in remove-newpage-after-tableofcontents-listoffigures-etc-in-book-class – cmhughes Mar 01 '13 at 16:48\let\cleardoublepage\relaxand\let\clearpage\relaxremoves the extra page but it also seems to remove what ever page it is on. So if I put it in my final chapter at the beginning it removes the last page of text and my references. If I put it after the bibliography code it removes just the references. If I add it to the abbrev file it removes the nomenclature page. Without my entire document this might be hard but, where do I put it? – UbuntingBiochemist Mar 01 '13 at 17:16\let\cleardoublepage\relaxdoesn't have any effect but\let\clearpage\relaxdeletes the page it's on – UbuntingBiochemist Mar 01 '13 at 17:22\begingroup\let\cleardoublepage\relax\let\clearpage\relax\endgroupbut this has no effect (same as adding no code) – UbuntingBiochemist Mar 01 '13 at 17:28