参考文献/参考书目中完整引用的 Href

参考文献/参考书目中完整引用的 Href

这是我目前的方法

主文本

\documentclass{article}
\usepackage{url}
\usepackage[hidelinks]{hyperref} %removes border around links
\begin{document}
pixels\cite{ARTICLE:1}
\addcontentsline{toc}{subsection}{References}
\bibliography{document.bib}
\bibliographystyle{ieeetr}
\end{document}

参考书目

@ARTICLE{ARTICLE:1,
AUTHOR = "Junhong, Zhang and Wei Lu and Xiaolin, Yin and Wanteng, Liu and Yuileong, Yeung",
TITLE = "Binary image steganography based on joint distortion measurement",
JOURNAL = "Elsevier",
YEAR = "23 December 2018",
NOTE = "\href{https://www.researchgate.net/publication/329882001_Binary_Image_Steganography_Based_on_Joint_Distortion_Measurement}{Available here}",

}

这给了我这样的输出

引文.jpg

引文

參考文獻.jpg

引用参考文献,并附有链接作为注释

因此,我想要的不是“此处可用”链接,而是包含作者、年份、标题等的完整参考字符串作为链接。类似于 NewReference.jpg

新参考.jpg

带链接的引用参考

更新

我用来编译的命令是

pdflatex main.tex
bibtex bibliography.bib

答案1

尝试下面提到的源。在参考书目图中使用\url而不是。将书目样式更改为而不是。将更改应用于原始源文件并进行编译。尽情享受吧。\hrefieeetran\ieeetr

更新来源main.tex

\documentclass{article}
\usepackage{url}
\usepackage[hidelinks]{hyperref} %removes border around links


\begin{document}
pixels~\cite{ARTICLE:1}
\addcontentsline{toc}{subsection}{References}
\bibliography{bib}
\bibliographystyle{ieeetran}
\end{document}

将书目(.bib)文件更新为:

@ARTICLE{ARTICLE:1,
AUTHOR = "Junhong, Zhang and Wei Lu and Xiaolin, Yin and Wanteng, Liu and Yuileong, Yeung",
TITLE = "Binary image steganography based on joint distortion measurement",
JOURNAL = "Elsevier",
YEAR = "23 December 2018",
NOTE = "\url{https://www.researchgate.net/publication/329882001_Binary_Image_Steganography_Based_on_Joint_Distortion_Measurement}{Available here}"

编辑2:

如果您希望参考文献的格式符合 Springer Style。请将 更改为。bibliographystyle为此,您必须下载名为 的文件并将其保存到工作目录中。 的来源是:ieeetranspbasicspbasic.bstspbasic.bsthttp://www.iro.umontreal.ca/~lecuyer/mcqmc08/proceedings/spbasic.bst。此外,您需要在序言中添加(\usepackage[numbers]{natbib}),如下所示Edit 2。此外,您需要在文件中明确指定卷号、期号和页码.bib,目前这些都缺失。希望这对您有所帮助。

\documentclass{article}
\usepackage{url}
\usepackage[hidelinks]{hyperref} %removes border around links

\usepackage[numbers]{natbib}
\begin{document}
pixels~\cite{ARTICLE:1}
\addcontentsline{toc}{subsection}{References}
\bibliography{bib}
\bibliographystyle{spbasic}
\end{document}

编辑3:所附图片是关于Elsevier格式文章中的参考文献。

对此,其来源main.tex是:

\documentclass{article}
\usepackage{url}
\usepackage[hidelinks]{hyperref} %removes border around links

\usepackage[numbers]{natbib}
\begin{document}
pixels~\cite{ZHANG2019,2013cao}
\addcontentsline{toc}{subsection}{References}
\bibliography{bib}
\bibliographystyle{elsarticle-num}
\end{document}

使用的.bib file如下:

@article{ZHANG2019,
title = "Binary image steganography based on joint distortion measurement",
journal = "Journal of Visual Communication and Image Representation",
volume = "58",
pages = "600 - 605",
year = "2019",
author = "Junhong Zhang and Wei Lu and Xiaolin Yin and Wanteng Liu and Yuileong Yeung",
}


@ARTICLE{2013cao,
author={H. {Cao} and A. C. {Kot}},
journal={IEEE Transactions on Information Forensics and Security},
title={On Establishing Edge Adaptive Grid for Bilevel Image Data Hiding},
year={2013},
volume={8},
number={9},
pages={1508-1518},
month={September},
}

希望这能有所帮助。附上屏幕截图供您参考。

在此处输入图片描述

相关内容