我在参考文献列表中遇到了一个问题。也就是说,我有一些参考文献,其中作者姓氏的第一个字母是 Š ( \v{S}
),当在参考文献中列出它们时,它们出现在姓氏以 开头的作者中间,V
而不是姓氏以 开头的作者S
和以 开头的作者之后T
(应该列出R
, S
, Š
, T
... 而不是R, S, T, U, V
在Š
中间列出)
这是我的最小工作示例:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents}{AA.bib}
@article{simovic13, Author = {\v{S}imovi\'{c}, H. and Deskar-\v{S}krbi\'{c}, M.}, Journal = {Zbornik radova Ekonomskog fakulteta u Rijeci}, Number = {1}, Pages = {55--78}, Title = {Dynamic effects of fiscal policy and fiscal multipliers in {Croatia}}, Volume = {31}, Year = {2013}}
@misc{tenhofen07, Author = {Tenhofen, J. and Wolff, G. B.}, Note = {Deutsche Bundesbank Discussion Paper Series 1: Economic Studies No. 14. Frankfurt am Main: Deutsche Bundesbank}, Title = {Does anticipation of government spending matter? Evidence from an expectation augmented {VAR}}, Year = {2007}}
@misc{spilimbergo09, Author = {Spilimbergo, A. and Symansky, S. and Schindler, M.}, Note = {IMF Staff Position Note No. 11. Washington: International Monetary Fund}, Title = {Fiscal multipliers}, Year = {2009}}
@misc{ver11, Author = {Verhelst, S.}, Note = {Egmont Paper, No. 47, Brussels: Egmont Institute}, Title = {The Reform of European Economic Governance: Towards a Sustainable Monetary Union?}, Year = {2011}}
@article{vuckovic10, Author = {Vu\v{c}kovi\'{c}, V.}, Journal = {Privredna kretanja i ekonomska politika}, Number = {125}, Pages = {61--88}, Title = {Political Business Cycles: Do They Exist in {Croatia?}}, Volume = {20}, Year = {2010}}
\end{filecontents}
\begin{document}
\nocite{*}
\bibliographystyle{plain} % works
% \bibliographystyle{alpha} % works ...
% \bibliographystyle{apalike} % works
\bibliography{AA}
\end{document}
我感谢任何帮助!!!
安娜
答案1
在文件中输入重音字母的正确方法.bib
是使用一对外括号:
{\v{S}}imovi{\'{c}}
而不是
\v{S]imovi\'{c}
这样,BibTeX 就会知道排序的相关字符是S
而不是v
。
\begin{filecontents*}{\jobname.bib}
@article{simovic13,
Author = {{\v{S}}imovi{\'{c}}, H. and Deskar-{\v{S}}krbi{\'{c}}, M.},
Journal = {Zbornik radova Ekonomskog fakulteta u Rijeci},
Number = {1},
Pages = {55--78},
Title = {Dynamic effects of fiscal policy and fiscal multipliers in {Croatia}},
Volume = {31},
Year = {2013},
}
@misc{tenhofen07,
Author = {Tenhofen, J. and Wolff, G. B.},
Note = {Deutsche Bundesbank Discussion Paper Series 1: Economic Studies
No. 14. Frankfurt am Main: Deutsche Bundesbank},
Title = {Does anticipation of government spending matter? Evidence from
an expectation augmented {VAR}},
Year = {2007},
}
@misc{spilimbergo09,
Author = {Spilimbergo, A. and Symansky, S. and Schindler, M.},
Note = {IMF Staff Position Note No. 11. Washington: International Monetary Fund},
Title = {Fiscal multipliers},
Year = {2009},
}
@misc{ver11,
Author = {Verhelst, S.},
Note = {Egmont Paper, No. 47, Brussels: Egmont Institute},
Title = {The Reform of European Economic Governance:
Towards a Sustainable Monetary Union?},
Year = {2011},
}
@article{vuckovic10,
Author = {Vu{\v{c}}kovi{\'{c}}, V.},
Journal = {Privredna kretanja i ekonomska politika},
Number = {125},
Pages = {61--88},
Title = {Political Business Cycles: Do They Exist in {Croatia}?},
Volume = {20},
Year = {2010},
}
\end{filecontents*}
\documentclass{article}
\begin{document}
\nocite{*}
\bibliographystyle{plain} % works
% \bibliographystyle{alpha} % works ...
% \bibliographystyle{apalike} % works
\bibliography{\jobname}
\end{document}
请参阅“Tame the BeaST”(texdoc tamethebeast
在您的系统上,或在线的)第 10 节末尾,这也适用于该author
领域。
对于排序问题,BibTeX 只识别 ASCII,因此它需要不同排序顺序的帮助。诀窍\NOOPSORT
在于使用的内容:
\begin{filecontents*}{\jobname.bib}
@preamble{"\providecommand{\NOOPSORT}[1]{}"}
@article{simovic13,
Author = {{\NOOPSORT{Szzimoviczz}}\v{S}imovi\'{c}, H. and Deskar-\v{S}krbi\'{c}, M.},
Journal = {Zbornik radova Ekonomskog fakulteta u Rijeci},
Number = {1},
Pages = {55--78},
Title = {Dynamic effects of fiscal policy and fiscal multipliers in {Croatia}},
Volume = {31},
Year = {2013},
}
@misc{tenhofen07,
Author = {Tenhofen, J. and Wolff, G. B.},
Note = {Deutsche Bundesbank Discussion Paper Series 1: Economic Studies
No. 14. Frankfurt am Main: Deutsche Bundesbank},
Title = {Does anticipation of government spending matter? Evidence from
an expectation augmented {VAR}},
Year = {2007},
}
@misc{spilimbergo09,
Author = {Spilimbergo, A. and Symansky, S. and Schindler, M.},
Note = {IMF Staff Position Note No. 11. Washington: International Monetary Fund},
Title = {Fiscal multipliers},
Year = {2009},
}
@misc{ver11,
Author = {Verhelst, S.},
Note = {Egmont Paper, No. 47, Brussels: Egmont Institute},
Title = {The Reform of European Economic Governance:
Towards a Sustainable Monetary Union?},
Year = {2011},
}
@article{vuckovic10,
Author = {{\NOOPSORT{Vuczzkovic}}Vu\v{c}kovi\'{c}, V.},
Journal = {Privredna kretanja i ekonomska politika},
Number = {125},
Pages = {61--88},
Title = {Political Business Cycles: Do They Exist in {Croatia}?},
Volume = {20},
Year = {2010},
}
\end{filecontents*}
\documentclass{article}
\begin{document}
xxx
\nocite{*}
\bibliographystyle{plain} % works
% \bibliographystyle{alpha} % works ...
% \bibliographystyle{apalike} % works
\bibliography{\jobname}
\end{document}
写下{\NOOPSORT{Szzimoviczz}}
您确定该条目将按照“Szzimoviczz”排序,因此它不会与以“S”开头的条目混合。