독일어로 된 LaTeX 문서가 있습니다. 내가 영어로 원하는 유일한 것은 참고문헌의 항목입니다. 어떻게 해야 하나요?
다음은 최소한의 작업 예입니다.
내 main.tex
문서:
\documentclass[ngerman]{MastersDoctoralThesis}
\usepackage[backend=bibtex, style=ieee, citestyle=numeric-comp, natbib=true, sorting=none]{biblatex}
\addbibresource{bibfile.bib} %The filename of the bibliography
\begin{document}
\chapter{SomeExampleChapter, with Kapitel, not chapter..}
example of a citation \cite{Reference1}. Here everything is in german, e.g. Abbildung statt figure, Kapitel instead of chapter etc...
\printbibliography[heading=bibintoc]
\end{document}
그리고 내 bibfile.bib
:
@article{Reference1,
Author = {C. J. Hawthorn and K. P. Weber and R. E. Scholten},
Journal = {Rev. Sci. Instrum.},
Number = {12},
Pages = {4477--4479},
Title = {Littrow Configuration Tunable External Cavity Diode Laser with Fixed Direction Output Beam},
Year = {2001}
}
지금까지 참고문헌은 다음과 같습니다. C. J. Hawthorn, K.P. Weber und R.E. Scholten
나는 그것이되기를 원합니다 :C. J. Hawthorn, K.P. Weber and R.E. Scholten
그만큼그리고로 변경해야합니다그리고. 그 외에는 아무것도 변경해서는 안됩니다.
비슷한 질문이 제기되었다는 것을 알고 있지만 거기에 있는 모든 답변을 찾기 위해 고군분투했습니다.
답변1
클래스 가 없기 때문에 MastersDoctoralThesis
클래스를 로 대체했는데 report
이 코드는 나에게 잘 작동합니다.
\documentclass[english, ngerman]{report}
\usepackage{babel}
\usepackage[backend=bibtex, style=ieee, citestyle=numeric-comp, natbib=true, sorting=none, autolang=other]{biblatex}
\usepackage[autostyle]{csquotes}
\addbibresource{bibfile.bib} %The filename of the bibliography
\begin{document}
\chapter{SomeExampleChapter, with Kapitel, not chapter..}
example of a citation \cite{Reference1}. Here everything is in german, e.g. Abbildung statt figure, Kapitel instead of chapter etc...
\nocite{*}
\printbibliography[heading=bibintoc]
\end{document}