I'm writing a paper with the EasyChair document class, and I want to use biblatex obtaining the same bibliography style.
The only thing the document class does to the bibliography is to make the font \small and adjust some lengths. The corresponding code from easychair.cls is the following:
% Tighten up bibliography
\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]
{
\small
\begin{oldthebibliography}{#1}
\setlength{\parskip}{2pt}
\setlength{\itemsep}{0pt}
}
{
\end{oldthebibliography}
}
If I load biblatex these changes are overwritten and I get the default size for the bibliography entries. I know absolutely nothing about how to customize biblatex bibliographies.
Also, for some reasons the titles of the bibliography entries are enclosed in single quotes with biblatex while they are not with bibtex.
How to create an 'easychair' bibliography style for biblatex with the same customizations?
biblatexstyle that will probably not give the same result as one of your old.bstfiles gave, so differences are to be expected. – moewe Jan 14 '17 at 17:29\bibitemsepand\biblabelsepI don't see differences other than the quotes. – Nicola Gigante Jan 14 '17 at 17:32