BibTeX, biblatex and biber ⇒ How to have list of own publications in the frontmatter
-
- Posts: 6
- Joined: Wed Aug 12, 2020 12:41 pm
How to have list of own publications in the frontmatter
Im wanting to have my publications listed in the frontmatter and referenced papers in the references after the conclusion as per normal. Ive used \bibliography{references.bib} for the reference list which is fine, but not sure how I can use \bibliography{publications.bib}
Should I put all items in one bibtex file and then filter out my own publications in the front matter or keep them in two separate bibtex files?
Thanks
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
How to have list of own publications in the frontmatter
biblatex
is out of the question for any reason, you could use multibib
.-
- Posts: 6
- Joined: Wed Aug 12, 2020 12:41 pm
How to have list of own publications in the frontmatter
Hi Bartman, thanks for the feedback.Bartman wrote:If switching tobiblatex
is out of the question for any reason, you could usemultibib
.
I can get multibib to work, but Im not sure how to rename the title of the multibib publications page.
So my reference list is titled "List of References" at the end of the document which is fine, but then the publications list is titled "List of References" as well, how can I change this to List of "Publications" and/or even include subheadings for conference papers and journal articles?
P.S. Ive included the \usepackage{multibib} in the preamble, and \bibliography{publications.bib} in the frontmatter of the doc.
Thanks
How to have list of own publications in the frontmatter

The path in the argument of the
\bibliography
command should be entered without filename extension.I'm not familiar with
multibib
, but a look at its documentation tells me that the \newcites
command should help change the heading.-
- Posts: 6
- Joined: Wed Aug 12, 2020 12:41 pm
How to have list of own publications in the frontmatter
The main tex File
Code: Select all
\usepackage{babel}
\usepackage{multibib}
%
\usepackage{usbib} %.............................. Bibliography
\bibliographystyle{usmeg-a}
\renewcommand\bibfont{\small}
\addto{\captionsenglish}{\renewcommand{\bibname}{List of References}}
\begin{document}
\include{frontmatter/publications}
% The usual document chapters and text.
%Bilbiography (Titled: List of references)
\include{frontmatter/publications}
Code: Select all
\chapter{Publications}}
\section{Journal Articles}
\nocitearticles{*}
\bibliographyarticles{backmatter/Gibbons.bib}
\section{Conference Papers}
\nocitepapers{*}
\bibliographypapers{backmatter/Gibbons.bib}
\endinput
When running this code, the Sections "Journal Articles" and "Conference Papers" are blank but the "Reference List" is populated correctly.
-
- Posts: 6
- Joined: Wed Aug 12, 2020 12:41 pm
How to have list of own publications in the frontmatter
Ideally I want to use another bib package just for the publications in the front matter as I don't want to have to change all my citations in my document using our own bib package
-
- Posts: 6
- Joined: Wed Aug 12, 2020 12:41 pm