moewew

Results 416 comments of moewew

I'd be quite interested in something one could use to load a `\ProvidesExplFile` without messing up one's catcodes. In `biblatex` we currently do https://github.com/plk/biblatex/blob/78c58dc335564cb5813e77ac364471379344292a/tex/latex/biblatex/biblatex.sty#L15384-L15386 where `\blx@inputonce` is https://github.com/plk/biblatex/blob/78c58dc335564cb5813e77ac364471379344292a/tex/latex/biblatex/biblatex.sty#L1190-L1206, i.e. we...

Thank you very much for the ideas and comments. I was quite close to implementing the 'measure the height of letters' approach, but made the mistake of testing this with...

What is possible depends a lot on what exactly you have in mind when you say you want HTML from `biblatex` and what your use case is. --- If we're...

See also https://github.com/plk/biblatex/issues/38 and https://github.com/plk/biblatex/issues/1155. If unlike for URNs it is guaranteed that (the/every) resolver resolves all valid ARKs, we can look into adding this as a default `eprint` declaration....

Thank you very much for reporting this issue and also for the thorough investigation. This catcode business reminds me of the terrible things I did in https://github.com/plk/biblatex/commit/9ff2cd0eed4591b449043c426f9d4e77e81321f8 to try and...

Turns out this is trickier than I thought. If we can't split at `;` then the code that comes later to normalise the range will not work as expected and...

The new case changing code (#1005) will use `expl3` and `xparse` (and as PLK mentioned, the multiscript proof-of-concept also makes heavy use of `xparse`), so I think at some point...

With your example entry, which is an `@inproceedings`, ```latex \DeclareFieldFormat[article]{titlecase}{\MakeSentenceCase{#1}} ``` won't do anything, since it only affects `@article`s. Note that it is generally preferred to use the starred form...

Just an aside. The quoted passage from the documentation needs to be read in context. It means that **if** `\MakeSentenceCase*` is used, it will apply sentence casing to its input...

Citations use a different field format for titles called `citetitle`. You'll have to redefine that as well. Again with `biblatex-ext` ```latex \documentclass[11pt,a4paper,english]{article} \usepackage[english]{babel} \usepackage{csquotes} \usepackage[backend=biber,style=ext-authortitle,maxbibnames=10]{biblatex} \DeclareFieldFormat [article,inbook,incollection,inproceedings,patent,thesis,unpublished] {titlecase:title}{\MakeSentenceCase*{#1}} \DeclareFieldFormat [article,inbook,incollection,inproceedings,patent,thesis,unpublished]...