My use case is to make strings of caps, like abbreviations, 10% smaller and 100 pts heavier. So every time, for example, ACRONYM appears, its size is decreased to 0.9em and weight increased by 100 pts. The first part’s easy (below) but how to do the second part when I don’t already know what weight the text found by the show rule is?
BTW the desired effect admittedly looks weird on screen but it looks nice in print.
I suppose that my question could generalized as: How to return the properties of text shown with regex?
… I must be missing something obvious …
#show regex("[A-Z&]{2,}"): set text(size: 1em*.9)
This ACRONYM should be\ heavier, like this #text(weight: 500)[ACRONYM].
That worked great! In my case I do a lot of professional reports with acronyms. Other people might find this more useful as a way to fake petite caps. Say they’re using Libertinus Serif, which doesn’t have them. Just shrinking the font 50% looks too skinny. The petite X is overwhelmed by the period.
This fixes the problem.
I tried to improve your solution, but failed. The idea was that instead of applying delta to the weight, it would switch to a different optical size (obviously not Libertinus Serif, but for example Literata).
Because a document might have multiple font families, the function would first have to detect which font is currently in the found text. Then it’d determine size which it’s decreasing it to. Then it’d reference the correct precompiled dictionary (e.g., if the font were Literata then the dictionary would contain an array of pairs (e.g., (9.5, “Literata 7pt”), (15, “Literata 12pt”), etc). Then it would switch the font to the correct optical weight (if the new size were >9.5 and <15 then the font’d become Literata 12pt.
I didn’t get very far. I could return the value of .font but I couldn’t then use that value in an if then statement.
I searched the Forum and Universe, as it seemed likely that if it were possible then someone else would have already used this approach as a general solution to the optical size issue.