LyX + BibLaTeX 处理非 ASCII UTF-8

LyX + BibLaTeX 处理非 ASCII UTF-8

抱歉再次提出这个问题,但我之前已经回答过几个类似的问题,但都没有成功。我在本文档中使用 LyX 版本 2.3.6.1

#LyX 2.3 created this file. For more info see http://www.lyx.org/
\lyxformat 544
\begin_document
\begin_header
\save_transient_properties true
\origin unavailable
\textclass article
\use_default_options true
\maintain_unincluded_children false
\language english
\language_package default
\inputencoding auto
\fontencoding global
\font_roman "default" "default"
\font_sans "default" "default"
\font_typewriter "default" "default"
\font_math "auto" "auto"
\font_default_family default
\use_non_tex_fonts false
\font_sc false
\font_osf false
\font_sf_scale 100 100
\font_tt_scale 100 100
\use_microtype false
\use_dash_ligatures true
\graphics default
\default_output_format default
\output_sync 0
\bibtex_command default
\index_command default
\paperfontsize default
\spacing single
\use_hyperref false
\papersize default
\use_geometry false
\use_package amsmath 1
\use_package amssymb 1
\use_package cancel 1
\use_package esint 1
\use_package mathdots 1
\use_package mathtools 1
\use_package mhchem 1
\use_package stackrel 1
\use_package stmaryrd 1
\use_package undertilde 1
\cite_engine biblatex
\cite_engine_type authoryear
\biblatex_bibstyle authoryear
\biblatex_citestyle authoryear
\use_bibtopic false
\use_indices false
\paperorientation portrait
\suppress_date false
\justification true
\use_refstyle 1
\use_minted 0
\index Index
\shortcut idx
\color #008000
\end_index
\secnumdepth 3
\tocdepth 3
\paragraph_separation indent
\paragraph_indentation default
\is_math_indent 0
\math_numbering_side default
\quotes_style english
\dynamic_quotes 0
\papercolumns 1
\papersides 1
\paperpagestyle default
\tracking_changes false
\output_changes false
\html_math_output 0
\html_css_as_file 0
\html_be_strict false
\end_header

\begin_body

\begin_layout Standard
MWE
\begin_inset space ~
\end_inset


\begin_inset CommandInset citation
LatexCommand cite
key "bruning_lhc_2004"
literal "false"

\end_inset


\end_layout

\begin_layout Standard
\begin_inset CommandInset bibtex
LatexCommand bibtex
btprint "btPrintCited"
bibfiles "mwe"
options "plain"

\end_inset


\end_layout

\end_body
\end_document

我有这个mwe.bib文件

@misc{bruning_lhc_2004,
    title = {{LHC} Design Report Volume 1 The {LHC} Main Ring},
    url = {https://cds.cern.ch/record/782076},
    abstract = {The {LHC} Design Report is presented in three volumes: the first concerns the main ring, the second the infrastructure and general services and the third, the injector chain. The conceptual design was published in 1995 and this report provides a snapshot of the detailed design as it stands at the time of writing - early 2004.},
    author = {Brüning, Oliver Sim and Collier, Paul and Lebrun and Myers, Stephen and Ostojic, Ranko and Poole, John and Proudlock, Paul},
    urldate = {2022-06-13},
    date = {2004},
    langid = {english},
    doi = {10.5170/CERN-2004-003-V-1},
    note = {{ISBN}: 9789290832249
Number: {CERN}-2004-003-V-1
Publisher: {CERN}},
    file = {Snapshot:/home/alf/Zotero/storage/WVBXWPF3/782076.html:text/html}
}

它无法处理ü作者姓名中的字符:

在此处输入图片描述

我不想尝试用一些奇怪的转义序列替换每个非 ASCII 字符的解决方案,所以我从 BibTex 转到了 BibLaTeX,我读到它可以处理这个问题。但是,它仍然失败了。是否可以告诉 LyX/LaTeX/whoever 适当地处理参考书目中的非 ASCII 字符?

如果有帮助的话,如果我从 LyX 导出 LaTeX 代码,它会生成这个

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\usepackage{babel}
\usepackage[style=numeric]{biblatex}
\addbibresource{mwe.bib}
\begin{document}
MWE~\cite{bruning_lhc_2004}

\printbibliography

\end{document}

答案1

BibLaTeX可以使用重音字符,但您的输入必须始终采用 Unicode (utf-8)。无论如何,这已经成为现代 TeX 引擎的默认设置。您当前使用的是 ISO Latin-8859-15:

\usepackage[latin9]{inputenc}

删除该行(使用默认的 utf-8)。

相关内容