我有其中的乳胶文档和参考书目。
main.tex 在前言中有以下命令:
\usepackage[backend=bibtex,style=numeric,natbib=true]{biblatex}
\addbibresource{example.bib}
example.bib
包含以下内容:
@article{tmp,
Author = {John Smith},
Journal = {TmpJournal},
Title = {TmpTitle},
Year = {2014}}
在 pdf 文档中它看起来像这样:
关键是我不想要这个部分:“In”(来自“...In: TmpJournal(2014)”)
我希望能够将“In”更改为不同的词
我怎么做?
答案1
以下是使用该包的完整代码示例babel
:
\documentclass{scrartcl}
\begin{filecontents}{example.bib}
@article{tmp,
Author = {John Smith},
Journal = {TmpJournal},
Title = {TmpTitle},
Year = {2014}}
\end{filecontents}
\usepackage[backend=biber,style=numeric,natbib=true]{biblatex}
\addbibresource{example.bib}
\usepackage[polish]{babel}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
如果您不想将其用作polish
主要文档语言,您可以使用其他语言,例如\usepackage[polish,main=english]{babel}
。
另一种方法是重新定义,bibmacro
但In:
目前这似乎有点过分。