Skip to content

Commit

Permalink
docs: add zip and clean cmds
Browse files Browse the repository at this point in the history
  • Loading branch information
A.J.Zeller committed Dec 28, 2024
1 parent 38ceca8 commit 3d573ca
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,22 @@ uv run pandoc --from markdown --to latex -o main.tex --pdf-engine=xelatex main.m
uv run pandoc --from markdown --to latex -o .\submission\main.tex main.md --template=output.tex --biblatex --filter=table_filter.py --bibliography=bibliography.bib --mathjax
```


```powershell
xelatex main
biber main
xelatex main
xelatex main
```


## Clean
```powershell
rm *.aux,*.bbl,*.blg,*.log, *.bcf, *.out,*.run.xml -Force
```

## Zip

```powershell
zip arxiv-submission.zip main.tex arxiv.sty bibliography.bib Flowcharts.pdf main.bbl orcid.pdf
```

0 comments on commit 3d573ca

Please sign in to comment.