修正参考文献的格式

修正参考文献的格式

我需要我的参考资料看起来更专业。目前,我的参考资料如下所示;我的引用

我希望它们看起来更像这样,没有蓝色; HH_引用

这意味着删除括号并使它们看起来更紧凑。我使用以下样式\usepackage[backend=bibtex,natbib=true,style=chem-acs]{biblatex}。这是我的序言;

\documentclass[12pt,danish,a4paper,twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{stackengine}
\usepackage{indentfirst}
\usepackage[version=3]{mhchem}
\usepackage{threeparttable}
\usepackage{subcaption}
\usepackage{caption}
\usepackage[journal=rsc]{chemstyle}
\usepackage[section]{placeins}
\usepackage{blindtext}
\usepackage[backend=bibtex,natbib=true,style=chem-acs]{biblatex}
\bibliography{ref} 
\usepackage[margin=1in]{geometry}
\usepackage{adjustbox}
\usepackage{rotating}
\usepackage{pbox}
\usepackage{booktabs}
\usepackage[toc,page]{appendix}
\usepackage{gensymb}
\usepackage{amsmath}
\usepackage{graphicx}
\parskip=0.1in
\begin{document}
Bla bla bla\supercite{Step_1} bla bla bla\supercite{Step_2}.
\printbibliography
\end{document}

这是我的参考文件;

    @article{Step_1,
author = {Yamamoto, Kosuke and Bruun, Theodora and Kim, Jung Yun and Zhang, Lei and Lautens, Mark},
title = {A New Multicomponent Multicatalyst Reaction (MC)2R: Chemoselective Cycloaddition and Latent Catalyst Activation for the Synthesis of Fully Substituted 1,2,3-Triazoles},
journal = {Org. Lett.},
volume = {\textsl{18}},
number = {11},
pages = {2644-2647},
year = {2016},
doi = {10.1021/acs.orglett.6b00975},
URL = { 
        http://dx.doi.org/10.1021/acs.orglett.6b00975

},
eprint = { 
        http://dx.doi.org/10.1021/acs.orglett.6b00975

}

}
%%
%%
@article{Step_2,
  doi = {10.1055/s-1995-3905},
  url = {http://dx.doi.org/10.1055/s-1995-3905},
  year  = {1995},
  month = {mar},
  publisher = {Thieme Publishing Group},
  volume = {\textsl{1995}},
  number = {03},
  pages = {290},
  author = {Alicia Torrado and Susana L{\'{o}}pez and Rosana Alvarez and Angel R. de Lera},
  title = {General Synthesis of Retinoids and Arotinoids via Palladium-Catalyzed Cross-Coupling of Boronic Acids with Electrophiles},
  journal = {Synthesis}
}

答案1

biblabel您可以通过将选项更改为 来修改数字dot。如果您希望参考文献看起来更“紧凑”,则必须通过设置\bibfont为 来调整字体大小\small

\documentclass[12pt,danish,a4paper,twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{stackengine}
\usepackage{indentfirst}
\usepackage[version=3]{mhchem}
\usepackage{threeparttable}
\usepackage{subcaption}
\usepackage{caption}
\usepackage[journal=rsc]{chemstyle}
\usepackage[section]{placeins}
\usepackage{blindtext}

\usepackage[backend=biber,natbib=true,style=chem-acs,biblabel=dot]{biblatex} % <-- Here
\renewcommand*{\bibfont}{\small} % <-- Set font size to small

\addbibresource{ref.bib}
\usepackage[margin=1in]{geometry}
\usepackage{adjustbox}
\usepackage{rotating}
\usepackage{pbox}
\usepackage{booktabs}
\usepackage[toc,page]{appendix}
\usepackage{gensymb}
\usepackage{amsmath}
\usepackage{graphicx}
\parskip=0.1in
\begin{document}
Bla bla bla\supercite{Step_1} bla bla bla\supercite{Step_2}.
\printbibliography
\end{document}

在此处输入图片描述

或者更小:

\renewcommand*{\bibfont}{\footnotesize}

在此处输入图片描述

相关内容