
敬啟者:
我正在嘗試使用 .lbx 檔案作為參考文獻的自己的語言支援。該檔案已位於 C:\texlive\2019\texmf-dist\tex\latex\biblatex\lbx 中,並命名為「basque.lbx」。目前,babel 套件支援巴斯克語言。
我創建了以下 MWE:
\documentclass[12pt]{article}
\usepackage[basque]{babel}
\usepackage[sorting=none, style=numeric-comp]{biblatex}{biblatex}
\addbibresource{bibliografia.bib}
\begin{document}
\cite{1868VonHelmholtz,1871Thomson,1883Reynolds,1894Reynolds,1922Richardson,1931Tollmien}
{
\let \clearpage \relax
\printbibheading
\printbibliography[heading=subbibliography, type=book, title={Liburu zein monografiak}]
\printbibliography[heading=subbibliography, type=article, title={Aldizkari artikuluak}]
\printbibliography[heading=subbibliography, type=report, title={Txosten teknikoak}]
}
\end{document}
“bibliografia.bib”文件是:
@article{1868VonHelmholtz,
author = {von Helmholtz, H.},
journal = {Philosophical Magazine},
number = {244},
pages = {337--346},
title = {{On Discontinuous Movements of Fluids}},
volume = {36},
year = {1868}
}
@article{1871Thomson,
author = {Thomson, William},
journal = {Philosophical Magazine},
pages = {362--377},
title = {{Hydrokinetic Solutions and Observations}},
volume = {42},
year = {1871}
}
@article{1883Reynolds,
author = {Reynolds, Osborne F. R. S.},
journal = {Royal Society of London},
pages = {84--99},
title = {{An experimental investigation of the circumstances which determine whether the motion of water shall be direct or sinuous, and of the law of resistance in parallel channels}},
volume = {35},
year = {1883}
}
@article{1894Reynolds,
author = {Reynolds, Osborne},
journal = {Proceedings of the Royal Society of London},
number = {336-339},
pages = {123--164},
title = {{On the dynamical theory of incompressible viscous fluid and the determination of the criterion}},
volume = {56},
year = {1894}
}
@book{1922Richardson,
author = {Richardson, Lewis Fry and Lynch, Peter},
edition = {1},
publisher = {Cambridge University Press},
title = {{Weather Prediction by Numerical Process}},
year = {1922}
}
@techreport{1931Tollmien,
address = {Washington},
author = {Tollmien, W.},
booktitle = {Technical Memorandum, 609},
institution = {National Advisory Committe for Aeronautics (NACA)},
pages = {1--35},
title = {{The Production of Turbulence}},
year = {1931}
}
然而,編譯過程似乎沒有找到前面提到的「basque.lbx」檔案。事實上,日誌檔案提供以下訊息:
Package biblatex Info: Trying to load language 'basque'...
Package biblatex Info: ... file 'basque.lbx' not found.
Package biblatex Warning: Language 'basque' not supported.
(biblatex) Using fallback language 'english' on input line 7.
並載入英文語言檔。關於如何解決這個問題有什麼想法嗎?我已經嘗試過以下線程中發布的解決方案:biblatex 忽略自己的 lbx 文件。但情況略有不同,一條\DeclareLanguageMapping
指令並不能解決問題。