참고문헌/참고문헌의 전체 인용에 있는 Href

참고문헌/참고문헌의 전체 인용에 있는 Href

이것이 나의 현재 접근 방식입니다

main.tex

\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}

참고문헌.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 = "\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대신 사용하세요 . 대신 참고 \href문헌 스타일을 로 변경합니다 . 원본 소스 파일에 변경 사항을 적용하고 컴파일합니다. 즐기다.ieeetran\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 스타일에 따라 참조 형식을 지정하려는 경우. 을 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},
}

도움이 되었기를 바랍니다. 참고하실 수 있도록 스크린샷을 첨부합니다.

여기에 이미지 설명을 입력하세요

관련 정보