Is there a way to
\footcite{key}
or
\fullfootcite{key}
such that in the text there are no upper index numbers but numbers enclosed in brackets? Correspondingly, the footnote citation should begin with (e.g.)
[1]
and not with an upper index number.
numericcontext? What style are you using? – moewe Mar 21 '16 at 12:18\usepackage[doi=false and other options alike]{biblatex},\bibliography{mybibfile},\renewcommand*{\thefootnote}{\arabic{footnote}}(to override the result of some huge template file which is used by\input). In the document I am using\footfullcite{key}. – rehctawrats Mar 21 '16 at 12:34\inputs (template at my office), it works somehow works but the footnotes' numbers are in parentheses. The in-text citations have correct brackets. – rehctawrats Mar 21 '16 at 14:27\printbibliography, a click on the citation label would take you there. The round brackets is becausebiblatexcan't detect footnotes with beamer as a short work-around add\DeclareFieldFormat{labelnumberwidth}{[#1]}. – moewe Mar 21 '16 at 16:30[ 13]. Footnote brackets look nice. – rehctawrats Mar 22 '16 at 09:57biblatexwill not be able to detect that you are in a footnote, but that is not important for us any more). The code doesn't give me spaces in the citations. Did you copy the exact code from the other question or did you modify anything? – moewe Mar 22 '16 at 10:08\AtEveryCitekey{ \clearfield{month} \clearfield{type} \clearlist{institution} }in the preamble adds a blank both in the inline brackets ([ 13](only one space shown here due to stackexchange limitations)) and between the footnote brackets and the actual citation text (author names, in my case). – rehctawrats Mar 22 '16 at 11:02\AtEveryCitekey{ \clearfield{month} \clearfield{type} \clearlist{institution} }has line breaks in your actual code? If so you need to end the line with%to make sure that no spurious white space is introduced. See here. – moewe Mar 22 '16 at 13:42