From: Beni C. <cb...@us...> - 2003-09-10 16:33:21
|
Beni Cherniavsky wrote on 2003-09-10: > Even better IMO would be to somehow abuse Latex to make all other > bibliographic fields parts of the title page. One idea is to stuff > them all into into the \author{} but I'm not sure what constructs > will work there (e.g. ``\\`` doesn't work, you need ``\and``). A > more robust approach would be to use ``\nopagebreak`` after > ``\maketitle``, stuff the other bib. fields into the same page, and > add add ``\pagebreak`` if document_class in 'book', 'report'. Can > anybody share some experience with abusing latex's titlepage, before > I start experimenting (I also need my university's logos at the top > :-()? A third option is to omit ``\maketitle`` altogether > generating our own titlepage. > Checked, ``\maketitle`` doesn't respect an immediately following ``\nopagebreak``. But I found what we want: \begin{titlepage} text \end{titlepage} The `titlepage' environment creates a title page, i.e. a page with no printed page number or heading. It also causes the following page to be numbered page one. Formatting the title page is left to you. The `\today' command comes in handy for title pages. Note that you can use the `\maketitle' (*note \maketitle::.) command to produce a standard title page. -- info latex --index titlepage I believe the only sensible way is to make our own titlepage with it. For document classes other than report and book, the `titlepage` env should be omitted and the same(?) output should be generated on the same page (are there other differences between the styles?). I'll now try to look at the latex sources for the default title pages... -- Beni Cherniavsky <cb...@us...> |