I am using shareLaTeX with the XeLaTeX compiler. Still new to the Latex so I cannot resolve the problem...
The only problem is that backref does not work.
\documentclass[10pt,twoside]{mystyle}
\usepackage[utf8]{inputenc}
\usepackage{siunitx}
\usepackage[hidelinks,pagebackref,hyperindex=true]{hyperref}
\usepackage[
backend=bibtex,
style=ieee,
bibencoding=ascii
backref=true
% style=alphabetic
% style=reading
]{biblatex}
\addbibresource{bibliografia.bib}
\begin{document}
Text \cite{alpha}, bla bla bla \cite{bravo}.
\printbibliography[title={Referências Bibliográficas}, notkeyword=carta]
\cleardoublepage
\phantomsection
\addcontentsline{toc}{chapter}{Referências Cartográficas}
\printbibliography[title={Referências Cartográficas}, keyword=carta]
\end{document}
So I get the error:
Package biblatex Error: Imcompatible package 'backref'.
I've tried to use this fix: Formatting back references in bibliography
But for some reason, it does not work for me.
pagebackrefand load packagehyperrefafter packagebiblatex. The document in the question cannot be tested, because of the private class and missing bibliography data. – Heiko Oberdiek Jul 24 '17 at 17:11mystyle.clsdoes weird things and loads other packages that we don't see you might have to do something else. Doesmystyle.clsloadbackref? – moewe Jul 25 '17 at 15:01backref=trueturns on the backref, unless something is terribly wrong. Since we can't test your MWE (we don't have your class,.bibfiles etc.) and you don't show us the output you get, we can only guess. Please give us something more to go on. – moewe Jul 26 '17 at 09:50articlesay. If not you would search through the code of the custom class you used to identify the problematic lines. – moewe Aug 01 '17 at 09:42