more and more

This commit is contained in:
Silas Oettinghaus
2026-07-08 21:36:08 +02:00
parent 699d146fb5
commit 1879441999
22 changed files with 2197 additions and 174 deletions

View File

@@ -3,9 +3,13 @@ arguments
% Default to the path in your example if no argument is provided
filename (1,1) string = 'C:\Users\Silas\Documents\Dissertation\00_Examples\tikz\textfig.tikz';
options.cleanfigure = false;
options.cleanTargetResolution = 600;
options.cleanScalePrecision (1,1) double = 1;
end
if options.cleanfigure
cleanfigure;
cleanfigure( ...
'targetResolution', options.cleanTargetResolution, ...
'scalePrecision', options.cleanScalePrecision);
end
matlab2tikz(char(filename), ...
'width', '\fwidth', ...
@@ -38,4 +42,4 @@ matlab2tikz(char(filename), ...
% 'tick label style={/pgf/number format/fixed, /pgf/number format/1000 sep={}}' ...
% });
end
end