GeneralSeparate references from bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
tdcpina
Posts: 39
Joined: Wed Apr 15, 2009 4:22 pm

Separate references from bibliography

Post by tdcpina »

Hi guys,

I want to separate References (articles, web references, thesis, etc) from Bibliography (just books). Have someone any idea how to do that using the class report?

I want also eliminating the number of the chapter in Introduction and in Conclusion in order to have just the label Introduction on the top, and Chapter 1 effectively in the first chapter after introduction.

Thank you in advance,
Tiago

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Separate references from bibliography

Post by meho_r »

In the attachment you can find simple but complete example how to achieve what you want. To summarize:

0. For unnumbered entries in TOC, you may use starred sectioning command (e.g.
\chapter*{Introduction}) with \addcontentsline{toc}{<sectioning_level>}{<Title_in_TOC>} (e.g. \addcontentsline{toc}{chapter}{Introduction})

1. Use bibtex for managing references/bibliography. Use bibliography style which suites your needs (take a look here) Create two .bib files, one containing articles and other references, and one containing books. Put them at the same place at which is your main .tex file located.

2. Use package bibtopic to separate different types of references.

3. To compile the document (e.g. Test.tex from the attachment), you must run following sequence of commands:

Code: Select all

latex Test
bibtex Test1
bibtex Test2
latex Test
latex Test
Attachments
Test.zip
Contains 3 files: Test.tex, Articles.bib and Books.bib
(1.34 KiB) Downloaded 164 times
tdcpina
Posts: 39
Joined: Wed Apr 15, 2009 4:22 pm

Re: Separate references from bibliography

Post by tdcpina »

Many thanks! It works perfectly.

Best regards,
Tiago
Post Reply