在参考书目中是否可以有:英文参考文献中的英文引文和法文参考文献中的法文引文?
感谢您的帮助!
乔博内
答案1
biblatex
以下是使用 和的解决方案csquotes
:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{filecontents}
\usepackage[english, french]{babel}
\usepackage[autostyle, english=british, french=guillemets]{csquotes}
\usepackage[style=authoryear-comp, babel =other]{biblatex}
\renewcommand\mkbibnamelast[1]{\textsc{#1}}
\begin{filecontents}{\jobname.bib}
@article{myarticle,
AUTHOR = "John Doe",
TITLE = "My article",
JOURNALTITLE = "A Cool Journal",
VOLUME = "16",
YEAR = "2005",
LANGID ="english"}
@article{myfrenchart,
AUTHOR = "Jean Martin",
TITLE = "Mon Article à la noix",
JOURNALTITLE = "Un Journal à la coule",
VOLUME = "12",
YEAR = "2008",
LANGID ="french"}
\end{filecontents}
\addbibresource{\jobname.bib}
\begin{document}
\nocite{*}
\printbibliography
\end{document}