File tree Expand file tree Collapse file tree 4 files changed +43
-0
lines changed
Expand file tree Collapse file tree 4 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Build LaTeX document
2+ on : [push, pull_request]
3+ jobs :
4+ build_latex :
5+ runs-on : ubuntu-latest
6+ steps :
7+ - name : Set up Git repository
8+ uses : actions/checkout@v2
9+
10+ - name : Compile LaTeX document
11+ uses : xu-cheng/texlive-action/full@v1
12+ with :
13+ run : |
14+ cd src
15+ latexmk
16+
17+ - name : Upload document
18+ uses : actions/upload-artifact@v2
19+ with :
20+ name : PDF
21+ path : src/main.pdf
Original file line number Diff line number Diff line change 1+ $pdf_mode = 4;
2+ @default_files = (' main.tex' );
3+ $clean_ext = " bbl nav out snm run.xml" ;
Original file line number Diff line number Diff line change 1+ \usepackage [T1 ]{fontenc }
2+
3+ \usepackage [backend=biber, style=numeric ]{biblatex }
4+ \addbibresource {Bibliography.bib}
5+
6+ \usepackage {graphicx }
7+ \graphicspath {{Images/}}
8+
9+ \usepackage {amssymb, amsthm, mathtools }
10+
11+ \usepackage {epigraph }
12+
13+ \usepackage {minted }
Original file line number Diff line number Diff line change 1+ \documentclass {scrbook }
2+ \usepackage {config }
3+
4+ \begin {document }
5+ Hello World
6+ \end {document }
You can’t perform that action at this time.
0 commit comments