The follwing MWE illustrates how I'm making references appear in footnotes as well as in the reference section at the end of my document, with identical numbering. I found this code in a previous question, and all credit goes to Joseph Wright for writing it initially. However, I'd really like to remove the indentation in the footnotes and reduce the font size to \scriptsize without redefining \footnotesize because I am using it elsewhere. Could somebody help me with this? Thanks in advance!
\documentclass[12pt,twoside]{report}
\usepackage[a4paper,width=165mm,top=25mm,bottom=25mm]{geometry}
\usepackage[style=chem-acs,backend=bibtex,sorting=none,maxnames=99]{biblatex}
\addbibresource{test.bib}
\usepackage{filecontents}
\begin{filecontents}{test.bib}
@article{ref1,
author ={Mulder, J. A. and Kurtz, K. C. M. and Hsung, R. P. and Coverdale, H. and Frederick, M. O. and Shen, L. and Zificsak, C. A.},
journal ={Org. Lett.},
year ={2003},
volume ={5},
pages ={1547}
}
@article{ref2,
author ={Zhang, L. and Wang, W. and Wang, A. and Cui, Y. and Yang, X. and Huang, Y. and Liu, Y. and Liu, W. and Son, J.-Y. and Oji, H. and Zhang, T.},
journal ={Green Chem.},
year ={2013},
volume ={15},
pages ={2680}
}
\end{filecontents}
\makeatletter
\DeclareCiteCommand{\sfcite}[\cbx@superscript]%
{\usebibmacro{cite:init}%
\let\multicitedelim=\supercitedelim
\iffieldundef{prenote}
{}
{\BibliographyWarning{Ignoring prenote argument}}%
\iffieldundef{postnote}
{}
{\BibliographyWarning{Ignoring postnote argument}}}
{\usebibmacro{citeindex}%
\usebibmacro{sfcite}%
\usebibmacro{cite:comp}}
{}
{\usebibmacro{cite:dump}}
\newbibmacro*{sfcite}{%
\ifciteseen
{}
{\xappto\cbx@citehook{%
\noexpand\footnotetext[\thefield{labelnumber}]{%
\fullcite{\thefield{entrykey}}\addperiod}}}}
\newrobustcmd{\cbx@superscript}[1]{%
\mkbibsuperscript{#1}%
\cbx@citehook%
\global\let\cbx@citehook=\empty}
\let\cbx@citehook=\empty
\makeatother
\begin{document}
First reference. \sfcite{ref1} \\
Second reference. \sfcite{ref2} \\
First reference cited twice. \sfcite{ref1}
\printbibliography
\end{document}



footmisc, that I am using for itsbottomfeature, but even removing it doesn't change anything. – Pierre Jun 06 '17 at 06:34footmisc. – egreg Jun 06 '17 at 06:53\usepackage[french]{babel}, I added my packages one by one to your example and this is the one causing trouble. I already had some trouble with[french]{babel}because it modified the bibliography style to small caps automatically, which I solved with\DefineBibliographyExtras{french}{\restorecommand\mkbibnamefamily}. – Pierre Jun 06 '17 at 07:07\StandardFootnotesdoes the trick apparently. Found it here. Thaks again for your help ! – Pierre Jun 06 '17 at 08:18