Setting default Interpreter to Latex
610 ビュー (過去 30 日間)
古いコメントを表示
In previous versions of MATLAB, the command
set(0,'defaulttextInterpreter','latex') %latex axis labels
set the interpreter for the text command, the xlabel command, and so on, to Latex. This does not work in 2015a. Is there an alternative way to set the default interpreter to Latex for all graphics objects. Thank you.
0 件のコメント
採用された回答
Chibuzo Nnonyelu
2015 年 5 月 13 日
MATLAB changed some object properties name. For this issue, the following will work
set(groot, 'defaultAxesTickLabelInterpreter','latex'); set(groot, 'defaultLegendInterpreter','latex');
I think Legend didn't change. You can still replace the 'groot' with '0' as usual. To be able to set other default object properties, check out
get(groot, 'factory'); % this shows all the factory values for all object properties. get(groot, 'default'); % fetches only default values you have altered.
So you can use the "get(groot, 'factory');" to see all possible object property and change their default values by removing the "factory" prefix and replace with "default". Of course you use the set() function to change and get() function to fetch. Let me if this helped.
2 件のコメント
Vairavan AV
2017 年 1 月 6 日
Yes, I could fix the problem! Thank you very much!
But, do we need to use set(groot, 'factory'), to set it back when we don't need this?
その他の回答 (4 件)
Max Bartholdt
2021 年 10 月 7 日
clear all
% This script changes all interpreters from tex to latex.
list_factory = fieldnames(get(groot,'factory'));
index_interpreter = find(contains(list_factory,'Interpreter'));
for i = 1:length(index_interpreter)
default_name = strrep(list_factory{index_interpreter(i)},'factory','default');
set(groot, default_name,'latex');
end
Ganesh Gaonkar
2015 年 3 月 16 日
I think the command should work even on R2015a. Looks like you have missed making 'text' as CamelCase. So ideally the command should be : set(0,'defaultTextInterpreter','latex');
3 件のコメント
Ganesh Gaonkar
2015 年 3 月 16 日
It seems to be working for me. What error you receive when you try to execute that command?
Cael Warner
2017 年 10 月 13 日
Also, to go back to the default formatting, replace 'latex' with 'none'
beginner94
2018 年 10 月 16 日
It does not work for me either and I need to define an overlined variable (in R2007b).
Thanks for help
5 件のコメント
Walter Roberson
2021 年 2 月 3 日
These days see Live Editor https://www.mathworks.com/help/symbolic/add-suffixes-to-symbolic-results.html
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!