Wie füge ich die Seiten und ihren Hyperref für jede Referenz hinzu?

Wie füge ich die Seiten und ihren Hyperref für jede Referenz hinzu?

Ich möchte die Seite(n) und ihre Hyperreferenz zu jeder Referenz hinzufügen. Ich verwende bereits diesen Code, aber er funktioniert nicht:

\usepackage[pagebackref]{hyperref}

Mein Hauptcode ist:

\documentclass[11pt]{book}

% Omitting Page Numbers
\pagenumbering{gobble} 

% Packages
\usepackage[a4paper,left=2.5cm,right=2.5cm,top=4cm,bottom=4.9cm]{geometry}
\renewcommand{\baselinestretch}{1.15}
\usepackage{indentfirst}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{fontspec}
%\usepackage{natbib}
\usepackage{cite}
%\setcitestyle{square}
\usepackage{afterpage}  % blank pages
\usepackage{multirow}  % table
\usepackage[table, dvipsnames]{xcolor}  % table
\usepackage{xpatch}  % table
\usepackage{tabu}  % table
\usepackage{hhline}  % cell color does not overlap cell line
\usepackage{fancyhdr}  % headers
\usepackage{breakcites}  % references do not go though margins
\usepackage{sectsty}  % change chapter title size
\setcounter{tocdepth}{3}  % four level contents
\setcounter{secnumdepth}{3}  % numbered four level contents
\usepackage{amsfonts}  % math
\usepackage{amsmath}  % math
\usepackage[nottoc,notlof,notlot]{tocbibind}
\usepackage[pagebackref]{hyperref}  % references


% novas coisas que adicionei
\usepackage{enumitem}
\usepackage{acronym} % acrónimos
% \usepackage{xltabular}
%\usepackage[table,xcdraw]{xcolor}
%\usepackage{longtable}
%\usepackage[acronym]{glossaries}
%\makeglossaries
%\usepackage[toc, acronym]{glossaries}
%\usepackage{nomencl}
%\usepackage[acronym]{glossaries}
%\addto\captionsportuguese{%
%\def\acronymname{Sigasl, Acrónimos e Abreviaturas}
%}
% coisas novas terminam aqui

%\newcommand{\rectangle}{{  % rectangle
%  \ooalign{$\sqsubset\mkern3mu$\cr$\mkern3mu\sqsupse%t$\cr}
%}}

%\newcommand\BibTeX{B{\sc ib}\TeX}

% References
\hypersetup{
   colorlinks=true,
   linkcolor=MidnightBlue,
   filecolor=MidnightBlue,
   citecolor=BrickRed,
   urlcolor=MidnightBlue,
   bookmarksopen=true,
   linktocpage=true,
   pdfpagemode=UseOutlines,
   pdfstartpage=1
}

% Blank Page
\newcommand\blankpage{
    \null
    \thispagestyle{empty}
    \addtocounter{page}{-1}
    \newpage}

% Hide Blank Pages Numbers + Headers
\let\origdoublepage\cleardoublepage
\newcommand{\clearemptydoublepage}{%
  \clearpage
  {\pagestyle{empty}\origdoublepage}%
}

% Space between numbers and text
\geometry{footskip=2.45cm}

\begin{document}

\begingroup

\newgeometry{left=3cm, right=3cm, top=1cm, bottom=1.2cm}
\renewcommand{\baselinestretch}{1.9}

%\include{parts/capa_provisoria}
\include{parts/capa_provisoria}

\afterpage{\blankpage}

\endgroup

% Preamble for Thesis
\setmainfont{Times New Roman}
\newgeometry{left=2.5cm,right=2.5cm,top=2.5cm,bottom=4.9cm}
\renewcommand{\baselinestretch}{1.15}
\pagenumbering{Roman}
\pagestyle{plain}
\let\cleardoublepage\clearemptydoublepage  % hide blank pages numbers + headers

\include{parts/acknowledgements}

%\include{parts/resumo}

\include{parts/abstract}

\include{parts/resumo_alargado}

\include{parts/contents}

\include{parts/list_of_figures}

\include{parts/list_of_tables}

\include{parts/list_of_abbreviations}

\afterpage{\blankpage}

% After Introductory Pages
\pagenumbering{arabic}
\pagestyle{fancy}
\newgeometry{left=2.5cm,right=2.5cm,top=4cm,bottom=4.9cm,headsep=1cm}
\setlength{\headheight}{14pt} 

\chaptertitlefont{\Huge} % to fit chapter title to one line
\chapternumberfont{\Huge} 

\include{parts/introduction}

\include{parts/theoretical_framework}

\include{parts/literature_review}

\include{parts/data_and_methods}

\include{parts/results}

\include{parts/discussion}

\include{parts/conclusion}

%\include{parts/appendix}

%\include{parts/a_silver_standard_corpus_of_phenotype_gene_relations}

%\include{parts/extracting_phenotype-gene_relations}

%\include{parts/conclusion}

\pagestyle{plain}  % no more header 

\include{parts/references}

\end{document}

Dann habe ich in meinem Referenztext:

\newpage
\renewcommand\bibname{References}
\bibliography{references}
\bibliographystyle{IEEEtran}

Und schließlich habe ich in meiner Datei „references.bib“:

@article{ref1,
author = {Sadoughi, Farahnaz and Khodaveisi, Taleb},
year = {2018},
month = {11},
title = {The used theories for the adoption of electronic health record: a systematic literature review},
journal = {Health and Technology},
doi = {10.1007/s12553-018-0277-8}
}

@article{ref2,
author = {Weiskopf, Nicole and Weng, Chunhua},
year = {2012},
month = {06},
title = {Methods and dimensions of electronic health record data quality assessment: Enabling reuse for clinical research},
volume = {20},
journal = {Journal of the American Medical Informatics Association : JAMIA},
doi = {10.1136/amiajnl-2011-000681}
}

Und ich nenne jedes Zitat beispielsweise mit „\cite{ref1}“.

Ich möchte, dass es so aussieht, aber es erscheint beispielsweise nicht die Nummer eins. Ich dachte, ich brauche nur dieses " \usepackage[pagebackref]{hyperref} ", aber anscheinend reicht das nicht. Kann mir bitte jemand helfen?

Bildbeschreibung hier eingeben

verwandte Informationen