I want to be able to remove the auto-generated full stop at the end of each of my bibliography items.
This is what I get when running the code included below:
I would like to not have those full stops at the end of each line.
I have tried using \gobbledot as specified in the accepted answer for this question but I get the error:
! Use of \gobbledot doesn't match its definition.
\blx@theformat #1->#1\isdot
Working example below.
Main file:
\documentclass[a4paper,11pt,oneside]{memoir}
\usepackage[block=par,backend=bibtex]{biblatex}
\usepackage{hyperref}
\addbibresource{bibliography}
\begin{document}
Hi, I am an example ~\cite{jez}
\printbibliography
\end{document}
Bib file:
@misc{ jez,
title = {What is Continous Delivery - Continous Delivery},
howpublished = {\url{www.continuousdelivery.com}},
note = {Retrieved 01/05/2019}
}
These files have been massively abbreviated for clarity. But they result in the image shown above, which shows the same issue.
EDIT:
After implementing @moewe 's answer. My bibliograpy looks like this:


\renewcommand*{\finentrypunct}{}. See also https://tex.stackexchange.com/q/187443/35864 – moewe May 09 '19 at 12:09\gobbledottrick is only a sly workaround for BIbTeX-generated bibliographies, it is quite unlikely to work withbiblatex. Note thatbiblatexknows theurlandurldatefields, so you could say:url = {http://www.continuousdelivery.com}, urldate = {2019-05-01},instead of the usinghowpublished/noteworkaround for old BibTeX styles.example ~\cite{jez}has one space too much, you probably wantexample~\cite{jez}orexample \cite{jez}, but not both. – moewe May 09 '19 at 12:12\renewcommand*{\newunitpunct}{\addspace}? – moewe May 09 '19 at 12:13urlandurldatefields and also\renewcommand*{\newunitpunct}{\addspace}removes the dot from the name and leaves one after the date (which I don't care about). Thank you :) I will set this as solved – Dom May 09 '19 at 12:16