오류가 있지만 올바른 pdf | Biber, 용어집 및 Babel을 사용한 Biblatex

오류가 있지만 올바른 pdf | Biber, 용어집 및 Babel을 사용한 Biblatex

나는 문서에서 다른 언어로 Biber와 Glossaries를 사용하려고 합니다. 실제로 모든 것이 잘 작동하지만 올바른 PDF도 생성되기 때문에 더 많은 경고인 일부 오류가 출력됩니다. 그럼에도 불구하고 Texlipse 플러그인을 사용하는 Eclipse 개발 환경에서는 오류가 나를 짜증나게 합니다.

내 MWE는 다음과 같습니다.

\documentclass[12pt]{article}
\usepackage{filecontents}
\begin{filecontents*}{superBib.bib}

@book{bohm_sys,
    title = {System-Entwicklung in der Wirtschaftsinformatik},
    isbn = {978-3-7281-2762-4},
    pagetotal = {702},
    publisher = {vdf Hochschulverlag {AG}},
    author = {Böhm, Rolf},
    date = {2002},
    langid = {german},
    keywords = {Systemdenken}
}

@online{james_scrum_2012,
    title = {Scrum Reference Card},
    url = {http://scrumreferencecard.com/ScrumReferenceCard.pdf},
    titleaddon = {Scrum Reference Card},
    type = {Knowledge},
    author = {James, Michael},
    date = {2012},
    keywords = {{SCRUM}}
}

\end{filecontents*}

%% BIBER BibLatex  
 \usepackage[backend=biber,style=numeric,sorting=ynt,  natbib=true]{biblatex}%
\addbibresource{superBib.bib}

\usepackage[ngerman,polish,english]{babel}
\usepackage[utf8]{inputenc}
\usepackage[babel,german=quotes]{csquotes}

\usepackage[T1]{fontenc} % 
\usepackage[colorlinks]{hyperref}

\usepackage[acronym,toc,nonumberlist,section]{glossaries}
\makeglossaries

\begin{document}
    \selectlanguage{english}
    %% Set some Acronyms and Glossary Entries
    \newacronym{acr:ram}{RAM}{Random-access memory}
    \newacronym{acr:csv}{CSV}{Comma-separated values}
    \newglossaryentry{glo:btrat}{name={bitrate},description={It effects the file-size and quality of a video}}
    \newglossaryentry{glo:dynamicweb}{name={dynamic website},description={server generated code}}
    \newglossaryentry{glo:staticweb}{name={static website},description={hard coded content, server just delivers the document}}

    %% Print Acronym and Glossary
    \printglossary[type=\acronymtype,style=list, title=List of Abbreviations, toctitle=List of Abbreviations]
    \glsaddall[types=main]      %added all defined Glossentries 
    \printglossary[type=main,style=altlist, title=Glossary, toctitle=Glossary]

    \printbibliography[heading=bibintoc,title={Bibliography}]

    \section{Cites}
        Hello \citet{james_scrum_2012} and another \parencite{bohm_sys}    

    \section{Acr and Glo}

%    Here we use \gls{acr:ram} and followed by a GlossaryEntry: \gls{glo:btrat}

    \selectlanguage{ngerman}
    Hallo Welt

\end{document}

일부 오류 메시지:

! Missing \endcsname inserted.
<to be read again>
                 \bbl@loaded
l.47 \begin{document}


! Extra \endcsname.
\cslet ...>\expandafter \let \csname #1\endcsname
                                                  #2
l.47 \begin{document}

! Extra \endcsname.
\blx@maplang ...d \csname abx@extras@#2\endcsname
                                                  \expandafter \noexpand \cs...
l.47 \begin{document}


! Extra \endcsname.
\blx@maplang ... \csname abx@strings@#2\endcsname
                                              }\csxappto {noextras#1}{\n...
l.47 \begin{document}


("C:\Program Files\MiKTeX 2.9\tex\latex\tools\.tex" File ignored)
! Missing \endcsname inserted.
<to be read again>
                   \bbl@loaded
l.47 \begin{document}

용어집에 속한 모든 항목의 주석 처리를 제거하면 한 가지 경고가 남습니다.

! Undefined control sequence.
<argument> ...docsvlist \expandafter {\bbl@loaded
                                    }\ifboolexpr { not test {\...
l.47 \begin{document}

Babel 패키지가 원인일 가능성이 있나요?

출력을 생성하기 위해 작은 배치 파일을 사용하고 있습니다. 일반적인 단계는 다음과 같습니다.

pdf라텍스

makeindex -q -s *.ist -t *.alg -o *.acr *.acn

makeindex -q -s *.ist -t *.glg -o *.gls *.glo

비버

pdf라텍스

pdf라텍스

편집 : 해결책은 업데이트하는 것입니다

버전 babel이 너무 오래되었습니다.MikTeX 업데이트 관리자그리고는 아니다패키지 관리자이제 모든 것이 괜찮아요!

관련 정보