i'd bibtex not start new page, when printing references. why? using package quotchap print nice big numbers on right site each new chapter , want references have such big number. way bould tell bibtex make references chapter, don't know how either of it.
thanks lot.
reference (bibtex) on same page:
i suppose using template? because in normal case, references (using bibtex) not start automatically on new page. example of using:
\bibliographystyle{acm} \bibliography{references}
also make sure have no \newpage
or likewise commands right before bibliography.
changing references separate chapter
if use report
class instead of article
class latex handles references/bibliography chapter heading level, while in article
heading of section.
changing heading hand mimic chapter heading
of course not possible change report
class. in case still not lost. change specific reference heading adding code in preamble. therefore check link.
another possibility change style of numberless sections, using titlesec
package. note affects title format of example table of contents. example of how did in past:
\usepackage{titlesec} \titleformat{name=\section, **numberless**} {\large\sf\raggedright} {}{0mm} {\makeuppercase} [\titlerule] \titlespacing*{name=\section, numberless}{0mm}{10mm}{10mm}
Comments
Post a Comment