Skip to content

Commit

Permalink
Init
Browse files Browse the repository at this point in the history
  • Loading branch information
guanyingc committed Nov 18, 2021
0 parents commit c900bed
Show file tree
Hide file tree
Showing 9 changed files with 3,063 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
egpaper_for_review.pdf
supplementary.pdf
backup/
*.blg
*.bbl
*.brf
*.blg
*.bbl
*.dvi
*.aux
*.out
*.log
*.dvi
*.nav
*.snm
*.toc
*.vrb
*.out
draft.txt
*.nav
*.snm
*.toc
*.zip
*.fdb_latexmk
*.fls
.DS_Store
*.gz
.exrc
52 changes: 52 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
#########################################################################
# File Name: Makefile
# Author: GoYchen
# mail: [email protected]
# Created Time: Thu 05 Nov 2015 08:52:42 AM CST
#########################################################################

src = PaperForReview
#default language: English, compile with pdflatex
pdf:
pdflatex $(src).tex
#chinese compile with xelatex
toc:
pdflatex $(src).tex
pdflatex $(src).tex
ch:
xelatex $(src).tex
#open pdf
show:
xdg-open $(src).pdf
mshow:
open -a skim $(src).pdf
macshow:
open $(src).pdf
# contain citation
bib:
pdflatex $(src).tex
bibtex $(src).aux
pdflatex $(src).tex
pdflatex $(src).tex
#chinese article contain citation
chbib:
xelatex $(src).tex
bibtex $(src).aux
xelatex $(src).tex
xelatex $(src).tex
dvi:
latex $(src).tex
xdvi $(src).dvi
sup:
pdflatex $(sup).tex
supshow:
xdg-open $(sup).pdf
supbib:
pdflatex $(sup).tex
bibtex $(sup).aux
pdflatex $(sup).tex
pdflatex $(sup).tex
concat:
pdftk ${src}.pdf ${sup}.pdf cat output ${src}_sup.pdf
clean:
rm -f *.aux *.log *.blg *.dvi *.nav *.out *.snm *.toc *.brf
Loading

0 comments on commit c900bed

Please sign in to comment.