views:

596

answers:

4

Hi, I'm preparing a thesis report in LaTeX. I don't want to use the memoir class as I would like total control. I have two questions:

  1. My thesis consists of an introduction and then a series of articles pasted one after the other. Thus each article has its own abstract, introduction, etc... and a bibliography at its end. I understand that perhaps a package like multibib can help when we have multiple bibliographies. The idea that I came with is to write each article separately and then use pdfpages to combine the final document. Long time ago dvi files concatenation was popular but with graphics I think that pdfpages is better.

    I saw that another package exists, named combine which can help with what I am doing. I'm still exploring my options. Any suggestions?

  2. If I decide to use a book class instead to make my thesis resemble more into a book-like format which is better, then using the book class format gives me section headings like 0.1 Introduction with the leading 0. This 0 doesn't show in the article class format. How to change this default book class numbering format so that I'll have e.g. 1. Introduction?

Thanks a lot...

+3  A: 

You only get 0.1 as the first number if you use \section as your top-level structure. In a book you should use \chapter.

Kilian Foth
aha...I never thought of this :). Thanks.
yCalleecharan
Right. If you really want sections before the first chapter, you probably want to use `\section*` to suppress numbering. But you probably don't want this.
Charles Stewart
+4  A: 
Charles Stewart
Thanks for your comments. I don't plan to mess much with formatting. The article class is good for my articles. I just need to find a proper way to combine all my articles together, add an introduction in the beginning of the thesis and this is it. As each article is independent from each other, then I'm thinking of pdfpages as a good solution to get the final combined pdf. For each of my articles making up the thesis, I can specify at what page number I would like a particular article to start.
yCalleecharan
I've read bout context but I don't have the time to invest in learning here. My goal is not to spend too much time producing a beautiful document. Standard LaTeX classes are very good and produce formal ad well-balanced layouts.
yCalleecharan
@yCall: Having forked `report` for my dissertation, I can attest that you *will* spend a considerable amount of time working on latex instead of writing you thesis if you go that way.
dmckee
Thanks. I know how time-consuming LaTeX can be. I already have a working template but I need to do some fine adjustments here and there for example to be able to include multiple bibliographies etc. and I believe that this will save me more time than learning the memoir class.
yCalleecharan
+3  A: 

I'd say take a look at memoir again. It's like an extended book class that includes functionality of many packages by default (fancyhdr & titlesec to name a few).

  1. If you are writing all the articles yourself (so they will all be in latex; it wasn't clear to me if you're authoring the whole document or compiling research...) then there is no reason to use pdfpages. Just section your document appropriately (maybe use the \part command). You'll have much better control of bibliography(s)

  2. The book class probably gives you a 0.1 or .1 because you're using the \section command, which is the top-level command in the article class-- \chapter will give you the 1.0 that you're looking for.

My own recommendation:

Start with whatever class you'd like and a minimal amount of packages loaded. Write EVERYTHING first, and worry about the style/look/feel of the document after you're done authoring the WHOLE THING.

Mica
Thanks. Yes it's a series of my own articles. \part seems very appropriate here but then I think that I'll need multibib for multiple bibliographies (1 for each article). Yes you're right: Content first and then I'll make any adjustments in my layouts. LaTeX helps indeed a lot to focus on content.
yCalleecharan
A: 

To merge several independent articles into a single bigger document, have a look at the combine package.

Damien Pollet
Thanks. Yes I mentioned this up in my post but I have never given it a try yet.
yCalleecharan