첫 번째 장에만 biber 작품이 있는 장 참고문헌의 저자 이름에 작은 대문자 사용

첫 번째 장에만 biber 작품이 있는 장 참고문헌의 저자 이름에 작은 대문자 사용

다음과 같은 최소 예(빈 페이지 수를 제한하기 위해 장 대신 섹션을 사용)는 문제를 보여줍니다.

    \begin{filecontents}[force]{test.bib}
  @BOOK{Ogg-05,
    title        = {A Practical Guide to Quality Management in Clinical Trial Research},
    author       = {Ogg, G.D.},
    publisher    = {Informa HealthCare },
    year         = {2005},
    address      = {Boca Raton (FL, USA)},
    isbn         = {9780849397226},
  }
  @PATENT{Okh-86,
    AUTHOR       = {{{\foreignlanguage{russian}{Охонин, В.А.}} [Okhonin, V.A.]}},
    holder       = {{{\foreignlanguage{russian}{Институт Биофизики со ан СССР}} [Biophysical Institute of the SSSR]}},
    sortname     = {Okhonin, V.A.},
    shortauthor  = {Okhonin},
    TITLE        = {{{\foreignlanguage{russian}{Способ исследования микроструктуры образца}}} [Method of investigating specimen microstructure]},
    sorttitle    = {Method of investigating specimen microstructure},
    year         = {1986},
    month        = {4},
    number       = {SU 1374922},
    url          = {https://patentscope.wipo.int/search/en/detail.jsf?docId=SU29122026},
    langid       = {russian},
    abstract     = {Sovietisches Patent, daß die Grundlagen der STED Mikroskopie beschreibt },
  }

  @ARTICLE{Orn-62,
    title        = {Disk electrophoresis: {I}. {B}ackground and theory},
    author       = {Ornstein, L.},
    journal      = {Ann. N. Y. Acad. Sci.},
    year         = {1962},
    pages        = {321-351},
    volume       = {121},
    number       = {2},
    abstract     = {Einführung und theoretische Behandlung der diskontinuierlichen Elektrophorese},
    doi          = {10.1111/j.1749-6632.1964.tb14207.x},
  }
\end{filecontents}

% -*- TeX:UK -*-
% !TEX encoding = UTF-8 Unicode
% !TEX TS-program = xelatex
% !TEX spellcheck = en_GB
% !BIB program = biber
\NeedsTeXFormat{LaTeX2e}
\documentclass[british]{scrartcl}

\usepackage{kpfonts-otf, polyglossia}
\usepackage[backend=biber,bibencoding=UTF8,sorting=none,style=numeric-comp]{biblatex}
\usepackage{hyperref}

\setotherlanguage[babelshorthands=true,numerals=arabic]{russian}
\newfontfamily\russianfont{FreeSerif}

\renewcommand*{\mkbibnamefamily}[1]{\textsc{#1}}       %

\addbibresource{test.bib}

\title{Test}
\author{Tester}
\date{\today}

\begin{document}

\maketitle

\section{First section}
\begin{refsection}

The quick brown fox\parencite{Ogg-05,Okh-86,Orn-62} jumps over the lazy dog.

\printbibliography[heading=bibliography]
\end{refsection}

\section{Second section}
\begin{refsection}

The quick brown fox\parencite{Orn-62} jumps over the lazy dog.

\printbibliography[heading=bibliography]
\end{refsection}

\end{document} 

첫 번째 섹션의 저자 이름은 의도한 대로 작은 대문자로 표시됩니다. 그런데 두 번째 부분에는 일반 글꼴로 되어 있는데 왜 그런지 모르겠습니다. 러시아 소스와 관련이 있는 것으로 보입니다. 이를 제거하면 두 번째 섹션에도 작은 대문자가 사용됩니다. 그러나 이로 인해 문제가 발생한다면 첫 번째 섹션의 세 번째 참조는 왜 영향을 받지 않습니까? 문제를 어떻게 해결하나요? LaTeX 출력(MikTeX)

관련 정보