-
Notifications
You must be signed in to change notification settings - Fork 1
/
saveFigPDF.m
157 lines (141 loc) · 4.93 KB
/
saveFigPDF.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
function saveFigPDF(filename,fig)
%SAVEFIGPDF Sets up the style of a figure ans saves it as .pdf and .fig
%**************************************************************************
% https://github.com/KasparJohannesSchneider/MatlabTools
%
% This function sets up a figure visually and saves it as a .pdf and .fig
% file.
% The PDF file uses vector graphics and is optimised to be used in a
% LaTex document.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Author: mrc18jsr, Kaspar Johannes Schneider, [email protected]
% 2019-11-30 v1.0: Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% IN:
%****
%- filename: File name for the pdf and fig file without extension
%- fig (optional): Handle for the figure if not specified gcf will be used
%
%
% OUT:
%****
% Nothing
%
% Minimal working example:
%%%%%%%%%%%%%%%%%%%%%%%%%%
% >> peaks % Create an example plot
% >> saveFigPDF('peaks') % Save the figure as .pdf and .fig
% --> Creates the file peaks.pdf
% --> Creates the file peaks.fig
%
% MIT License
%%%%%%%%%%%%%%
%
% Copyright (c) 2019 Kaspar Johannes Schneider
%
% Permission is hereby granted, free of charge, to any person obtaining a copy
% of this software and associated documentation files (the "Software"), to deal
% in the Software without restriction, including without limitation the rights
% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
% copies of the Software, and to permit persons to whom the Software is
% furnished to do so, subject to the following conditions:
%
% The above copyright notice and this permission notice shall be included in all
% copies or substantial portions of the Software.
%
% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
% SOFTWARE
%
%**************************************************************************
% use gcf if no fig is specified
if nargin < 2
fig = gcf;
end
% Get all the children of the figure
children = get(fig,'children');
% Loop through the children
for i=1:length(children)
% Select current axis
child = children(i);
% Test if child is an Axis
if isa(child, 'matlab.graphics.axis.Axes')
% Grid
grid(child, 'on')
grid(child, 'minor')
% Tick labels
child.XAxis.FontSize = 14;
child.YAxis.FontSize = 14;
child.ZAxis.FontSize = 14;
child.TickLabelInterpreter = 'latex';
% Axis labels
%************
% X
child.XAxis.Label.FontSize = 18;
child.XAxis.Label.Interpreter = 'latex';
child.XAxis.Label.String = bold(child.XAxis.Label.String);
% Y
child.YAxis.Label.FontSize = 18;
child.YAxis.Label.Interpreter = 'latex';
child.YAxis.Label.String = bold(child.YAxis.Label.String);
% Z
child.ZAxis.Label.FontSize = 18;
child.ZAxis.Label.Interpreter = 'latex';
child.ZAxis.Label.String = bold(child.ZAxis.Label.String);
% Title
child.Title.FontSize = 24;
child.Title.Interpreter = 'latex';
child.Title.String = bold(child.Title.String);
else
% Test if child is a Legend
if isa(child, 'matlab.graphics.illustration.Legend')
child.Interpreter = 'latex';
child.FontSize = 18;
end
end
end
% Ensure that vector graphics are used
fig.Renderer = 'Painters';
% Landscape seems to work best for most of the plots
set(fig,'PaperOrientation','landscape');
% Save the figure as a PDF
print(fig, strcat(filename, ".pdf"),...
'-dpdf', '-fillpage')
% Save the figure as a Matlab .fig file
savefig(fig, strcat(filename, ".fig"))
end
function bldStr = bold(str)
%BLDSTR Makes a string bold for LaTex by surrounding it with \textbf{str}
%**************************************************************************
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Author: mrc18jsr, Kaspar Johannes Schneider, [email protected]
% 2019-11-30: Initial version
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% IN:
%****
%- str: Input string
%
%
% OUT:
%****
%- bldStr: The input string as \textbf{str}
%
% Minimal working example:
%%%%%%%%%%%%%%%%%%%%%%%%%%
% >> str = "Hello World";
% >> bldStr = strcat("\textbf{", str, "}");
% >> disp(bldStr)
% "\textbf{Hello World}"
%
%**************************************************************************
% Surround the input string with \textbf{}
bldStr = strcat("\textbf{", str, "}");
end