-
Notifications
You must be signed in to change notification settings - Fork 18
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
Remove non-ascii letters escaping from BibtexUtil #1115
Comments
Completely agree. Seems like at least since 2018 Tex already assumes the source is in UTF-8. Still, the documentation says that Bibtex only supports a subset of UTF-8. To be safe, one should apparently use BibLaTeX, which in turn uses Biber (which is in Perl), not BibTeX. I don't know how commonly used BibLaTeX is (I like and tent to use it), but maybe we can make some info note to recommend using it. Another benefit would be that BibLaTex has more publication types including |
In my presentation at last week's conference, I claimed that So, to my mind the only way to ensure consistency with the yellow-box of the LINDAT-style repositories, is to define the bib entry as follows:
So the main change from the current exports is from As an obvious example, the above will always get you the italic formatting of titles, which is in line with the citation box. While it might seem intuitively odd treating datasets as books, it might not be that odd from the point of view of bibliographic (rather than real-world) ontology -- note that datasets have the same elements as books (titles, publishers, years), rather than anything else (e.g., journal articles, which are defined in terms of things like journal name, journal volume, issue, and so forth, none of which is relevant for datasets/software). |
As an addendum: I know I'm harping on about italics, but it is the case that the APA guidelines define precisely such a format for datasets: https://apastyle.apa.org/style-grammar-guidelines/references/examples/data-set-references For Chicago as well, although this isn't an official CMOS site: https://libguides.murdoch.edu.au/Chicago/dataset. But I think CMOS doesn't officially define the dataset format. MLA as well: https://library.webster.edu/data/mla |
See With The key question to me is, whether we can switch to |
utf8 seems to be the default input encoding since 2019 (overleaf, texlive).
Even if escaped correctly, you need something like
\usepackage[T1]{fontenc}
to render them correctly (this applies even to czech chars).We can drop the
accents
, and the other parts of the BibtexUtil should be investigated if they are still relevantThe text was updated successfully, but these errors were encountered: