forked from guanyingc/latex_paper_writing_tips
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit c900bed
Showing
9 changed files
with
3,063 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.