How change from:
Einstein [2] fez um bom trabalho. As pessoas precisam de ajuda [2].
to:
Einstein (2) fez um bom trabalho. As pessoas precisam de ajuda [2].
My code:
\documentclass{book}
\usepackage[style=numeric]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{ref.bib}
@article{einstein,
author = {Albert Einstein},
title = {the true about tree},
journaltitle = {Annalen der Physik},
year = {1905},
volume = {322},
number = {10},
pages = {891-921}
}
@article{einstein2,
author = {Albert Einstein},
title = {the lie about tree},
journaltitle = {Annalen der Physik},
year = {1906},
volume = {322},
number = {10},
pages = {891-921}
}
\end{filecontents}
\addbibresource{ref.bib}
\renewcommand*{\mkbibnamefamily}[1]{#1}%
\begin{document}
\chapter{Capitulinho}
\section{Section}
\textcite{einstein} fez um bom trabalho.
As pessoas precisam de ajuda \cite{einstein}.
\textcite{einstein2} fez um bom trabalho.
As pessoas precisam de ajuda \cite{einstein2}.
\printbibliography
\end{document}
And if I use \usepackage[style=numeric]{biblatex}, how change from:
Einstein (2) fez um bom trabalho. As pessoas precisam de ajuda (2).
to:
Einstein (2) fez um bom trabalho. As pessoas precisam de ajuda [2].
