General ⇒ bibliography style
bibliography style
So for e.g., in one part of my document, I'd like to have something like:
"Apples are red (1)" (numerical style), and then in a later part of the document, I'd like to switch to "Blueberries are blue (Smith et al., 2008)" (author-year style (apalike)).
I'd like my bibliography at the end to be the default that corresponds to the apalike style however, no matter whether the reference corresponds to a numerical or apalike style citation.
I've tried putting the \bibliographystyle command just before where I'd like to change the style but it doesn't seem to work. (I'm also using the natbib package if that makes a difference).
Thanks for any help!
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: bibliography style
Re: bibliography style
So something like this:
intro
lit review
manuscript 1
manuscript 1 biblio
manuscript 2
manuscript 2 biblio
conclusion
overall biblio
bibliography style
I suppose that each manuscript is really a long article that you intend to publish alone. So you have had to adapt it somehow in order to include it in the thesis. It is a trivial change to comment out the lines which write the corresponding bibliography.
From the reader's point of view, there is almost no difference in searching references inside a bibliography specific to the manuscript than searching them in the full bibliography.
Summarizing, I suggest you to consider if you really need to include the intermediate bibliographies. If you finally decide to going on with them, I have some ideas based on the following bases:
- The bibliographies are obtained via the multibib package.
- It is possible to use the numerical style in all of them. To distinguish one from another, items can be numbered, for example, [A1], [A2],... in the first bibliography, [B1], [B2],..., in the second one, and, say, [C1], [C2],... in the complete bibliography.
- Each bibliography requires its own bib file.
- There is a serious drawback: a document appearing in two different bibliographies requires different labels in the corresponding bib files. You should manually tweak the bib files to assure that there are no repeated labels.
Re: bibliography style
thanks again! the intermediate bibliographies aren't really up to me - those are dept formatting regulations! I did try the natbib package at one point and now that you mention that drawback, I think that was the reason why I had abandoned it. I have a way of going about this but it requires cutting and pasting pdfs together. I was just looking for a lazy way around this because 1) this is inconvenient every time I have to do this and 2) using the natbib package would require me to change all the citations and I'm on a bit of a time crunch! well, thanks anyway!