biblatex와 함께 자체 .lbx 파일 사용

biblatex와 함께 자체 .lbx 파일 사용

해당 대상:

참고문헌 참조에 대한 자체 언어 지원으로 .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명령으로 문제가 해결되지는 않습니다.

관련 정보