Effacer les filtres
Effacer les filtres

How to center text in Latex and adjust line spacing?

32 vues (au cours des 30 derniers jours)
Frits
Frits le 28 Juin 2011
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

Réponses (1)

Patrick Kalita
Patrick Kalita le 28 Juin 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');

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by