How to center text in Latex and adjust line spacing?
Mostra commenti meno recenti
LS,
I would like to center a formula in Latex and increase the line space. The code that I currently use is:
text(0.5, 0.5, ...
'string', {'$$a=$$', '$$\ \frac{bbb}{ccc}$$'}, ...
'interpreter', 'latex');
Hopefully somebody can help me with this. Thanks a lot in advance.
Best,
Frits
Risposte (1)
Patrick Kalita
il 28 Giu 2011
It will probably be easiest to do this by making two separate text objects. When you tell the text object to use the LaTeX interpreter, MATLAB will just hand off the string to the LaTeX system and let it control all the layout (like centering and line spacing). And getting LaTeX to do exactly what you want can get awfully complicated. So I would just make two text objects. The relative positions would control the line space, and the HorizontalAlignment controls the centering:
text(0.5, 0.5, '$$a=$$', 'HorizontalAlignment', 'center', 'interpreter', 'latex');
text(0.5, 0.4, '$$\ \frac{bbb}{ccccccc}$$', 'HorizontalAlignment', 'center', 'interpreter', 'latex');
Categorie
Scopri di più su Characters and Strings in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!