## 编译环境
操作系统
* [ ] Windows 7/8/10
* [ ] macOS
* [x ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [x ] TexLive ...
## 编译环境
操作系统
* [ ] Windows 7/8/10
* [ ] macOS
* [x ] Linux
`若需勾选,请把[ ]改成[x]`
Tex发行版
* [x ] TexLive `2020`
* [ ] MikTeX `版本号`
* [ ] CTeX
`若需勾选,请把[ ]改成[x]`
## 我的问题
使用BibLaTeX处理bib参考文献库时如何设置让language域不显示在参考文献列表中,示例如下
```LaTeX
\documentclass[12pt]{article}
\usepackage[backend=biber,
url=false,
doi=false,
eprint=true]{biblatex}
\usepackage[ocgcolorlinks]{hyperref}
\hypersetup{
pdfstartview=FitH,
bookmarksopen=false,
pdfencoding=auto,
colorlinks=true,
linkcolor=blue,
pdfinfo={
Title={your title},
Subject={},
Author={Your name},
Keywords={your keywords}%
}
}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@misc{A01,
author = {Author, A.},
year = {2001},
title = {Alpha},
language={en},
}
@misc{B02,
author = {Buthor, B.},
year = {2002},
title = {Bravo},
}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
Some text \autocite{A01,B02}.
\printbibliography
\end{document}
```
一周热门 更多>