Mixed LaTeX math and text in Matlab
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I mix LaTeX text and math modes?
At the moment I have things like : '$\theta_{Co}$'. In a plot, It works and the subscript Co comes out in math style italics. Sweet.
I now want the subscript to print out as normal text.
In Overleaf - LaTeX IDE that I'm using - I can write \theta_{\text{Co}}$ and that comes out as i want - When I try that in Matlab it prints out the string as the code \theta_{\text{Co}} . What can I do?
Thanks, David
0 Commenti
Risposte (1)
Shlok
il 23 Ott 2024
Hi David,
It seems you're trying to mix LaTeX text and math modes in MATLAB but aren't getting the desired output. To fix this, you can use the “\mathrm” command within the math mode.
This command renders text in an upright (roman) font within a math expression, ensuring that non-mathematical symbols are styled correctly.
Here is a sample code, which prints “$\theta_{Co}$” same as your desired output ():
figure;
% Plotting random data
plot(1:10, rand(1, 10));
title('$\theta$', 'Interpreter', 'latex');
xlabel('x');
ylabel('y');
% Add a text annotation with LaTeX formatting
text(5, 0.5, '$\theta_{\mathrm{Co}}$', 'Interpreter', 'latex');
You can refer to the following MathWorks Documentation link to learn more about using LaTeX in MATLAB:
0 Commenti
Vedere anche
Categorie
Scopri di più su String in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!