विभिन्न फोंट में प्रदर्शित ग्रंथ सूची के लिंक
मैं वर्तमान में अपनी ग्रंथ सूची बनाने के लिए IEEE उद्धरण शैली का उपयोग कर रहा हूं। हालाँकि, लिंक और डीओआई को अलग-अलग रूप से उद्धरण के शरीर से अलग किया जाता है। मैं उन्हें एक ही फ़ॉन्ट और आकार के अनुरूप कैसे प्राप्त करूं?
इसे बनाने के लिए कोड का एक नमूना इस प्रकार है:
\usepackage[style=ieee]{biblatex}
\addbibresource{`my references`}
\printbibliography
.Bib कोड:
@article{Abkenari2015,
author = {Abkenari, Mehrdad and Rezaei, Alireza and Pournayeb, Naghmeh},
doi = {10.5281/zenodo.1339604},
journal = {International Journal of Architectural, Civil and Construction Sciences},
pages = {1138--1142},
title = {{Recycling Construction Waste Materials to Reduce the Environmental Pollutants}},
year = {2015}
}
@misc{DenseNet,
title={Densely Connected Convolutional Networks},
author={Gao Huang and Zhuang Liu and Laurens van der Maaten and Kilian Q. Weinberger},
year={2016},
eprint={1608.06993},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
जवाब
3 moewe
biblatex
url
URL और URL जैसी वस्तुओं को टाइप करने के लिए पैकेज की सुविधाओं का उपयोग करता है (DOIs, eprint
s, ...)।
डिफ़ॉल्ट url
प्रकार से URL में \ttfamily
, लेकिन आप सामान्य दस्तावेज़ फ़ॉन्ट के साथ अनुरोध कर सकते हैं
\urlstyle{same}
पैकेज मैनुअल\urlstyle
में अन्य संभावित कॉल मिल सकते हैं ।url
\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage{csquotes}
\usepackage[style=ieee]{biblatex}
\urlstyle{same}
\addbibresource{biblatex-examples.bib}
\begin{document}
\cite{sigfridsson,baez/online,ctan,markey}
\printbibliography
\end{document}
यदि आप hyperref
या xurl
पैकेज को लोड करते हैं तो यह भी काम करता है ।