Skip to content

Commit

Permalink
Merge pull request #374 from PaulTalbot-INL/make_manual_windows
Browse files Browse the repository at this point in the history
manual creation script for Windows
  • Loading branch information
GabrielSoto-INL authored Jul 24, 2024
2 parents 2d8ac23 + 304275d commit 61e1ef8
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
25 changes: 25 additions & 0 deletions doc/user_manual/make_win.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/bin/bash

declare -a files=(heron_user_manual)

clean_files() {
rm -rf build pdf
}

gen_files () {
./script/copy_tex.sh
python script/generate_user_manual.py
cd build
for file in "${files[@]}"
do
pdflatex -interaction=nonstopmode $file.tex
pdflatex -interaction=nonstopmode $file.tex
pdflatex -interaction=nonstopmode $file.tex
done
cd ../
cp -f build/HERON_user_manual.pdf pdf/

}

clean_files
gen_files
1 change: 1 addition & 0 deletions doc/user_manual/src/HERON_user_manual.tex
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
\usepackage{xcolor} % Using xcolor for more robust color specification
\usepackage{ifthen} % For simple checking in newcommand blocks
\usepackage{textcomp}
\usepackage{xurl}

% increase allowable depth of itemize lists
% - note that as of this writing we need a depth of 5.
Expand Down

0 comments on commit 61e1ef8

Please sign in to comment.