我的问题在于,当作者是一个机构时,就我而言,其名称不应包含任何“第一”部分。(如 First / von / Last)
当我尝试
author = {Ministère de l'Éducation nationale et de la Jeunesse},
在我的.bib
条目中,我得到了一个丑陋的
国家教育和青年部
(大写字母“J”比其他大写字母稍大一些)在我的文献的参考书目中,更糟糕的是,这个条目的键被自动设置为dlnedlJ19
。
我希望整个机构名称都用大写字母书写(即被视为整体的最后一部分),例如,第一个大写字母“M”作为输入键的一部分。
我该怎么做?我尝试了几乎所有处理该名称的单词顺序和使用逗号的方法,试图禁用 BibTeX 的第一部分。
针对此问题的 MWEB 可能是
\documentclass{article}
\begin{filecontents}{\prce.bib}
@misc{BO-programme-seconde,
author = {Ministère de l'Éducation nationale et de la Jeunesse},
title = {{Programme de SNT}},
month = jan,
year = {2019},
howpublished = {https://cache.media.education.gouv.fr/file/SP1-MEN-22-1-2019/08/5/spe641_annexe_1063085.pdf}
}
\end{filecontents}
\begin{document}
\cite{BO-programme-seconde}
\bibliographystyle{alpha}
\bibliography{\prce}
\end{document}
答案1
尝试使用author = {{Ministère de l'Éducation nationale et de la Jeunesse}},
,即“嵌套花括号“ ( {{text}}
)”,又名“双花括号“。