Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you rotate latex interpreted text

Status
Not open for further replies.

michelgarcia

Aerospace
Joined
May 31, 2006
Messages
7
I managed to get Latex intrpreter working by upgrading to version 7, but I can only get it to write horizontally. I want to write vertically for labelling the y-axis.

Thanks
Michel Garcia
 
How are you specifying the title for y-axis? is it using ylabel? I its ylabel MATLAB should put it vertically. I think you can even force the angle using Rotation property.

Something like this

ylable(....,'Interpretor','latex','Rotation',90);


 
I used ylable(....,'Interpreter','latex','Rotation',90); and it made no difference what angle I input, the output y axis text was and is still horizontal.

 
Did you try placing some text in the plot

text(Xloc,Yloc,'TestString','Rotation',90);
AND
text(Xloc,Yloc,'TestString','Interpretor','latex','Rotation',90);


You can test whether the problem is with interpretor using above two.

goodluck
nodal
 
I just tried it now. Tex allows me to rotate using text(), but latex doesn't.
 
Then you can blame it on Latex interpretor..Huh!
 
I guess so. Now I have to find a way to place dots over my symbols some other way.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top