San-serif \mathsf and \textsf are not supported when using interpreter latex (in Matlab R2022a)
Show older comments
When I run the following example, in which I use (1) \mathsf (2) \textsf and (3) interpreter latex together,
plot(rand(3,10));
ylabel('$\mathsf{\stackrel {.}{K} / units}$', 'Interpreter', 'latex','fontsize',20);
text(1.5, 0.8, '\textsf{sans serif}','interpreter','latex','FontSize',20)
text(1.5, 0.6, '$$\mathsf{math\,\,mode\,\,sans\,\,serif}$$','interpreter','latex','FontSize',20)

I get these warning/errors, and the san-serif texts are not correctly displayed in my plot:
Warning: Error updating Text.
Font cmss10 is not supported.
Warning: Error updating Text.
Font cmss10 is not supported.
Warning: Error updating Text.
Font cmss10 is not supported.
How can I correclty visualise/display my texts that include \mathsf and \textsf, and remove the warning/errors ?
Note: my Matlab version is R2022a.
6 Comments
dpb
on 29 Aug 2022
Pretty-much stuck in that the MATLAB-packaged implementation isn't fully general -- while the <TMW Answer> and <Answer> both address R2020b and earlier explicitly, I don't believe there's been any changes since.
The second of the above illustrates some of what can be done; whether you can get a result pleasing to your wishes or not I don't know for certain will be possible.
Sim
on 29 Aug 2022
"....did not understand anything of what you wrote..."
I simply provided links to previously-posted Answers from TMW Staff regarding the same issue -- there are examples in them of what limited things can be done with fonts an the MATLAB-installed LaTeX interpreter. You can go look at those examples and see if any of their illustrated usages helps you (or not).
In particular, what I see in those is that the installed font itself must support the type of operation being requested and some characters like Greek symbols must be handled outside the attempts to use the text style modifications. Again, whether any of that will help your issues, I really can't say.
I don't know enough LaTeX off top of my head to be able to provide anything else but it is true that the installation with MATLAB is not completely general in its functionality and fonts is a particularly sore point in that regards. This topic has come up for as long as I've been using MATLAB which goes back all the way to the original Windows release. It's a prime reason I've never bothered to even try to use it (besides that I've never been in a position that the details of presentation ever mattered to me nor my consulting clients sufficiently to worry about details like fonts).
I understand entirely the publication-ready issues(*) -- unfortunately, MATLAB doesn't always provide sufficient facilities(**) to do that with graphics--it's a recognized shortcoming in the user community that to date doesn't have a totally satisfactory solution. TMW has made some improvements, but it appears (from the outside looking in with no inside knowledge at all) that the difficulties with the HG2 (shorthand for "handle graphics V2", the base graphics rendering package inside MATLAB) are so embedded and deep that there simply aren't resources enough considered expendable to try to start over and build such a system--things that can be patched up or added occasionally make improvments, but to me it appears a whole fresh start would probably be required to be able to have a clean-enough code base to be able to remove many of the deeply-embedded warts.
Again, this is just surmise based on observation of what has transpired over some 30+ years.
(*) I'm such an old fogey that my publications days were from well before having such layout tools; everything still went on the hardcopy mats by typewriter and pen and ink -- no electronic transfer back then! Beyond that, technical presentations and conference proceedings never had such stringent publication rules as did the formal journals or the University "Thesis/Dissertation Scrutinizer Czar" who had the final arbitration over whether the format followed guidelines sufficiently well or not. That was typically more difficult a hurdle by far to pass than were the actual orals or research itself.
(**) There is also a "veritable plethora" of Q? on the forum about exporting graphics to pdf and then trying to finish cleaning up with the pdf file to meet publications' form criteria. That also doesn't always work as users may desire.
Sim
on 30 Aug 2022
Accepted Answer
More Answers (0)
Categories
Find more on Graphics Object Properties in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!