my question, is how can I add the bibliography but not as a section,
but as a subsection or subsubsection?, or better, without any name of
section at all [but not just declaring empty the name because that
would mess up the table of contents, and headers, etc].
what i want is to have a bibliography by specific sections, which i am
able to do, as follows
%%%%Main File%%%%%%
\usepackage[sectionbib]{chapterbib}
\begin{document}
\include{Chapter1}
\include{Chapter2}
\end{document}
%%%Example Chapter1%%%%
\chapter{This is the chapter 1}
hola amigos
\addcontentsline{toc}{section}{Bibliography} %Bibliography to toc
\bibliography{mybibFile} %adding the bibliography
%%%Howto Compile:%%%%%%%
latex Main.tex (this will show warning, don't panic >.<)
bibtex Chapter1
bibtex Chapter2
latex Main.tex (2 times)
BUT the problem is that the bibliography appears as a section, that is
in the same hierarchy level than the main section, and i do not want
that, i want it as a subsection, or as a subsubsection
can you guys help me, please?
the answer is explained here http://www.flakery.org/search/show/568
and I just need to define
\renewcommand{\bibsection}{\subsection*{References}}
or
\renewcommand{\bibsection}{\subsubsection*{References}}
it is important to point out, that if \bibsection is defined, I need
to call the package 'chapterbib' as follows not including the option
'sectionbib':
\usepackage{chapterbib}
and not as is bellow
\usepackage[sectionbib]{chapterbib}
that is all!!!