From 3d573caefedcc114205cef892968f4e17c08258f Mon Sep 17 00:00:00 2001 From: "A.J.Zeller" Date: Sat, 28 Dec 2024 14:38:58 +0800 Subject: [PATCH] docs: add zip and clean cmds --- docs/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/README.md b/docs/README.md index 0f878e5..e3b3b05 100644 --- a/docs/README.md +++ b/docs/README.md @@ -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 +``` \ No newline at end of file