Skip to content

Commit

Permalink
Merge pull request #449 from xueruini/dev
Browse files Browse the repository at this point in the history
v6.0.0
  • Loading branch information
xueruini authored Jan 5, 2020
2 parents 0565f4e + 0423e38 commit dd5d2b0
Show file tree
Hide file tree
Showing 139 changed files with 82,253 additions and 2,097 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ about: 报告模板中的 bug

## 编译环境
编译的系统:macOS 10.14 / Windows 10 / Ubuntu 18.04 / Overleaf
TeX 发行版:TeX Live 2019 / MacTeX 2019 / MikTeX 2.9.6753
TeX 发行版:TeX Live 2019 / MacTeX 2019 / MiKTeX 2.9.6753
模板版本:v5.5.2
模板类型:doctor / master / bachelor

Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: build

on:
push:
schedule:
- cron: '0 0 * * *'

jobs:
build:

runs-on: ubuntu-latest
container: danteev/texlive

steps:
- uses: actions/checkout@v1
- name: Test thesis
run: make thesis
- name: Test spine
run: make spine
- name: Test formats
run: make test
- name: Test doc
run: make doc
23 changes: 19 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
## distribution files
.DS_Store
package-lock.json
node_modules/
dist/

## generated files:
dtx-style.sty
thuthesis.cls
thuthesis.cfg
thuthesis.pdf
main.pdf
shuji.pdf
spine.pdf
*.hd

## test files:
build/
testfiles/**/*.pdf

## Core latex/pdflatex auxiliary files:
*.aux
*.lof
Expand All @@ -24,6 +29,10 @@ shuji.pdf
*.cb
*.cb2
.*.lb
!testfiles/**/*.aux
!testfiles/**/*.toc
!testfiles/**/*.lof
!testfiles/**/*.lot

## Intermediate documents:
*.dvi
Expand Down Expand Up @@ -123,6 +132,9 @@ acs-*.bib
*.gls
*.glsdefs

# uncomment this for glossaries-extra (will ignore makeindex's style files!)
# *.ist

# gnuplottex
*-gnuplottex-*

Expand Down Expand Up @@ -150,11 +162,13 @@ acs-*.bib
# listings
*.lol

# luatexja-ruby
*.ltjruby

# makeidx
*.idx
*.ilg
*.ind
*.ist

# minitoc
*.maf
Expand Down Expand Up @@ -234,8 +248,9 @@ pythontex-files-*/
# xindy
*.xdy

# xypic precompiled matrices
# xypic precompiled matrices and outlines
*.xyc
*.xyd

# endfloat
*.ttt
Expand Down
44 changes: 0 additions & 44 deletions .travis.yml

This file was deleted.

54 changes: 54 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"latex-workshop.intellisense.package.enabled": true,
"latex-workshop.intellisense.unimathsymbols.enabled": true,
"latex-workshop.latex.recipes": [
{
"name": "latexmk for thuthesis",
"tools": [
"xetex-thuthesis",
"latexmk-xelatex"
]
},
{
"name": "make thesis",
"tools": [
"make-thesis"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "xetex-thuthesis",
"command": "xetex",
"args": [
"-file-line-error",
"-halt-on-error",
"-interaction=nonstopmode",
"thuthesis.ins"
],
"env": {}
},
{
"name": "latexmk-xelatex",
"command": "latexmk",
"args": [
"-xelatex",
"-file-line-error",
"-halt-on-error",
"-interaction=nonstopmode",
"-synctex=1",
"-pv-",
"-pvc-",
"-outdir=%OUTDIR%",
"%DOC%"
],
"env": {}
},
{
"name": "make-thesis",
"command": "make",
"args": [],
"env": {}
}
]
}
Loading

0 comments on commit dd5d2b0

Please sign in to comment.