Changeset 1e6d9340 in sasview for docs


Ignore:
Timestamp:
Sep 18, 2017 2:20:32 PM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
dfc9604
Parents:
c5cfb20 (diff), 6e546f8 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'ticket-639-katex' of github.com:sasview/sasview into ticket-639-katex

File:
1 edited

Legend:

Unmodified
Added
Removed
  • docs/sphinx-docs/build_sphinx.py

    r0cb184e r6e546f8  
    375375    #TODO: Does it need to be done so many time? 
    376376    def pdflatex(): 
    377         subprocess.call(["pdflatex", "Sasview.tex"], cwd=LATEXDIR) 
     377        subprocess.call(["pdflatex", "SasView.tex"], cwd=LATEXDIR) 
    378378    pdflatex() 
    379379    pdflatex() 
    380380    pdflatex() 
    381     subprocess.call(["makeindex", "-s", "python.ist", "Sasview.idx"], cwd=LATEXDIR) 
     381    subprocess.call(["makeindex", "-s", "python.ist", "SasView.idx"], cwd=LATEXDIR) 
    382382    pdflatex() 
    383383    pdflatex() 
    384384 
    385385    print("=== Copy PDF to HTML Directory ===") 
    386     source = os.path.join(LATEXDIR, "Sasview.pdf") 
    387     target = os.path.join(SASVIEW_DOCS, "Sasview.pdf") 
     386    source = os.path.join(LATEXDIR, "SasView.pdf") 
     387    target = os.path.join(SASVIEW_DOCS, "SasView.pdf") 
    388388    shutil.copyfile(source, target) 
    389389 
     
    439439    apidoc() 
    440440    build() 
    441     #if find_executable('latex'): 
    442     build_pdf() 
     441    if find_executable('latex'): 
     442        build_pdf() 
    443443    #convert_katex() 
    444444    #convert_mathjax() 
Note: See TracChangeset for help on using the changeset viewer.