参考文献/参考文献の完全な引用の href

参考文献/参考文献の完全な引用の href

これが私の現在のアプローチです

メイン.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の代わりにを使用してください。 参考文献スタイルを の代わりに に変更してください。 元のソース ファイルに変更を適用してコンパイルしてください。お楽しみください。\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 スタイルに従ってフォーマットしたい場合は、 を に変更します。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: 添付の画像は、ElsevierFormat 記事の参照に関するものです。

この場合のソースは次のとおり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},
}

これがお役に立てば幸いです。参考までにスクリーンショットを添付します。

ここに画像の説明を入力してください

関連情報