For a scientific paper using the BibLaTeX package, I am requested to format the citation numbers as following:
- When citing references, use superscript numbers and half-width closing parentheses ")" in the right corner of the text to indicate: "this method was investigated1) in the past";
- When printing references in bibliography, use numbers and half-width parentheses: "(1) Author, etc."
Given an arbitrary style, how can I achieve this?
Here is a MWE:
\documentclass{article}
\usepackage[style=numeric, sorting=none]{biblatex}
\addbibresource{\jobname.bib}
\begin{filecontents}{\jobname.bib}
@book{key,
author = {Author, A.},
year = {2001},
title = {Title},
publisher = {Publisher},
}
\end{filecontents}
\begin{document}
This method was investigated\cite{key} in the past.
\printbibliography
\end{document}
