Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbb0115 commit f56dd13Copy full SHA for f56dd13
lib/matplotlib/texmanager.py
@@ -263,18 +263,6 @@ def get_custom_preamble(self):
263
"""returns a string containing user additions to the tex preamble"""
264
return '\n'.join(rcParams['text.latex.preamble'])
265
266
- def _get_shell_cmd(self, *args):
267
- """
268
- On windows, changing directories can be complicated by the presence of
269
- multiple drives. get_shell_cmd deals with this issue.
270
271
- if sys.platform == 'win32':
272
- command = ['%s' % os.path.splitdrive(self.texcache)[0]]
273
- else:
274
- command = []
275
- command.extend(args)
276
- return ' && '.join(command)
277
-
278
def make_tex(self, tex, fontsize):
279
"""
280
Generate a tex file to render the tex string at a specific font size
0 commit comments