Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error with the Unicode character (U+0306) #1389

Closed
amelieled opened this issue Oct 1, 2024 · 2 comments
Closed

Error with the Unicode character (U+0306) #1389

amelieled opened this issue Oct 1, 2024 · 2 comments
Assignees
Labels

Comments

@amelieled
Copy link

In the reference:

@Article{ott_2010,
  author    = {{S}ewell, {P}eter and {N}ardelli, {F}rancesco {Z}appa and {O}wens, {S}cott and {P}eskine, {G}illes and {R}idge, {T}homas and {S}arkar, {S}usmit and {S}trni{\u{s}}a, {R}ok},
  title     = {Ott: {E}ffective tool support for the working semanticist},
  journal   = {Journal of Functional Programming},
  year      = {2010},
  volume    = {20},
  number    = {1},
  pages     = {71--122},
  doi       = {10.1017/S0956796809990293},
  groups    = {Semantics},
  publisher = {Cambridge University Press}
}

the Unicode character \u{s} is not supported.

@plk
Copy link
Owner

plk commented Oct 4, 2024

Works fine for me with Lualatex engine - if you are using pdflatex, you will need more options and some config - best to ask on tex.stackexchange.com for help with that.

@plk plk closed this as completed Oct 4, 2024
@plk plk added the invalid label Oct 4, 2024
@plk plk self-assigned this Oct 4, 2024
@moewew
Copy link
Collaborator

moewew commented Oct 8, 2024

In this particular example \u{s} appears to be the wrong character anyway. According to https://doi.org/10.1017/S0956796809990293 it's "Rok Strniša" (that is \v{s} and not \u{s}). If you use the correct character in UTF-8 (which I assume has a precomposed form), you get no error and the expected output.

\documentclass[british]{article}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{csquotes}

\usepackage[backend=biber, style=authoryear, maxbibnames=999]{biblatex}

\begin{filecontents}{\jobname.bib}
@Article{ott_2010,
  author    = {Sewell, Peter and Nardelli, Francesco Zappa
               and Owens, Scott and Peskine, Gilles
               and Ridge, Thomas and Sarkar, Susmit and Rok Strniša},
  title     = {Ott: Effective tool support for the working semanticist},
  journal   = {Journal of Functional Programming},
  year      = {2010},
  volume    = {20},
  number    = {1},
  pages     = {71--122},
  doi       = {10.1017/S0956796809990293},
  groups    = {Semantics},
  publisher = {Cambridge University Press}
}
\end{filecontents}
\addbibresource{\jobname.bib}
\addbibresource{biblatex-examples.bib}

\begin{document}
Lorem \autocite{sigfridsson,ott_2010}

\printbibliography
\end{document}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants