GeneralHow to include a publication list in a thesis

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
erougier
Posts: 1
Joined: Thu Oct 02, 2008 9:33 pm

How to include a publication list in a thesis

Post by erougier »

Hello,

I am writing my PhD thesis in latex and need to include a publications list (separated from the bibliography) and do not know how to do it! Any idea woul be appreciated! btw, I am not so advanced with latex... :lol:

Thanks in advance,
er.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

brlnd
Posts: 15
Joined: Wed Sep 17, 2008 6:50 pm

How to include a publication list in a thesis

Post by brlnd »

The bibunits-package can do this for you, see http://www.ctan.org/tex-archive/help/Ca ... units.html
spiegboy
Posts: 120
Joined: Thu Dec 06, 2007 9:58 am

Re: How to include a publication list in a thesis

Post by spiegboy »

just simply use bibitem environment. i dont think you publish more than 20 papers in your phd study
bmuth
Posts: 3
Joined: Mon Oct 20, 2008 8:05 pm

How to include a publication list in a thesis

Post by bmuth »

Hi,

I would like to achieve the same goal: produce a references list at the end of each chapter with the bibunits package.
Following the indications in the bibunits package help reference indicated above, I still cannot achieve that.

I am windows user :roll: have MikTex 2.7 and Texniccenter 7.50 as an interface.

How do I process the bu1.aux, bu2.aux, bu*.aux .... files produced by the regular pdflatex compilation with bibtex ?

Shall I add in the postprocessing stage (Build-> Define Output profile) a bibtex compilation?
How and with which arguments ?
How do I have this bibtex repeating and how do have pdflatex again running several times after that?


If one single regular latex processing step is enough,
could someone say from his experience,
whether my problem can stem from any compatibility issues with the following packages?

Code: Select all

\usepackage{makeidx}
\usepackage{amsmath,amsfonts} 
\usepackage{graphicx,sectsty}
\usepackage{setspace} % ,fancyhdr
\usepackage[sectionbib,globalcitecopy]{bibunits}  
% \usepackage{natbib}
\usepackage{shorttoc}
\usepackage[nottoc,numbib,numindex]{tocbibind}
\usepackage{cite}
\usepackage{ifthen}
\usepackage{tikz}
\usetikzlibrary{arrows} % shapes
\usepackage{verbatim}
\usepackage[intoc,noprefix,refpage]{nomencl}
\usepackage{hyperref}
Many thanks in advance !

bm
bmuth
Posts: 3
Joined: Mon Oct 20, 2008 8:05 pm

How to include a publication list in a thesis

Post by bmuth »

Sorry. Problem solved by myself. :|

To try automating the process, outside TexnicCenter for the moment,
I first built with the standard output profile from TexnicCenter
then executed a windows .bat batch file, where I have written

Code: Select all

pdflatex -interaction=nonstopmode FirstYear
makeindex FirstYear.nlo -s nomencl.ist -o FirstYear.nls  :: 
bibtex bu1 
bibtex bu2 
bibtex bu3 
bibtex bu4 
pdflatex -interaction=nonstopmode FirstYear
pdflatex -interaction=nonstopmode FirstYear
and then built with TexnicCenter again to make sure all bibliographies, symbols list, abbreviations list and TOCs have compiled correctly.
rouroy
Posts: 3
Joined: Wed Jun 16, 2010 8:38 am

Re: How to include a publication list in a thesis

Post by rouroy »

hi, I got the same kind of problem. How do yo run a batch file with texniccenter ? tanks
spiegboy
Posts: 120
Joined: Thu Dec 06, 2007 9:58 am

Re: How to include a publication list in a thesis

Post by spiegboy »

I just finished writing up,
for the publication list, you can just simply use enumerate environment.
Post Reply