##// END OF EJS Templates
Merge pull request #1399 from asmeurer/sympyprinting...
Merge pull request #1399 from asmeurer/sympyprinting Use LaTeX to display, on output, various built-in types with the SymPy printing extension. SymPy's latex() function supports printing lists, tuples, and dicts using latex notation (it uses bmatrix, pmatrix, and Bmatrix, respectively). This provides a more unified experience with SymPy functions that return these types (such as solve()). Also display ints, longs, and floats using LaTeX, to get a more unified printing experience (so that, e.g., x/x will print the same as just 1). The string form can always be obtained by manually calling the actual print function, or 2d unicode printing using pprint(). SymPy's latex() function doesn't treat set() or frosenset() correctly presently (see http://code.google.com/p/sympy/issues /detail?id=3062), so for the present, we leave those alone.

File last commit:

r4254:40370377
r6482:ba882bf7 merge
Show More
pycolor.1
39 lines | 1.4 KiB | application/x-troff | GroffLexer
.\" Hey, EMACS: -*- nroff -*-
.\" First parameter, NAME, should be all caps
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
.\" other parameters are allowed: see man(7), man(1)
.TH PYCOLOR 1 "July 15, 2011"
.\" Please adjust this date whenever revising the manpage.
.\"
.\" Some roff macros, for reference:
.\" .nh disable hyphenation
.\" .hy enable hyphenation
.\" .ad l left justify
.\" .ad b justify to both left and right margins
.\" .nf disable filling
.\" .fi enable filling
.\" .br insert line break
.\" .sp <n> insert n+1 empty lines
.\" for manpage-specific macros, see man(7)
.SH NAME
pycolor \- Colorize a python file or stdin using ANSI and print to stdout.
.SH SYNOPSIS
.B pycolor
.RI [ options ]
.RI [ file ]
.SH DESCRIPTION
Prints a colorized version of the input file (or standard input if no file is
given, or the file name - is given) to standard out.
.SH OPTIONS
.TP
.B \-h, \-\-help
Output a brief help message.
.TP
.B \-s, \-\-scheme <scheme>
Give the color scheme to use. Currently only Linux (default), LightBG, and
NoColor are implemented.
.SH AUTHOR
pycolor is part of the IPython project (http://ipython.org).
This manual page was written by Jack Moffitt <jack@xiph.org>,
for the Debian project (but may be used by others). Updated by Fernando Perez
<fernando.perez@berkeley.edu>.