8000 Merge pull request #1132 from efiring/matplotlibrc_cleanup · matplotlib/matplotlib@477afb7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 477afb7

Browse files
committed
Merge pull request #1132 from efiring/matplotlibrc_cleanup
clean out obsolete matplotlibrc-related bits to close #1123
2 parents 762e966 + 2e84110 commit 477afb7

File tree

3 files changed

+1
-732
lines changed

3 files changed

+1
-732
lines changed

doc/pyplots/matplotlibrc

+1-311
Original file line numberDiff line numberDiff line change
@@ -1,313 +1,3 @@
1-
### MATPLOTLIBRC FORMAT
2-
3-
# This is a sample matplotlib configuration file. It should be placed
4-
# in HOME/.matplotlib/matplotlibrc (unix/linux like systems) and
5-
# C:\Documents and Settings\yourname\.matplotlib (win32 systems)
6-
#
7-
# By default, the installer will overwrite the existing file in the
8-
# install path, so if you want to preserve your's, please move it to
9-
# your HOME dir and set the environment variable if necessary.
10-
#
11-
# This file is best viewed in a editor which supports python mode
12-
# syntax highlighting
13-
#
14-
# Blank lines, or lines starting with a comment symbol, are ignored,
15-
# as are trailing comments. Other lines must have the format
16-
#
17-
# key : val # optional comment
18-
#
19-
# Colors: for the color values below, you can either use
20-
# - a matplotlib color string, such as r, k, or b
21-
# - an rgb tuple, such as (1.0, 0.5, 0.0)
22-
# - a hex string, such as ff00ff (no '#' symbol)
23-
# - a scalar grayscale intensity such as 0.75
24-
# - a legal html color name, eg red, blue, darkslategray
25-
26-
#### CONFIGURATION BEGINS HERE
27-
# the default backend; one of GTK GTKAgg GTKCairo FltkAgg QtAgg TkAgg
28-
# WX WXAgg Agg Cairo GD GDK Paint PS PDF SVG Template
1+
# local matplotlibrc for generating image files in this directory
292
backend : Agg
30-
#maskedarray : False # True to use external maskedarray module
31-
# instead of numpy.ma; this is a temporary
32-
# setting for testing maskedarray.
33-
#interactive : False # see http://matplotlib.sourceforge.net/interactive.html
34-
#toolbar : toolbar2 # None | classic | toolbar2
35-
#timezone : UTC # a pytz timezone string, eg US/Central or Europe/Paris
36-
37-
# Where your matplotlib data lives if you installed to a non-default
38-
# location. This is where the matplotlib fonts, bitmaps, etc reside
39-
#datapath : /home/jdhunter/mpldata
40-
41-
42-
### LINES
43-
# See http://matplotlib.sourceforge.net/matplotlib.lines.html for more
44-
# information on line properties.
45-
#lines.linewidth : 1.0 # line width in points
46-
#lines.linestyle : - # solid line
47-
#lines.color : blue
48-
#lines.marker : None # the default marker
49-
#lines.markeredgewidth : 0.5 # the line width around the marker symbol
50-
#lines.markersize : 6 # markersize, in points
51-
#lines.dash_joinstyle : miter # miter|round|bevel
52-
#lines.dash_capstyle : butt # butt|round|projecting
53-
#lines.solid_joinstyle : miter # miter|round|bevel
54-
#lines.solid_capstyle : projecting # butt|round|projecting
55-
#lines.antialiased : True # render lines in antialised (no jaggies)
56-
57-
### PATCHES
58-
# Patches are graphical objects that fill 2D space, like polygons or
59-
# circles. See
60-
# http://matplotlib.sourceforge.net/matplotlib.patches.html for more
61-
# information on patch properties
62-
#patch.linewidth : 1.0 # edge width in points
63-
#patch.facecolor : blue
64-
#patch.edgecolor : black
65-
#patch.antialiased : True # render patches in antialised (no jaggies)
66-
67-
### FONT
68-
#
69-
# font properties used by text.Text. See
70-
# http://matplotlib.sourceforge.net/matplotlib.font_manager.html for more
71-
# information on font properties. The 6 font properties used for font
72-
# matching are given below with their default values.
73-
#
74-
# The font.family property has five values: 'serif' (e.g. Times),
75-
# 'sans-serif' (e.g. Helvetica), 'cursive' (e.g. Zapf-Chancery),
76-
# 'fantasy' (e.g. Western), and 'monospace' (e.g. Courier). Each of
77-
# these font families has a default list of font names in decreasing
78-
# order of priority associated with them.
79-
#
80-
# The font.style property has three values: normal (or roman), italic
81-
# or oblique. The oblique style will be used for italic, if it is not
82-
# present.
83-
#
84-
# The font.variant property has two values: normal or small-caps. For
85-
# TrueType fonts, which are scalable fonts, small-caps is equivalent
86-
# to using a font size of 'smaller', or about 83% of the current font
87-
# size.
88-
#
89-
# The font.weight property has effectively 13 values: normal, bold,
90-
# bolder, lighter, 100, 200, 300, ..., 900. Normal is the same as
91-
# 400, and bold is 700. bolder and lighter are relative values with
92-
# respect to the current weight.
93-
#
94-
# The font.stretch property has 11 values: ultra-condensed,
95-
# extra-condensed, condensed, semi-condensed, normal, semi-expanded,
96-
# expanded, extra-expanded, ultra-expanded, wider, and narrower. This
97-
# property is not currently implemented.
98-
#
99-
# The font.size property is the default font size for text, given in pts.
100-
# 12pt is the standard value.
101-
#
102-
#font.family : sans-serif
103-
#font.style : normal
104-
#font.variant : normal
105-
#font.weight : medium
106-
#font.stretch : normal
107-
# note that font.size controls default text sizes. To configure
108-
# special text sizes tick labels, axes, labels, title, etc, see the rc
109-
# settings for axes and ticks. Special text sizes can be defined
110-
# relative to font.size, using the following values: xx-small, x-small,
111-
# small, medium, large, x-large, xx-large, larger, or smaller
112-
#font.size : 12.0
113-
#font.serif : Bitstream Vera Serif, New Century Schoolbook, Century Schoolbook L, Utopia, ITC Bookman, Bookman, Nimbus Roman No9 L, Times New Roman, Times, Palatino, Charter, serif
114-
#font.sans-serif : Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif
115-
#font.cursive : Apple Chancery, Textile, Zapf Chancery, Sand, cursive
116-
#font.fantasy : Comic Sans MS, Chicago, Charcoal, Impact, Western, fantasy
117-
#font.monospace : Bitstream Vera Sans Mono, Andale Mono, Nimbus Mono L, Courier New, Courier, Fixed, Terminal, monospace
118-
119-
### TEXT
120-
# text properties used by text.Text. See
121-
# http://matplotlib.sourceforge.net/matplotlib.text.html for more
122-
# information on text properties
123-
124-
#text.color : black
125-
126-
### LaTeX customizations. See http://www.scipy.org/Wiki/Cookbook/Matplotlib/UsingTex
127-
#text.usetex : False # use latex for all text handling. The following fonts
128-
# are supported through the usual rc parameter settings:
129-
# new century schoolbook, bookman, times, palatino,
130-
# zapf chancery, charter, serif, sans-serif, helvetica,
131-
# avant garde, courier, monospace, computer modern roman,
132-
# computer modern sans serif, computer modern typewriter
133-
# If another font is desired which can loaded using the
134-
# LaTeX \usepackage command, please inquire at the
135-
# matplotlib mailing list
136-
#text.latex.unicode : False # use "ucs" and "inputenc" LaTeX packages for handling
137-
# unicode strings.
138-
#text.latex.preamble : # IMPROPER USE OF THIS FEATURE WILL LEAD TO LATEX FAILURES
139-
# AND IS THEREFORE UNSUPPORTED. PLEASE DO NOT ASK FOR HELP
140-
# IF THIS FEATURE DOES NOT DO WHAT YOU EXPECT IT TO.
141-
# preamble is a comma separated list of LaTeX statements
142-
10000 # that are included in the LaTeX document preamble.
143-
# An example:
144-
# text.latex.preamble : \usepackage{bm},\usepackage{euler}
145-
# The following packages are always loaded with usetex, so
146-
# beware of package collisions: color, geometry, graphicx,
147-
# type1cm, textcomp. Adobe Postscript (PSSNFS) font packages
148-
# may also be loaded, depending on your font settings
149-
#text.dvipnghack : False # some versions of dvipng don't handle
150-
# alpha channel properly. Use True to correct and flush
151-
# ~/.matplotlib/tex.cache before testing
152-
#text.markup : 'plain' # Affects how text, such as titles and labels, are
153-
# interpreted by default.
154-
# 'plain': As plain, unformatted text
155-
# 'tex': As TeX-like text. Text between $'s will be
156-
# formatted as a TeX math expression.
157-
# This setting has no effect when text.usetex is True.
158-
# In that case, all text will be sent to TeX for
159-
# processing.
160-
161-
# The following settings allow you to select the fonts in math mode.
162-
# They map from a TeX font name to a fontconfig font pattern.
163-
# These settings are only used if mathtext.fontset is 'custom'.
164-
#mathtext.cal : cursive
165-
#mathtext.rm : serif
166-
#mathtext.tt : monospace
167-
#mathtext.it : serif:italic
168-
#mathtext.bf : serif:bold
169-
#mathtext.sf : sans
170-
#mathtext.fontset : cm # Should be 'cm' (Computer Modern), 'stix',
171-
# 'stixsans' or 'custom'
172-
#mathtext.fallback_to_cm : True # When True, use symbols from the Computer Modern
173-
# fonts when a symbol can not be found in one of
174-
# the custom math fonts.
175-
176-
### AXES
177-
# default face and edge color, default tick sizes,
178-
# default fontsizes for ticklabels, and so on. See
179-
# http://matplotlib.sourceforge.net/matplotlib.axes.html#Axes
180-
#axes.hold : True # whether to clear the axes by default on
181-
#axes.facecolor : white # axes background color
182-
#axes.edgecolor : black # axes edge color
183-
#axes.linewidth : 1.0 # edge linewidth
184-
#axes.grid : False # display grid or not
185-
#axes.titlesize : 14 # fontsize of the axes title
186-
#axes.labelsize : 12 # fontsize of the x any y labels
187-
#axes.labelcolor : black
188-
#axes.axisbelow : False # whether axis gridlines and ticks are below
189-
# the axes elements (lines, text, etc)
190-
#axes.formatter.limits : -7, 7 # use scientific notation if log10
191-
# of the axis range is smaller than the
192-
# first or larger than the second
193-
194-
#polaraxes.grid : True # display grid on polar axes
195-
196-
### TICKS
197-
# see http://matplotlib.sourceforge.net/matplotlib.axis.html#Ticks
198-
#xtick.major.size : 4 # major tick size in points
199-
#xtick.minor.size : 2 # minor tick size in points
200-
#xtick.major.pad : 4 # distance to major tick label in points
201-
#xtick.minor.pad : 4 # distance to the minor tick label in points
202-
#xtick.color : k # color of the tick labels
203-
#xtick.labelsize : 12 # fontsize of the tick labels
204-
#xtick.direction : in # direction: in or out
205-
206-
#ytick.major.size : 4 # major tick size in points
207-
#ytick.minor.size : 2 # minor tick size in points
208-
#ytick.major.pad : 4 # distance to major tick label in points
209-
#ytick.minor.pad : 4 # distance to the minor tick label in points
210-
#ytick.color : k # color of the tick labels
211-
#ytick.labelsize : 12 # fontsize of the tick labels
212-
#ytick.direction : in # direction: in or out
213-
214-
215-
### GRIDS
216-
#grid.color : black # grid color
217-
#grid.linestyle : : # dotted
218-
#grid.linewidth : 0.5 # in points
219-
220-
### Legend
221-
#legend.isaxes : True
222-
#legend.numpoints : 2 # the number of points in the legend line
223-
#legend.fontsize : 14
224-
#legend.pad : 0.2 # the fractional whitespace inside the legend border
225-
#legend.markerscale : 1.0 # the relative size of legend markers vs. original
226-
# the following dimensions are in axes coords
227-
#legend.labelsep : 0.010 # the vertical space between the legend entries
228-
#legend.handlelen : 0.05 # the length of the legend lines
229-
#legend.handletextsep : 0.02 # the space between the legend line and legend text
230-
#legend.axespad : 0.02 # the border between the axes and legend edge
231-
#legend.shadow : False
232-
233-
### FIGURE
234-
# See http://matplotlib.sourceforge.net/matplotlib.figure.html#Figure
2353
figure.figsize : 6, 4 # figure size in inches
236-
#figure.dpi : 80 # figure dots per inch
237-
#figure.facecolor : 0.75 # figure facecolor; 0.75 is scalar gray
238-
#figure.edgecolor : white # figure edgecolor
239-
240-
# The figure subplot parameters. All dimensions are fraction of the
241-
# figure width or height
242-
#figure.subplot.left : 0.15 # the left side of the subplots of the figure
243-
#figure.subplot.right : 0.9 # the right side of the subplots of the figure
244-
#figure.subplot.bottom : 0.15 # the bottom of the subplots of the figure
245-
#figure.subplot.top : 0.9 # the top of the subplots of the figure
246-
#figure.subplot.wspace : 0.2 # the amount of width reserved for blank space between subplots
247-
#figure.subplot.hspace : 0.2 # the amount of height reserved for white space between subplots
248-
249-
#figure.autolayout : False # when True, adjust the axes so that text doesn't overlap
250-
251-
### IMAGES
252-
#image.aspect : equal # equal | auto | a number
253-
#image.interpolation : bilinear # see help(imshow) for options
254-
#image.cmap : jet # gray | jet etc...
255-
#image.lut : 256 # the size of the colormap lookup table
256-
#image.origin : upper # lower | upper
257-
258-
259-
### CONTOUR PLOTS
260-
#contour.negative_linestyle : dashed # dashed | solid
261-
262-
### SAVING FIGURES
263-
# the default savefig params can be different for the GUI backends.
264-
# Eg, you may want a higher resolution, or to make the figure
265-
# background white
266-
#savefig.dpi : 100 # figure dots per inch
267-
#savefig.facecolor : white # figure facecolor when saving
268-
#savefig.edgecolor : white # figure edgecolor when saving
269-
#savefig.format : png # png, ps, pdf, svg
270-
271-
# tk backend params
272-
#tk.window_focus : False # Maintain shell focus for TkAgg
273-
#tk.pythoninspect : False # tk sets PYTHONINSEPCT
274-
275-
# ps backend params
276-
#ps.papersize : letter # auto, letter, legal, ledger, A0-A10, B0-B10
277-
#ps.useafm : False # use of afm fonts, results in small files
278-
#ps.usedistiller : False # can be: None, ghostscript or xpdf
279-
# Experimental: may produce smaller files.
280-
# xpdf intended for production of publication quality files,
281-
# but requires ghostscript, xpdf and ps2eps
282-
#ps.distiller.res : 6000 # dpi
283-
#ps.fonttype : 3 # Output Type 3 (Type3) or Type 42 (TrueType)
284-
285-
# pdf backend params
286-
#pdf.compression : 6 # integer from 0 to 9
287-
# 0 disables compression (good for debugging)
288-
#pdf.fonttype : 3 # Output Type 3 (Type3) or Type 42 (TrueType)
289-
290-
# svg backend params
291-
#svg.image_inline : True # write raster image data directly into the svg file
292-
#svg.image_noscale : False # suppress scaling of raster data embedded in SVG
293-
#svg.embed_chars : True # embed character outlines in the SVG file
294-
295-
# Set the verbose flags. This controls how much information
296-
# matplotlib gives you at runtime and where it goes. The verbosity
297-
# levels are: silent, helpful, debug, debug-annoying. Any level is
298-
# inclusive of all the levels below it. If you setting is debug,
299-
# you'll get all the debug and helpful messages. When submitting
300-
# problems to the mailing-list, please set verbose to helpful or debug
301-
# and paste the output into your report.
302-
#
303-
# The fileo gives the destination for any calls to verbose.report.
304-
# These objects can a filename, or a filehandle like sys.stdout.
305-
#
306-
# You can override the rc default verbosity from the command line by
307-
# giving the flags --verbose-LEVEL where LEVEL is one of the legal
308-
# levels, eg --verbose-helpful.
309-
#
310-
# You can access the verbose instance in your code
311-
# from matplotlib import verbose.
312-
#verbose.level : silent # one of silent, helpful, debug, debug-annoying
313-
#verbose.fileo : sys.stdout # a log filename, sys.stdout or sys.stderr

0 commit comments

Comments
 (0)
0