I need biblatex to always print the
\newunitpunct
also if the unit ends with a punctuation mark, i.e. "Prosecutor v. Kvocka et al., ICTY ..." for example. How do I do that?Cheers,
Buchling
\newunitpunct
also if the unit ends with a punctuation mark, i.e. "Prosecutor v. Kvocka et al., ICTY ..." for example. How do I do that?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
Code: Select all
\begin{filecontents}{men.bib}
@PROCEEDINGS{Kvocka,
title = {Prosecutor v. Miroslav Kvočka et al.},
year = {2001},
shortauthor = {Kvočka Trial Chamber Judgement},
keywords = {intcase},
howpublished = {Judgement of 2 Nov. 2001},
note = {IT-98-30/1-T},
addendum = {ICTY Trial Chamber}
}
\end{filecontents}
\documentclass[a4paper,12pt,bibtotoc,british]{scrartcl}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc} %Zeichencodierung
\usepackage[style=english]{csquotes} % ermöglicht Befehl \enquote{} für Zitate
\usepackage[T1]{fontenc}
\usepackage{lmodern} % schönere Schrift
\addto\captionsbritish{\renewcommand{\contentsname}{Table of Contents}} %Titel des TOC
\usepackage[backend=biber,citestyle=verbose-ibid,bibstyle=verbose,dashed=false,block=none, alldates=long,pagetracker=true,citetracker=constrict,ibidtracker=constrict]{biblatex}
\nocite{*} %Ausgabe aller Bibliographieeinträge
\bibliography{men}%
\begin{document}
something\footcite{Kvocka}
\newpage
\printbibliography
\end{document}
Or do you mean both?cgnieder wrote:Do you mean the citations or the bibliography entries?
Code: Select all
\DeclareFieldFormat{title}{\mkbibemph{#1},\addspace}
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