Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-28 07:03:08

0001 #!/bin/bash
0002 
0003 #jupyter-nbconvert --to pdf --template hidecode.tplx PHYS\ 1303\ -\ Spring\ 2018\ -\ Problems\ and\ Solutions.ipynb
0004 # Get the root filename
0005 fileroot=$(echo $1 | sed -e 's/\(.*\)\.ipynb/\1/')
0006 jupyter-nbconvert --to latex --template hidecode.tplx "$1"
0007 pdflatex ${fileroot}.tex
0008