Results 54 comments of Yann Salmon

A more detailed explanation of the use case is the following : ```tex \cs_new:Nn \lowlevel_typesetting_function:nnn { % #1 is an optional counter to increment (question number) % #2 is the...

> I would say this is mixing levels and the cause of the problem > > The document level function has optional values so it makes sense to test for...

Maybe. I read the new version of the doc, and it does hint that there is something to be aware of. However, even though the documentation is not a tutorial,...

Thank you for this valuable bit of information, but I think this does not suit my needs, because of kerning (eg. when typesetting ``\mathit{different}``). My use case is I typeset...

Nice. After going through the package, it seems I can get the output I want by saying ```tex \documentclass[varwidth, border=3pt]{standalone} \usepackage{fontspec, unicode-math} \setmainfont{texgyrepagella} \setmathfont{texgyrepagella-math.otf} \setmainfont{Gentium} \begin{document} different\\ $d$\\ $\mathit{different}$ \\...

The use case is explained [there](https://tex.stackexchange.com/questions/725933/), and indeed, the redefinitions of ``\par`` make it tricky. But I think I managed to get something that more or less works, and the...

There was [an OCaml PR](https://github.com/ocaml/ocaml/pull/1696) to perform case-sensitive search for cmi files, but it was not merged.

Is wger database just fetching Openfoodfacts ? The db has numerous very low quality entries, like [this one](https://wger.de/fr/nutrition/ingredient/723222/view/quot/) and numerous duplicates ; are they in the OFF db too ?

OK, I see the is a "source" mention in the app too. I wonder why the brand is not shown, however (OFF seems to have a specific field for it) ...

It seems the API has brands : https://pub.dev/documentation/openfoodfacts/latest/openfoodfacts/OpenFoodAPIClient/getProductV3.html Here is how Energize searches for OFF products : https://codeberg.org/epinez/Energize/src/commit/f96c9183c0f4537dac70673055fb704135c16017/lib/services/food_database_bindings/open_food_facts/open_food_facts_binding.dart#L56 and how they consume the results from OFF : https://codeberg.org/epinez/Energize/src/commit/f96c9183c0f4537dac70673055fb704135c16017/lib/models/food/food.dart#L242