我用这个包
\usepackage[colorlinks = true, linkcolor = blue,
urlcolor = blue,
citecolor = blue,
anchorcolor = blue]{hyperref}
单击我的引用以转到论文末尾的参考文献,但是当我单击论文末尾的参考文献时,如何返回到我的 \cite(页面和段落)?我的代码是:
\documentclass[12pt]{article}
\usepackage[colorlinks = true,
linkcolor = blue,
urlcolor = blue,
citecolor = blue,
anchorcolor = blue]{hyperref}
\begin{document}
\section{Introduction}
The integration of renewable-based DG's into sub-transmission and distribution systems has become one of the most interesting topics trends out nowadays. The tendency to rely on alternative sources of energy for their economic and environmental benefits and set aside traditional sources has led to a major development in distributed generation technology. Although the integration of DG in the electric network improve the network reliability and voltage profile and minimize the energy losses. The incompetent to properly integrate DG's into the network may affect the performance of the network and jeopardize its reliability. The impact of DG on the electric network May be attributed to the change in the short circuit level and altering the power flow in the network \cite{Meng}-\cite{Choudhary}. Therefore, the protection system may not be functioning as expected and intimidate the stability and reliability of the network \cite{Malmedal}.
\newpage
\begin{thebibliography}{3}
\bibitem{Meng}
Meng Yen Shih, Arturo Conde Enríquez, Zbigniew M. Leonowicz, \emph{"Mitigating the Impact of Distributed Generation on Directional Overcurrent Relay Coordination by Adaptive Protection Scheme,"}.\hskip 1em plus
0.5em minus 0.4em\relax 2016 IEEE 16th International Conference on Environment and Electrical Engineering (EEEIC), 7-10 June 2016, Florence, Italy.
\bibitem{Choudhary}
Choudhary NK, Mohanty SR, Singh RK, \emph{"Coordination of Over current Relay in Distributed System for Different Network Configuration"}.\hskip 1em plus
0.5em minus 0.4em\relax Journal of Power and Energy Engineering. 2015; 3:1–9.
\bibitem{Malmedal}
Malmedal, K., Kroposki, B., \& Sen, P. K., \emph{"Distributed Energy Resources and Renewable Energy in Distribution Systems: Protection Considerations and Penetration Levels"}.\hskip 1em plus
0.5em minus 0.4em\relax In Industry Applications Society Annual Meeting, 2008. IAS'08. IEEE (pp. 1-8).
\end{thebibliography}
\end{document}
答案1
GoBack
您可以尝试使用LaTeX 能否记住用户点击参考文献时跳转的页面据我了解,这不是 PDF 标准的一部分,因此不能保证适用于每个 PDF 查看器。
\documentclass[12pt]{article}
\usepackage[colorlinks = true,
linkcolor = blue,
urlcolor = blue,
citecolor = blue,
anchorcolor = blue]{hyperref}
\makeatletter
\renewcommand*{\@biblabel}[1]{[\Acrobatmenu{GoBack}{#1}]}
\makeatother
\begin{document}
\section{Introduction}
The integration of renewable-based DG's into sub-transmission and distribution systems has become one of the most interesting topics trends out nowadays.
The tendency to rely on alternative sources of energy for their economic and environmental benefits and set aside traditional sources has led to a major development in distributed generation technology.
Although the integration of DG in the electric network improve the network reliability and voltage profile and minimize the energy losses.
The incompetent to properly integrate DG's into the network may affect the performance of the network and jeopardize its reliability.
The impact of DG on the electric network May be attributed to the change in the short circuit level and altering the power flow in the network \cite{Meng}-\cite{Choudhary}.
Therefore, the protection system may not be functioning as expected and intimidate the stability and reliability of the network \cite{Malmedal}.
\newpage
\begin{thebibliography}{3}
\bibitem{Meng}
Meng Yen Shih, Arturo Conde Enríquez, Zbigniew M. Leonowicz, \emph{"Mitigating the Impact of Distributed Generation on Directional Overcurrent Relay Coordination by Adaptive Protection Scheme,"}.\hskip 1em plus
0.5em minus 0.4em\relax 2016 IEEE 16th International Conference on Environment and Electrical Engineering (EEEIC), 7-10 June 2016, Florence, Italy.
\bibitem{Choudhary}
Choudhary NK, Mohanty SR, Singh RK, \emph{"Coordination of Over current Relay in Distributed System for Different Network Configuration"}.\hskip 1em plus
0.5em minus 0.4em\relax Journal of Power and Energy Engineering. 2015; 3:1–9.
\bibitem{Malmedal}
Malmedal, K., Kroposki, B., \& Sen, P. K., \emph{"Distributed Energy Resources and Renewable Energy in Distribution Systems: Protection Considerations and Penetration Levels"}.\hskip 1em plus
0.5em minus 0.4em\relax In Industry Applications Society Annual Meeting, 2008. IAS'08. IEEE (pp. 1-8).
\end{thebibliography}
\end{document}
或者,您可能还想研究一下该backref
选项hyperref
。