我遇到了一个简单的问题,对于这个问题的简单性我深表歉意,但是我的谷歌技能似乎不够,我无法快速找到答案。我正在使用 MiKTeX 2.9,并且有一个成功的参考书目而没有问题,并使用以下方法进行引用:
\cite{test}
然而我的引用如下:
我希望在文中引用大胆的。此外,在文档末尾的印刷书目中,完整的作者名单简述如下:
我希望显示完整的作者列表,并尽可能反转 et al。任何帮助都将不胜感激,对于问题的简单性我深表歉意。
编辑:这是我的示例 tex 和 bib 文件/关闭表示:
%Loading in the packages
\documentclass[12pt]{report}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm ,bindingoffset=6mm]{geometry}
\usepackage[backend=bibtex, style=alphabetic]{biblatex}
\addbibresource{citations.bib}
\begin{document}
\tableofcontents
\chapter{superintro}
\input{chapters/superintro}
\printbibliography
\end{document}
书目 .bib
@report{RFC3550,
author = {H. Schulzrinne and S. Casgner and R. Frederick and V. Jacobson},
title = {RFC 3550, RTP: A Transport Protocol for Real-Time Applications},
url = {https://tools.ietf.org/html/rfc3550},
year = {2003},
}
@report{RFC2326,
author = {H. Schulzrinne and A. Rao and R. Lanphier},
title = {RFC 2326, Real Time Streaming Protocol},
url = {https://rools.ietf.org/html/rfc2326},
year = {1998},
}
在 superintro .tex 文件中,我只是做了一些事情,例如 cite{rfc2326}
答案1
您可以使用以下方式轻松使标签加粗
\DeclareFieldFormat{labelalpha}{\mkbibbold{#1}}
\DeclareFieldFormat{extraalpha}{\mkbibbold{\mknumalph{#1}}}
如果你想取消粗体显示参考书目,你需要
\AtBeginBibliography{
\DeclareFieldFormat{labelalpha}{#1}
\DeclareFieldFormat{extraalpha}{\mknumalph{#1}}}
平均能量损失
\documentclass{article}
\usepackage[style=alphabetic]{biblatex}
\addbibresource{biblatex-examples.bib}
\DeclareFieldFormat{labelalpha}{\mkbibbold{#1}}
\DeclareFieldFormat{extraalpha}{\mkbibbold{\mknumalph{#1}}}
\AtBeginBibliography{
\DeclareFieldFormat{labelalpha}{#1}
\DeclareFieldFormat{extraalpha}{\mknumalph{#1}}}
\begin{document}
Lorem \cite[43]{geer} ipsum.
\printbibliography
\end{document}