I am using the command \renewbibmacro*{finentry}{} to suppress the
dot at the very end of biblatex references, which seems to work. I am
now trying to come up with a \fullcitebib command to print references within
the main text, formatted the same as in the references. I have the following code
\documentclass{article}
\usepackage[backend=biber,style=authoryear]{biblatex}
\begin{filecontents}{\jobname.bib}
@Book{crys2010,
author = {David Crystal},
title = {An Encyclopedic Dictionary of Language and Languages},
publisher = {Blackwell},
year = {2010},
edition = {3},
address = {Oxford},
}
@InCollection{herm2006,
author = {Rachel Hermetet},
title = {\emph{The Criterion} et les litt\'{e}ratures
europ\'{e}ennes, 1922--1935},
booktitle = {Revues Modernistes anglo-am\'ericaines: lieux
d'\'{e}changes, lieux d'exil},
publisher = {Ent'revues},
year = {2006},
editor = {Beno\^{i}t Tadi\'{e}},
pages = {189-200},
address = {Paris},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\renewbibmacro*{finentry}{}
\DeclareCiteCommand{\fullcitebib}
{\list{}
{\setlength{\leftmargin}{\bibhang}%
\setlength{\itemindent}{-\leftmargin}%
\setlength{\itemsep}{\bibitemsep}%
\setlength{\parsep}{\bibparsep}}\item}
{\usedriver
{}
{\thefield{entrytype}}\finentry
}
{\item}
{\endlist
}
\begin{document}
\fullcitebib{crys2010,herm2006}
\printbibliography
\end{document}
which produces this
How can I get rid of the dot at the end of references created with my new command?
