tioga 1.15 → 1.16
Sign up to get free protection for your applications and to get access to all the features.
- data/Tioga_README +7 -2
- data/bin/tioga +1 -1
- data/ext/Tioga/FigureMaker/__shared_axes.c +9 -3
- data/ext/Tioga/FigureMaker/__shared_pdfcolor.c +1 -1
- data/ext/Tioga/FigureMaker/shared/axes.c +9 -3
- data/ext/Tioga/FigureMaker/shared/pdfcolor.c +1 -1
- data/lib/Tioga/FigMkr.rb +81 -37
- data/lib/Tioga/TexPreamble.rb +177 -177
- data/lib/Tioga/tioga_ui_cmds.rb +2 -2
- data/tests/tc_FMkr.rb +12 -0
- metadata +2 -4
- data/tests/Icon_Test.pdf +0 -0
- data/tests/vg.log +0 -1453
data/Tioga_README
CHANGED
@@ -22,8 +22,10 @@ This is the README for the Tioga kernel, version 1.14, June 10, 2011.
|
|
22
22
|
|
23
23
|
<< What's new >>
|
24
24
|
|
25
|
-
Tioga 1.
|
26
|
-
|
25
|
+
Tioga 1.16 brings in a bug fix by Josiah Schwab in handling some
|
26
|
+
HLS triplets. It also provides facilities to extract the pdflatex
|
27
|
+
errors.
|
28
|
+
|
27
29
|
|
28
30
|
<< Quick Installation of Tioga >>
|
29
31
|
|
@@ -167,6 +169,9 @@ Bill Paxton
|
|
167
169
|
|
168
170
|
Here are the old release messages:
|
169
171
|
|
172
|
+
Tioga 1.15 brings in some new iterators in Dvector and some minor
|
173
|
+
bug fixes (in particular for gem builds).
|
174
|
+
|
170
175
|
Tioga 1.14 fixes all known problems of Tioga with Ruby 1.9.1 and
|
171
176
|
higher (to the point that it runs with ctioga2, and the samples run
|
172
177
|
too !).
|
data/bin/tioga
CHANGED
@@ -107,9 +107,14 @@ static void figure_join(OBJ_PTR fmkr, FM *p,
|
|
107
107
|
figure_lineto(fmkr, p, x1, y1, ierr);
|
108
108
|
}
|
109
109
|
|
110
|
-
static void axis_stroke(OBJ_PTR fmkr, FM *p, int *ierr)
|
110
|
+
static void axis_stroke(OBJ_PTR fmkr, FM *p, int *ierr, int cap)
|
111
111
|
{
|
112
|
+
int old_cap = p->line_cap;
|
113
|
+
if(old_cap != cap) /* Save cap */
|
114
|
+
c_line_cap_set(fmkr, p, cap, ierr);
|
112
115
|
c_stroke(fmkr,p, ierr);
|
116
|
+
if(old_cap != cap) /* Restore cap */
|
117
|
+
c_line_cap_set(fmkr, p, old_cap, ierr);
|
113
118
|
}
|
114
119
|
|
115
120
|
static void figure_join_and_stroke(OBJ_PTR fmkr, FM *p,
|
@@ -759,7 +764,8 @@ static void draw_major_ticks(OBJ_PTR fmkr, FM *p, PlotAxis *s, int *ierr)
|
|
759
764
|
did_line = true;
|
760
765
|
if (*ierr != 0) return;
|
761
766
|
}
|
762
|
-
if (did_line)
|
767
|
+
if (did_line)
|
768
|
+
axis_stroke(fmkr,p, ierr, LINE_CAP_BUTT);
|
763
769
|
}
|
764
770
|
|
765
771
|
static double log_subintervals[8] = {
|
@@ -864,7 +870,7 @@ static void draw_minor_ticks(OBJ_PTR fmkr, FM *p, PlotAxis *s, int *ierr)
|
|
864
870
|
/* And we free the array returned by get_minor_ticks_location */
|
865
871
|
free(locs);
|
866
872
|
if (did_line)
|
867
|
-
axis_stroke(fmkr,p, ierr);
|
873
|
+
axis_stroke(fmkr,p, ierr, LINE_CAP_BUTT);
|
868
874
|
}
|
869
875
|
|
870
876
|
static void show_numeric_label(OBJ_PTR fmkr, FM *p, PlotAxis *s,
|
@@ -107,9 +107,14 @@ static void figure_join(OBJ_PTR fmkr, FM *p,
|
|
107
107
|
figure_lineto(fmkr, p, x1, y1, ierr);
|
108
108
|
}
|
109
109
|
|
110
|
-
static void axis_stroke(OBJ_PTR fmkr, FM *p, int *ierr)
|
110
|
+
static void axis_stroke(OBJ_PTR fmkr, FM *p, int *ierr, int cap)
|
111
111
|
{
|
112
|
+
int old_cap = p->line_cap;
|
113
|
+
if(old_cap != cap) /* Save cap */
|
114
|
+
c_line_cap_set(fmkr, p, cap, ierr);
|
112
115
|
c_stroke(fmkr,p, ierr);
|
116
|
+
if(old_cap != cap) /* Restore cap */
|
117
|
+
c_line_cap_set(fmkr, p, old_cap, ierr);
|
113
118
|
}
|
114
119
|
|
115
120
|
static void figure_join_and_stroke(OBJ_PTR fmkr, FM *p,
|
@@ -759,7 +764,8 @@ static void draw_major_ticks(OBJ_PTR fmkr, FM *p, PlotAxis *s, int *ierr)
|
|
759
764
|
did_line = true;
|
760
765
|
if (*ierr != 0) return;
|
761
766
|
}
|
762
|
-
if (did_line)
|
767
|
+
if (did_line)
|
768
|
+
axis_stroke(fmkr,p, ierr, LINE_CAP_BUTT);
|
763
769
|
}
|
764
770
|
|
765
771
|
static double log_subintervals[8] = {
|
@@ -864,7 +870,7 @@ static void draw_minor_ticks(OBJ_PTR fmkr, FM *p, PlotAxis *s, int *ierr)
|
|
864
870
|
/* And we free the array returned by get_minor_ticks_location */
|
865
871
|
free(locs);
|
866
872
|
if (did_line)
|
867
|
-
axis_stroke(fmkr,p, ierr);
|
873
|
+
axis_stroke(fmkr,p, ierr, LINE_CAP_BUTT);
|
868
874
|
}
|
869
875
|
|
870
876
|
static void show_numeric_label(OBJ_PTR fmkr, FM *p, PlotAxis *s,
|
data/lib/Tioga/FigMkr.rb
CHANGED
@@ -38,7 +38,7 @@ class FigureMaker
|
|
38
38
|
|
39
39
|
# This URL will contain tioga-(...) when it is exported from the
|
40
40
|
# SVN repository. This is where we'll look for version information.
|
41
|
-
SVN_URL = '$HeadURL$'
|
41
|
+
SVN_URL = '$HeadURL: svn+ssh://rubyforge.org/var/svn/tioga/tags/tioga/Tioga%201.16/lib/Tioga/FigMkr.rb $'
|
42
42
|
|
43
43
|
TIOGA_VERSION = if SVN_URL =~ /tags\/tioga\/Tioga%20([^\/]+)/
|
44
44
|
$1
|
@@ -62,8 +62,14 @@ class FigureMaker
|
|
62
62
|
end
|
63
63
|
|
64
64
|
def FigureMaker.pdflatex
|
65
|
-
|
66
|
-
|
65
|
+
if ! @@which_pdflatex
|
66
|
+
@@which_pdflatex = if ENV.key? 'TIOGA_PDFLATEX'
|
67
|
+
ENV['TIOGA_PDFLATEX']
|
68
|
+
else
|
69
|
+
"pdflatex"
|
70
|
+
end
|
71
|
+
end
|
72
|
+
return @@which_pdflatex
|
67
73
|
end
|
68
74
|
|
69
75
|
def FigureMaker.pdflatex=(s)
|
@@ -164,6 +170,8 @@ class FigureMaker
|
|
164
170
|
# as it causes a systematic second run of pdflatex.
|
165
171
|
attr_accessor :measure_legends
|
166
172
|
|
173
|
+
# Stores the errors recorded in the last run of pdflatex.
|
174
|
+
attr_accessor :pdflatex_errors
|
167
175
|
|
168
176
|
# old preview attributes -- to be removed later
|
169
177
|
|
@@ -2304,43 +2312,79 @@ class FigureMaker
|
|
2304
2312
|
quiet = @quiet_mode
|
2305
2313
|
run_directory = @run_dir
|
2306
2314
|
|
2307
|
-
|
2308
|
-
|
2309
|
-
|
2310
|
-
|
2311
|
-
|
2312
|
-
|
2313
|
-
|
2314
|
-
|
2315
|
-
|
2316
|
-
|
2317
|
-
|
2318
|
-
|
2319
|
-
|
2320
|
-
|
2321
|
-
|
2322
|
-
|
2323
|
-
|
2324
|
-
|
2325
|
-
|
2326
|
-
|
2327
|
-
|
2328
|
-
|
2329
|
-
|
2330
|
-
|
2331
|
-
|
2332
|
-
|
2333
|
-
|
2334
|
-
|
2335
|
-
|
2336
|
-
|
2337
|
-
|
2338
|
-
|
2339
|
-
|
2315
|
+
logname = "pdflatex.log"
|
2316
|
+
|
2317
|
+
new_dir = @save_dir || "."
|
2318
|
+
syscmd = "#{pdflatex} -interaction nonstopmode #{name}.tex"
|
2319
|
+
|
2320
|
+
popen_error = nil
|
2321
|
+
@pdflatex_errors = []
|
2322
|
+
Dir.chdir(new_dir) do
|
2323
|
+
# Now fun begins:
|
2324
|
+
# We use IO::popen for three reasons:
|
2325
|
+
# * first, we want to be able to read back information from
|
2326
|
+
# pdflatex (see \tiogameasure)
|
2327
|
+
# * second, this way of doing should be portable to win, while
|
2328
|
+
# the > trick might not be that much...
|
2329
|
+
# * third, closing the standard input of pdflatex will remove
|
2330
|
+
# painful bugs, when pdflatex gets interrupted but waits
|
2331
|
+
# for an input for which it didn't prompt.
|
2332
|
+
|
2333
|
+
@measures = {}
|
2334
|
+
begin
|
2335
|
+
IO::popen(syscmd, "r+") do |f|
|
2336
|
+
f.close_write # We don't need that.
|
2337
|
+
log = File.open(logname, "w")
|
2338
|
+
error_pending = false
|
2339
|
+
for line in f
|
2340
|
+
log.print line
|
2341
|
+
if line =~ /^(.*)\[(\d)\]=(.+pt)/
|
2342
|
+
n = $1
|
2343
|
+
num = $2.to_i
|
2344
|
+
dim = Utils::tex_dimension_to_bp($3)
|
2345
|
+
@measures[n] ||= []
|
2346
|
+
@measures[n][num] = dim
|
2347
|
+
elsif line =~ /^!/
|
2348
|
+
error_pending = true
|
2349
|
+
elsif line =~ /^\s*$/ # errors seem to stop at blank lines
|
2350
|
+
error_pending = false
|
2351
|
+
end
|
2352
|
+
if error_pending
|
2353
|
+
@pdflatex_errors << line
|
2354
|
+
end
|
2355
|
+
end
|
2340
2356
|
end
|
2357
|
+
rescue SystemCallError => e
|
2358
|
+
popen_error = e
|
2341
2359
|
end
|
2342
2360
|
end
|
2361
|
+
|
2362
|
+
if ($?.exitstatus == 127) or popen_error
|
2363
|
+
$stderr.puts <<"EOE"
|
2364
|
+
ERROR: Tioga doesn't seem to find pdflatex (as '#{pdflatex}').
|
2365
|
+
|
2366
|
+
This probably means that you don't have any working version of
|
2367
|
+
pdflatex, in which case you can get it there:
|
2368
|
+
|
2369
|
+
http://www.tug.org/texlive/
|
2370
|
+
|
2371
|
+
or try installing texlive with your favorite package manager.
|
2372
|
+
|
2373
|
+
Alternatively, if you're positive that you have a working version of
|
2374
|
+
pdflatex installed, either make sur it is in your path or define the
|
2375
|
+
TIOGA_PDFLATEX environment variable to its full path, by adding for
|
2376
|
+
instance:
|
2343
2377
|
|
2378
|
+
export TIOGA_PDFLATEX=/path/to/pdflatex
|
2379
|
+
|
2380
|
+
in your ~/.bashrc.
|
2381
|
+
EOE
|
2382
|
+
|
2383
|
+
if popen_error
|
2384
|
+
$stderr.puts "Error: #{popen_error.inspect}"
|
2385
|
+
end
|
2386
|
+
end
|
2387
|
+
|
2344
2388
|
# Now passing the saved measures to the C code.
|
2345
2389
|
for key, val in @measures
|
2346
2390
|
# p @fm_data
|
@@ -2349,7 +2393,7 @@ class FigureMaker
|
|
2349
2393
|
|
2350
2394
|
result = $?
|
2351
2395
|
if !result
|
2352
|
-
puts "ERROR: #{pdflatex} failed
|
2396
|
+
$stderr.puts "ERROR: #{pdflatex} failed with error code #{$?.exitstatus}"
|
2353
2397
|
file = File.open(logname)
|
2354
2398
|
if file == nil
|
2355
2399
|
puts "cannot open #{logname}"
|
data/lib/Tioga/TexPreamble.rb
CHANGED
@@ -170,202 +170,202 @@ module Tioga
|
|
170
170
|
End_of_preamble
|
171
171
|
COLOR_PREAMBLE = <<'End_of_preamble'
|
172
172
|
% Color constants, generated from ColorConstants.rb
|
173
|
-
\definecolor{
|
174
|
-
\definecolor{
|
175
|
-
\definecolor{
|
176
|
-
\definecolor{LightTurquoise}{rgb}{0.200,1.000,0.800}
|
177
|
-
\definecolor{DarkGrey}{rgb}{0.664,0.664,0.664}
|
178
|
-
\definecolor{DarkSlateGray}{rgb}{0.185,0.310,0.310}
|
179
|
-
\definecolor{RedBrown}{rgb}{0.800,0.400,0.200}
|
180
|
-
\definecolor{LightBrightGreen}{rgb}{0.000,0.800,0.200}
|
181
|
-
\definecolor{BlueViolet}{rgb}{0.540,0.170,0.888}
|
182
|
-
\definecolor{MediumOrchid}{rgb}{0.730,0.332,0.828}
|
183
|
-
\definecolor{Navy}{rgb}{0.000,0.000,0.500}
|
184
|
-
\definecolor{Gainsboro}{rgb}{0.864,0.864,0.864}
|
185
|
-
\definecolor{Sienna}{rgb}{0.628,0.320,0.176}
|
186
|
-
\definecolor{LightRose}{rgb}{1.000,0.600,0.800}
|
187
|
-
\definecolor{Cornsilk}{rgb}{1.000,0.972,0.864}
|
188
|
-
\definecolor{Peru}{rgb}{0.804,0.520,0.248}
|
189
|
-
\definecolor{Indigo}{rgb}{0.294,0.000,0.510}
|
173
|
+
\definecolor{AliceBlue}{rgb}{0.940,0.972,1.000}
|
174
|
+
\definecolor{AntiqueWhite}{rgb}{0.980,0.920,0.844}
|
175
|
+
\definecolor{Aqua}{rgb}{0.000,1.000,1.000}
|
190
176
|
\definecolor{Aquamarine}{rgb}{0.498,1.000,0.830}
|
191
|
-
\definecolor{
|
192
|
-
\definecolor{
|
193
|
-
\definecolor{
|
194
|
-
\definecolor{
|
195
|
-
\definecolor{LightGold}{rgb}{0.800,0.800,0.400}
|
196
|
-
\definecolor{Burgundy}{rgb}{0.600,0.000,0.200}
|
197
|
-
\definecolor{MediumTurquoise}{rgb}{0.284,0.820,0.800}
|
198
|
-
\definecolor{DeepPink}{rgb}{1.000,0.080,0.576}
|
199
|
-
\definecolor{GrassGreen}{rgb}{0.200,0.600,0.000}
|
200
|
-
\definecolor{SlateGrey}{rgb}{0.440,0.500,0.565}
|
201
|
-
\definecolor{LightSkyBlue}{rgb}{0.530,0.808,0.980}
|
202
|
-
\definecolor{DarkCyan}{rgb}{0.000,0.545,0.545}
|
203
|
-
\definecolor{OrangeRed}{rgb}{1.000,0.270,0.000}
|
204
|
-
\definecolor{Purple}{rgb}{0.500,0.000,0.500}
|
205
|
-
\definecolor{LavenderBlush}{rgb}{1.000,0.940,0.960}
|
177
|
+
\definecolor{Avocado}{rgb}{0.600,0.600,0.000}
|
178
|
+
\definecolor{Azure}{rgb}{0.940,1.000,1.000}
|
179
|
+
\definecolor{Beige}{rgb}{0.960,0.960,0.864}
|
180
|
+
\definecolor{Bisque}{rgb}{1.000,0.894,0.770}
|
206
181
|
\definecolor{Black}{rgb}{0.000,0.000,0.000}
|
207
|
-
\definecolor{
|
208
|
-
\definecolor{
|
209
|
-
\definecolor{
|
210
|
-
\definecolor{
|
211
|
-
\definecolor{LightMustard}{rgb}{1.000,0.800,0.400}
|
212
|
-
\definecolor{Chiffon}{rgb}{0.980,0.980,0.824}
|
213
|
-
\definecolor{MistyRose}{rgb}{1.000,0.894,0.884}
|
214
|
-
\definecolor{FireBrick}{rgb}{0.698,0.132,0.132}
|
215
|
-
\definecolor{SteelBlue}{rgb}{0.275,0.510,0.705}
|
216
|
-
\definecolor{LightYellow}{rgb}{1.000,1.000,0.880}
|
217
|
-
\definecolor{DarkKhaki}{rgb}{0.740,0.716,0.420}
|
218
|
-
\definecolor{PaleVioletRed}{rgb}{0.860,0.440,0.576}
|
219
|
-
\definecolor{Grey}{rgb}{0.500,0.500,0.500}
|
220
|
-
\definecolor{LightCoral}{rgb}{0.940,0.500,0.500}
|
182
|
+
\definecolor{BlanchedAlmond}{rgb}{1.000,0.920,0.804}
|
183
|
+
\definecolor{Blue}{rgb}{0.000,0.000,1.000}
|
184
|
+
\definecolor{BlueGreen}{rgb}{0.000,0.600,0.400}
|
185
|
+
\definecolor{BlueViolet}{rgb}{0.540,0.170,0.888}
|
221
186
|
\definecolor{BrickRed}{rgb}{0.645,0.000,0.129}
|
222
|
-
\definecolor{
|
223
|
-
\definecolor{
|
224
|
-
\definecolor{
|
225
|
-
\definecolor{
|
226
|
-
\definecolor{LightSalmon}{rgb}{1.000,0.628,0.480}
|
227
|
-
\definecolor{Crimson}{rgb}{0.800,0.000,0.200}
|
228
|
-
\definecolor{OldLace}{rgb}{0.992,0.960,0.900}
|
229
|
-
\definecolor{GhostWhite}{rgb}{0.972,0.972,1.000}
|
230
|
-
\definecolor{Avocado}{rgb}{0.600,0.600,0.000}
|
231
|
-
\definecolor{Turquoise}{rgb}{0.250,0.880,0.815}
|
232
|
-
\definecolor{Linen}{rgb}{0.980,0.940,0.900}
|
233
|
-
\definecolor{DarkOrchid}{rgb}{0.600,0.196,0.800}
|
234
|
-
\definecolor{Pink}{rgb}{1.000,0.752,0.796}
|
235
|
-
\definecolor{Ivory}{rgb}{1.000,1.000,0.940}
|
187
|
+
\definecolor{BrightBlue}{rgb}{0.000,0.400,1.000}
|
188
|
+
\definecolor{BrightPink}{rgb}{1.000,0.400,0.800}
|
189
|
+
\definecolor{Brown}{rgb}{0.648,0.165,0.165}
|
190
|
+
\definecolor{Burgundy}{rgb}{0.600,0.000,0.200}
|
236
191
|
\definecolor{BurlyWood}{rgb}{0.870,0.720,0.530}
|
237
|
-
\definecolor{
|
238
|
-
\definecolor{
|
239
|
-
\definecolor{
|
240
|
-
\definecolor{
|
241
|
-
\definecolor{LightSlateGray}{rgb}{0.468,0.532,0.600}
|
242
|
-
\definecolor{DarkGoldenrod}{rgb}{0.720,0.525,0.044}
|
243
|
-
\definecolor{Orchid}{rgb}{0.855,0.440,0.840}
|
244
|
-
\definecolor{Gray}{rgb}{0.500,0.500,0.500}
|
245
|
-
\definecolor{Smoke}{rgb}{0.950,0.950,0.950}
|
246
|
-
\definecolor{WhiteSmoke}{rgb}{0.970,0.970,0.970}
|
247
|
-
\definecolor{MediumBlue}{rgb}{0.000,0.000,0.804}
|
248
|
-
\definecolor{DarkSalmon}{rgb}{0.912,0.590,0.480}
|
249
|
-
\definecolor{PurpleBlue}{rgb}{0.400,0.200,0.800}
|
250
|
-
\definecolor{LawnGreen}{rgb}{0.488,0.990,0.000}
|
251
|
-
\definecolor{BlanchedAlmond}{rgb}{1.000,0.920,0.804}
|
192
|
+
\definecolor{CadetBlue}{rgb}{0.372,0.620,0.628}
|
193
|
+
\definecolor{Cement}{rgb}{0.800,0.800,0.600}
|
194
|
+
\definecolor{Chartreuse}{rgb}{0.498,1.000,0.000}
|
195
|
+
\definecolor{Chiffon}{rgb}{0.980,0.980,0.824}
|
252
196
|
\definecolor{Chocolate}{rgb}{0.824,0.410,0.116}
|
253
|
-
\definecolor{
|
254
|
-
\definecolor{
|
255
|
-
\definecolor{
|
256
|
-
\definecolor{
|
257
|
-
\definecolor{DarkLavender}{rgb}{0.400,0.200,0.600}
|
258
|
-
\definecolor{PapayaWhip}{rgb}{1.000,0.936,0.835}
|
259
|
-
\definecolor{Honeydew}{rgb}{0.940,1.000,0.940}
|
260
|
-
\definecolor{AliceBlue}{rgb}{0.940,0.972,1.000}
|
261
|
-
\definecolor{Tan}{rgb}{0.824,0.705,0.550}
|
262
|
-
\definecolor{LightYellowGreen}{rgb}{0.800,0.800,0.200}
|
263
|
-
\definecolor{MediumSeaGreen}{rgb}{0.235,0.700,0.444}
|
264
|
-
\definecolor{DarkSmoke}{rgb}{0.920,0.920,0.920}
|
265
|
-
\definecolor{Rose}{rgb}{1.000,0.400,0.600}
|
266
|
-
\definecolor{LightCrimson}{rgb}{0.864,0.080,0.235}
|
267
|
-
\definecolor{BrightBlue}{rgb}{0.000,0.400,1.000}
|
268
|
-
\definecolor{Olive}{rgb}{0.500,0.500,0.000}
|
269
|
-
\definecolor{Gold}{rgb}{1.000,0.844,0.000}
|
270
|
-
\definecolor{SkyBlue}{rgb}{0.530,0.808,0.920}
|
271
|
-
\definecolor{LightSandyBrown}{rgb}{1.000,0.800,0.600}
|
197
|
+
\definecolor{Coral}{rgb}{1.000,0.498,0.312}
|
198
|
+
\definecolor{CornflowerBlue}{rgb}{0.392,0.585,0.930}
|
199
|
+
\definecolor{Cornsilk}{rgb}{1.000,0.972,0.864}
|
200
|
+
\definecolor{Crimson}{rgb}{0.800,0.000,0.200}
|
272
201
|
\definecolor{Cyan}{rgb}{0.000,1.000,1.000}
|
273
|
-
\definecolor{
|
274
|
-
\definecolor{
|
275
|
-
\definecolor{
|
276
|
-
\definecolor{
|
277
|
-
\definecolor{Violet}{rgb}{0.932,0.510,0.932}
|
278
|
-
\definecolor{Magenta}{rgb}{1.000,0.000,1.000}
|
279
|
-
\definecolor{DimGray}{rgb}{0.410,0.410,0.410}
|
280
|
-
\definecolor{LightChartreuse}{rgb}{0.800,1.000,0.400}
|
281
|
-
\definecolor{LightGray}{rgb}{0.828,0.828,0.828}
|
282
|
-
\definecolor{CadetBlue}{rgb}{0.372,0.620,0.628}
|
283
|
-
\definecolor{YellowGreen}{rgb}{0.800,0.800,0.000}
|
202
|
+
\definecolor{DarkBlue}{rgb}{0.000,0.000,0.545}
|
203
|
+
\definecolor{DarkChocolate}{rgb}{0.400,0.200,0.000}
|
204
|
+
\definecolor{DarkCyan}{rgb}{0.000,0.545,0.545}
|
205
|
+
\definecolor{DarkGoldenrod}{rgb}{0.720,0.525,0.044}
|
284
206
|
\definecolor{DarkGray}{rgb}{0.664,0.664,0.664}
|
285
|
-
\definecolor{
|
286
|
-
\definecolor{
|
287
|
-
\definecolor{
|
288
|
-
\definecolor{
|
289
|
-
\definecolor{DarkSeaGreen}{rgb}{0.560,0.736,0.560}
|
290
|
-
\definecolor{Blue}{rgb}{0.000,0.000,1.000}
|
291
|
-
\definecolor{LemonChiffon}{rgb}{1.000,0.980,0.804}
|
292
|
-
\definecolor{MediumGreen}{rgb}{0.000,0.600,0.000}
|
293
|
-
\definecolor{PurpleGray}{rgb}{0.600,0.600,0.800}
|
294
|
-
\definecolor{Yellow}{rgb}{1.000,1.000,0.000}
|
295
|
-
\definecolor{Coral}{rgb}{1.000,0.498,0.312}
|
296
|
-
\definecolor{LightOrchid}{rgb}{0.600,0.400,0.800}
|
297
|
-
\definecolor{ForestGreen}{rgb}{0.132,0.545,0.132}
|
298
|
-
\definecolor{MustardSeed}{rgb}{0.800,0.600,0.000}
|
299
|
-
\definecolor{SeaGreen}{rgb}{0.180,0.545,0.340}
|
207
|
+
\definecolor{DarkGreen}{rgb}{0.000,0.392,0.000}
|
208
|
+
\definecolor{DarkGrey}{rgb}{0.664,0.664,0.664}
|
209
|
+
\definecolor{DarkKhaki}{rgb}{0.740,0.716,0.420}
|
210
|
+
\definecolor{DarkLavender}{rgb}{0.400,0.200,0.600}
|
300
211
|
\definecolor{DarkMagenta}{rgb}{0.545,0.000,0.545}
|
301
|
-
\definecolor{
|
302
|
-
\definecolor{
|
303
|
-
\definecolor{
|
304
|
-
\definecolor{
|
305
|
-
\definecolor{
|
212
|
+
\definecolor{DarkOliveGreen}{rgb}{0.332,0.420,0.185}
|
213
|
+
\definecolor{DarkOrange}{rgb}{1.000,0.550,0.000}
|
214
|
+
\definecolor{DarkOrchid}{rgb}{0.600,0.196,0.800}
|
215
|
+
\definecolor{DarkPeriwinkle}{rgb}{0.400,0.400,1.000}
|
216
|
+
\definecolor{DarkPurpleBlue}{rgb}{0.400,0.000,0.800}
|
217
|
+
\definecolor{DarkRed}{rgb}{0.545,0.000,0.000}
|
218
|
+
\definecolor{DarkRoyalBlue}{rgb}{0.000,0.200,0.800}
|
219
|
+
\definecolor{DarkSalmon}{rgb}{0.912,0.590,0.480}
|
220
|
+
\definecolor{DarkSeaGreen}{rgb}{0.560,0.736,0.560}
|
221
|
+
\definecolor{DarkSlateBlue}{rgb}{0.284,0.240,0.545}
|
222
|
+
\definecolor{DarkSlateGray}{rgb}{0.185,0.310,0.310}
|
223
|
+
\definecolor{DarkSlateGrey}{rgb}{0.185,0.310,0.310}
|
224
|
+
\definecolor{DarkSmoke}{rgb}{0.920,0.920,0.920}
|
306
225
|
\definecolor{DarkTurquoise}{rgb}{0.000,0.808,0.820}
|
307
|
-
\definecolor{
|
308
|
-
\definecolor{
|
309
|
-
\definecolor{
|
310
|
-
\definecolor{
|
226
|
+
\definecolor{DarkViolet}{rgb}{0.580,0.000,0.828}
|
227
|
+
\definecolor{DeepPink}{rgb}{1.000,0.080,0.576}
|
228
|
+
\definecolor{DeepSkyBlue}{rgb}{0.000,0.750,1.000}
|
229
|
+
\definecolor{DimGray}{rgb}{0.410,0.410,0.410}
|
230
|
+
\definecolor{DimGrey}{rgb}{0.410,0.410,0.410}
|
231
|
+
\definecolor{DodgerBlue}{rgb}{0.116,0.565,1.000}
|
232
|
+
\definecolor{FireBrick}{rgb}{0.698,0.132,0.132}
|
233
|
+
\definecolor{FloralWhite}{rgb}{1.000,0.980,0.940}
|
234
|
+
\definecolor{ForestGreen}{rgb}{0.132,0.545,0.132}
|
235
|
+
\definecolor{Fuchsia}{rgb}{1.000,0.000,1.000}
|
236
|
+
\definecolor{Gainsboro}{rgb}{0.864,0.864,0.864}
|
237
|
+
\definecolor{GhostWhite}{rgb}{0.972,0.972,1.000}
|
238
|
+
\definecolor{Gold}{rgb}{1.000,0.844,0.000}
|
311
239
|
\definecolor{GoldenBrown}{rgb}{0.600,0.400,0.000}
|
312
|
-
\definecolor{
|
313
|
-
\definecolor{
|
314
|
-
\definecolor{
|
315
|
-
\definecolor{
|
316
|
-
\definecolor{
|
317
|
-
\definecolor{
|
240
|
+
\definecolor{Goldenrod}{rgb}{0.855,0.648,0.125}
|
241
|
+
\definecolor{GrassGreen}{rgb}{0.200,0.600,0.000}
|
242
|
+
\definecolor{Gray}{rgb}{0.500,0.500,0.500}
|
243
|
+
\definecolor{GrayBlue}{rgb}{0.000,0.400,0.600}
|
244
|
+
\definecolor{Green}{rgb}{0.000,0.500,0.000}
|
245
|
+
\definecolor{GreenYellow}{rgb}{0.680,1.000,0.185}
|
246
|
+
\definecolor{Grey}{rgb}{0.500,0.500,0.500}
|
247
|
+
\definecolor{Honeydew}{rgb}{0.940,1.000,0.940}
|
248
|
+
\definecolor{HotPink}{rgb}{1.000,0.410,0.705}
|
249
|
+
\definecolor{IndianRed}{rgb}{0.804,0.360,0.360}
|
250
|
+
\definecolor{Indigo}{rgb}{0.294,0.000,0.510}
|
251
|
+
\definecolor{Ivory}{rgb}{1.000,1.000,0.940}
|
252
|
+
\definecolor{Khaki}{rgb}{0.940,0.900,0.550}
|
318
253
|
\definecolor{Lavender}{rgb}{0.900,0.900,0.980}
|
319
|
-
\definecolor{
|
320
|
-
\definecolor{
|
321
|
-
\definecolor{
|
322
|
-
\definecolor{
|
323
|
-
\definecolor{
|
254
|
+
\definecolor{LavenderBlue}{rgb}{0.400,0.200,1.000}
|
255
|
+
\definecolor{LavenderBlush}{rgb}{1.000,0.940,0.960}
|
256
|
+
\definecolor{LawnGreen}{rgb}{0.488,0.990,0.000}
|
257
|
+
\definecolor{LemonChiffon}{rgb}{1.000,0.980,0.804}
|
258
|
+
\definecolor{LightBlue}{rgb}{0.680,0.848,0.900}
|
259
|
+
\definecolor{LightBrightGreen}{rgb}{0.000,0.800,0.200}
|
260
|
+
\definecolor{LightCoral}{rgb}{0.940,0.500,0.500}
|
261
|
+
\definecolor{LightCrimson}{rgb}{0.864,0.080,0.235}
|
262
|
+
\definecolor{LightCyan}{rgb}{0.880,1.000,1.000}
|
263
|
+
\definecolor{LightDullGreen}{rgb}{0.400,1.000,0.600}
|
264
|
+
\definecolor{LightGold}{rgb}{0.800,0.800,0.400}
|
265
|
+
\definecolor{LightGrassGreen}{rgb}{0.400,1.000,0.400}
|
266
|
+
\definecolor{LightGray}{rgb}{0.828,0.828,0.828}
|
324
267
|
\definecolor{LightGreen}{rgb}{0.565,0.932,0.565}
|
325
|
-
\definecolor{
|
326
|
-
\definecolor{
|
327
|
-
\definecolor{
|
328
|
-
\definecolor{
|
268
|
+
\definecolor{LightGrey}{rgb}{0.828,0.828,0.828}
|
269
|
+
\definecolor{LightMustard}{rgb}{1.000,0.800,0.400}
|
270
|
+
\definecolor{LightOliveGreen}{rgb}{0.600,0.800,0.600}
|
271
|
+
\definecolor{LightOrchid}{rgb}{0.600,0.400,0.800}
|
272
|
+
\definecolor{LightPlum}{rgb}{0.800,0.600,0.800}
|
273
|
+
\definecolor{LightRose}{rgb}{1.000,0.600,0.800}
|
274
|
+
\definecolor{LightSalmon}{rgb}{1.000,0.628,0.480}
|
275
|
+
\definecolor{LightSandyBrown}{rgb}{1.000,0.800,0.600}
|
276
|
+
\definecolor{LightSeaGreen}{rgb}{0.125,0.698,0.668}
|
277
|
+
\definecolor{LightSienna}{rgb}{0.800,0.400,0.000}
|
278
|
+
\definecolor{LightSkyBlue}{rgb}{0.530,0.808,0.980}
|
279
|
+
\definecolor{LightSlateGray}{rgb}{0.468,0.532,0.600}
|
280
|
+
\definecolor{LightSlateGrey}{rgb}{0.468,0.532,0.600}
|
329
281
|
\definecolor{LightSteelBlue}{rgb}{0.690,0.770,0.870}
|
330
|
-
\definecolor{
|
331
|
-
\definecolor{
|
332
|
-
\definecolor{
|
333
|
-
\definecolor{
|
334
|
-
\definecolor{
|
282
|
+
\definecolor{LightTurquoise}{rgb}{0.200,1.000,0.800}
|
283
|
+
\definecolor{LightYellow}{rgb}{1.000,1.000,0.880}
|
284
|
+
\definecolor{LightYellowGreen}{rgb}{0.800,0.800,0.200}
|
285
|
+
\definecolor{Lilac}{rgb}{0.800,0.600,1.000}
|
286
|
+
\definecolor{Lime}{rgb}{0.000,1.000,0.000}
|
287
|
+
\definecolor{LimeGreen}{rgb}{0.196,0.804,0.196}
|
288
|
+
\definecolor{Linen}{rgb}{0.980,0.940,0.900}
|
289
|
+
\definecolor{Magenta}{rgb}{1.000,0.000,1.000}
|
290
|
+
\definecolor{Maroon}{rgb}{0.500,0.000,0.000}
|
291
|
+
\definecolor{Mauve}{rgb}{0.800,0.200,0.400}
|
292
|
+
\definecolor{MediumAquamarine}{rgb}{0.400,0.804,0.668}
|
293
|
+
\definecolor{MediumBlue}{rgb}{0.000,0.000,0.804}
|
294
|
+
\definecolor{MediumGreen}{rgb}{0.000,0.600,0.000}
|
335
295
|
\definecolor{MediumOrange}{rgb}{1.000,0.400,0.000}
|
336
|
-
\definecolor{
|
337
|
-
\definecolor{
|
338
|
-
\definecolor{
|
339
|
-
\definecolor{
|
296
|
+
\definecolor{MediumOrchid}{rgb}{0.730,0.332,0.828}
|
297
|
+
\definecolor{MediumPurple}{rgb}{0.576,0.440,0.860}
|
298
|
+
\definecolor{MediumSeaGreen}{rgb}{0.235,0.700,0.444}
|
299
|
+
\definecolor{MediumSlateBlue}{rgb}{0.484,0.408,0.932}
|
300
|
+
\definecolor{MediumSpringGreen}{rgb}{0.000,0.980,0.604}
|
301
|
+
\definecolor{MediumTurquoise}{rgb}{0.284,0.820,0.800}
|
302
|
+
\definecolor{MediumVioletRed}{rgb}{0.780,0.084,0.520}
|
303
|
+
\definecolor{YellowGreen}{rgb}{0.800,0.800,0.000}
|
304
|
+
\definecolor{MidnightBlue}{rgb}{0.098,0.098,0.440}
|
305
|
+
\definecolor{MintCream}{rgb}{0.960,1.000,0.980}
|
306
|
+
\definecolor{MistyRose}{rgb}{1.000,0.894,0.884}
|
307
|
+
\definecolor{Moccasin}{rgb}{1.000,0.894,0.710}
|
308
|
+
\definecolor{MustardSeed}{rgb}{0.800,0.600,0.000}
|
340
309
|
\definecolor{NavajoWhite}{rgb}{1.000,0.870,0.680}
|
341
|
-
\definecolor{
|
342
|
-
\definecolor{
|
343
|
-
\definecolor{
|
344
|
-
\definecolor{
|
345
|
-
\definecolor{
|
310
|
+
\definecolor{Navy}{rgb}{0.000,0.000,0.500}
|
311
|
+
\definecolor{OldLace}{rgb}{0.992,0.960,0.900}
|
312
|
+
\definecolor{Olive}{rgb}{0.500,0.500,0.000}
|
313
|
+
\definecolor{OliveDrab}{rgb}{0.420,0.556,0.136}
|
314
|
+
\definecolor{Orange}{rgb}{1.000,0.648,0.000}
|
315
|
+
\definecolor{OrangeRed}{rgb}{1.000,0.270,0.000}
|
316
|
+
\definecolor{Orchid}{rgb}{0.855,0.440,0.840}
|
317
|
+
\definecolor{PaleGoldenrod}{rgb}{0.932,0.910,0.668}
|
318
|
+
\definecolor{PaleGreen}{rgb}{0.596,0.985,0.596}
|
319
|
+
\definecolor{PaleTurquoise}{rgb}{0.688,0.932,0.932}
|
320
|
+
\definecolor{PaleVioletRed}{rgb}{0.860,0.440,0.576}
|
321
|
+
\definecolor{PapayaWhip}{rgb}{1.000,0.936,0.835}
|
322
|
+
\definecolor{PeachPuff}{rgb}{1.000,0.855,0.725}
|
346
323
|
\definecolor{Periwinkle}{rgb}{0.600,0.000,1.000}
|
347
|
-
\definecolor{
|
348
|
-
\definecolor{
|
349
|
-
\definecolor{
|
350
|
-
\definecolor{
|
351
|
-
\definecolor{
|
324
|
+
\definecolor{Peru}{rgb}{0.804,0.520,0.248}
|
325
|
+
\definecolor{Pink}{rgb}{1.000,0.752,0.796}
|
326
|
+
\definecolor{Plum}{rgb}{0.868,0.628,0.868}
|
327
|
+
\definecolor{PowderBlue}{rgb}{0.690,0.880,0.900}
|
328
|
+
\definecolor{Pumpkin}{rgb}{1.000,0.600,0.200}
|
329
|
+
\definecolor{Purple}{rgb}{0.500,0.000,0.500}
|
330
|
+
\definecolor{PurpleBlue}{rgb}{0.400,0.200,0.800}
|
331
|
+
\definecolor{PurpleGray}{rgb}{0.600,0.600,0.800}
|
332
|
+
\definecolor{Red}{rgb}{1.000,0.000,0.000}
|
333
|
+
\definecolor{RedBrown}{rgb}{0.800,0.400,0.200}
|
334
|
+
\definecolor{RedOrange}{rgb}{0.800,0.200,0.000}
|
335
|
+
\definecolor{Rose}{rgb}{1.000,0.400,0.600}
|
336
|
+
\definecolor{RosyBrown}{rgb}{0.736,0.560,0.560}
|
352
337
|
\definecolor{RoyalBlue}{rgb}{0.255,0.410,0.884}
|
353
|
-
\definecolor{
|
354
|
-
\definecolor{
|
355
|
-
\definecolor{
|
356
|
-
\definecolor{
|
338
|
+
\definecolor{RoyalPurple}{rgb}{0.400,0.000,0.600}
|
339
|
+
\definecolor{SaddleBrown}{rgb}{0.545,0.270,0.075}
|
340
|
+
\definecolor{LightChartreuse}{rgb}{0.800,1.000,0.400}
|
341
|
+
\definecolor{Saffron}{rgb}{1.000,0.800,0.000}
|
342
|
+
\definecolor{Salmon}{rgb}{0.980,0.500,0.448}
|
343
|
+
\definecolor{SalmonRed}{rgb}{1.000,0.400,0.400}
|
344
|
+
\definecolor{SandyBrown}{rgb}{0.956,0.644,0.376}
|
345
|
+
\definecolor{SeaGreen}{rgb}{0.180,0.545,0.340}
|
346
|
+
\definecolor{Seashell}{rgb}{1.000,0.960,0.932}
|
347
|
+
\definecolor{Sienna}{rgb}{0.628,0.320,0.176}
|
348
|
+
\definecolor{Silver}{rgb}{0.752,0.752,0.752}
|
349
|
+
\definecolor{SkyBlue}{rgb}{0.530,0.808,0.920}
|
350
|
+
\definecolor{SlateBlue}{rgb}{0.415,0.352,0.804}
|
357
351
|
\definecolor{SlateGray}{rgb}{0.440,0.500,0.565}
|
358
|
-
\definecolor{
|
359
|
-
\definecolor{
|
360
|
-
\definecolor{
|
361
|
-
\definecolor{
|
362
|
-
\definecolor{
|
352
|
+
\definecolor{SlateGrey}{rgb}{0.440,0.500,0.565}
|
353
|
+
\definecolor{Smoke}{rgb}{0.950,0.950,0.950}
|
354
|
+
\definecolor{Snow}{rgb}{1.000,0.980,0.980}
|
355
|
+
\definecolor{SoftYellow}{rgb}{1.000,1.000,0.400}
|
356
|
+
\definecolor{SpringGreen}{rgb}{0.000,1.000,0.498}
|
357
|
+
\definecolor{SteelBlue}{rgb}{0.275,0.510,0.705}
|
358
|
+
\definecolor{Tan}{rgb}{0.824,0.705,0.550}
|
359
|
+
\definecolor{Teal}{rgb}{0.000,0.500,0.500}
|
360
|
+
\definecolor{Thistle}{rgb}{0.848,0.750,0.848}
|
361
|
+
\definecolor{Tomato}{rgb}{1.000,0.390,0.280}
|
362
|
+
\definecolor{Turquoise}{rgb}{0.250,0.880,0.815}
|
363
|
+
\definecolor{Violet}{rgb}{0.932,0.510,0.932}
|
364
|
+
\definecolor{WarmGray}{rgb}{0.678,0.660,0.562}
|
363
365
|
\definecolor{Wheat}{rgb}{0.960,0.870,0.700}
|
364
|
-
\definecolor{
|
365
|
-
\definecolor{
|
366
|
-
\definecolor{
|
367
|
-
\definecolor{MintCream}{rgb}{0.960,1.000,0.980}
|
368
|
-
\definecolor{Salmon}{rgb}{0.980,0.500,0.448}
|
366
|
+
\definecolor{White}{rgb}{1.000,1.000,1.000}
|
367
|
+
\definecolor{WhiteSmoke}{rgb}{0.970,0.970,0.970}
|
368
|
+
\definecolor{Yellow}{rgb}{1.000,1.000,0.000}
|
369
369
|
|
370
370
|
End_of_preamble
|
371
371
|
end
|