LB wrote:
>>> I'm using document class "book(mwbk)" with Lyx 1.4.1 on Win XP. The
>>> latex forces the bibliography to start on a new page, as it supposed
>>> to do. However, I would like to have the bibliography to start
>>> immediately after the text. I have tried different, but not all,
>>> bibliography styles with no success. My citation style is default
>>> (I'm not sure whether that changes anything).
For what it's worth, it's pretty standard, in a BOOK, to start the
bibliography on a new page. If you don't want to do that, then I'm
guessing maybe you're not writing a BOOK and ought to be using a
different class.
>> This is controlled by the class. One solution is to redefine the
>> thebibliography environment from mwbk.cls (it uses \chapter*, which
>> inserts
>> the pagebreak).
> I was hoping to be able to redefine the behaviour in the preamble.
> Unfortunately my Latex skills are very limited... 
The class file is mwbk.cls, which you can find using whatever file-find
tool your poor excuse for an operating system provides. ;-) In there,
you will find this environment definition, more or less:

\newenvironment{thebibliography}[1]{%
  \def \chaptermark [EMAIL PROTECTED]
  \chapter*{\bibname}%
  [EMAIL PROTECTED]@[EMAIL PROTECTED]
    [EMAIL PROTECTED]
    \leftmargin\labelwidth
    \advance\leftmargin\labelsep
    [EMAIL PROTECTED]@code
    \usecounter{enumiv}%
    [EMAIL PROTECTED]@empty
    [EMAIL PROTECTED]@enumiv}%
    \secondarysize}%
    \sloppy
    [EMAIL PROTECTED]
    [EMAIL PROTECTED]@[EMAIL PROTECTED] `thebibliography' environment}}%
    \endlist}

It ought to be enough to change the first two lines to:

  \def \sectionmark [EMAIL PROTECTED]
  \section*{\bibname}%

Richard

Reply via email to