##// END OF EJS Templates
Improve conversion to latex of output cells...
Improve conversion to latex of output cells Improve the latex convert possibilites of pyout and display_data cells. Detailed changes: - set display_data_priority for latex output to start with 'latex' - use numbered equations - define relative figure size instead of absolute - specify image file position relative to input file position - pyout.text is only rendered if latex representation is not available - place display_data_format_latex output in equation environment - some minor code clean-up

File last commit:

r6230:81978dd7
r8804:70796c14
Show More
work_flow.txt
22 lines | 600 B | text/plain | TextLexer
IPython Development Workflow
# Get a read only copy of the "master"
git clone git://github.com/ipython/nbconvert.git
# Add a copy of the master to your github account
git remote add ocefpaf git@github.com:ocefpaf/nbconvert.git
# Start a new branch to work on
git checkout -b your_new_branch
# Push updates to your local branch to your github branch
git push --set-upstream ocefpaf math_test:math_test
( merging your updated github branch into the master is done via pull-request on the website)
# Delete local branch
git branch -d math_test
# Delete remote branch
git push ocefpaf :math_test