BibTeX, biblatex and biberList of references without citation

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Franzi_LaTeX
Posts: 10
Joined: Sun Jun 24, 2018 1:24 am

List of references without citation

Post by Franzi_LaTeX »

Hi everyone! :)
I´ve started now working with LaTeX a couple of days ago and created my first essay. Everything fine so far. I use biber for my citations and references. Everything is working and looks as I want. My only issue is that I would like to have a list of references with a couple af articles and books in the end. Unfortunately, only the articles I have cited in the text are given in my reference list (as usually required). However, I also need the other articles and books to appear in the end. Can you help me how its possible to do that?

\usepackage[backend=biber,
style=authoryear-icomp,
sorting=nyt,
url=true,
natbib=true,
hyperref=true,
]{biblatex}

\DeclareLanguageMapping{english}{american-apa}
\bibliography{Terrorism_Bibliography.bib}


\usepackage{tocstyle}
\newtocstyle[KOMAlike][leaders]{chapterwithdot}{
\settocfeature{pagenumberbox}{\makebox[1em][r]}
\settocfeature[-1]{leaders}{\hfill}
\settocfeature[-1]{pagenumberbox}{\phantom}
}
\usetocstyle{chapterwithdot}

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

List of references without citation

Post by Stefan Kottwitz »

Hi,

welcome to the forum!

Use the command

\nocite{*}

Stefan
LaTeX.org admin
Franzi_LaTeX
Posts: 10
Joined: Sun Jun 24, 2018 1:24 am

List of references without citation

Post by Franzi_LaTeX »

thanks a lot, that worked! :)
Post Reply