Skip to content

Commit 1c51388

Browse files
committedJan 2, 2016
Initial commit
0 parents  commit 1c51388

File tree

2 files changed

+150
-0
lines changed

2 files changed

+150
-0
lines changed
 

‎.gitignore

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
## Core latex/pdflatex auxiliary files:
2+
*.aux
3+
*.lof
4+
*.log
5+
*.lot
6+
*.fls
7+
*.out
8+
*.toc
9+
10+
## Intermediate documents:
11+
*.dvi
12+
*-converted-to.*
13+
# these rules might exclude image files for figures etc.
14+
# *.ps
15+
# *.eps
16+
# *.pdf
17+
18+
## Bibliography auxiliary files (bibtex/biblatex/biber):
19+
*.bbl
20+
*.bcf
21+
*.blg
22+
*-blx.aux
23+
*-blx.bib
24+
*.brf
25+
*.run.xml
26+
27+
## Build tool auxiliary files:
28+
*.fdb_latexmk
29+
*.synctex
30+
*.synctex.gz
31+
*.synctex.gz(busy)
32+
*.pdfsync
33+
34+
## Auxiliary and intermediate files from other packages:
35+
36+
# algorithms
37+
*.alg
38+
*.loa
39+
40+
# achemso
41+
acs-*.bib
42+
43+
# amsthm
44+
*.thm
45+
46+
# beamer
47+
*.nav
48+
*.snm
49+
*.vrb
50+
51+
#(e)ledmac/(e)ledpar
52+
*.end
53+
*.[1-9]
54+
*.[1-9][0-9]
55+
*.[1-9][0-9][0-9]
56+
*.[1-9]R
57+
*.[1-9][0-9]R
58+
*.[1-9][0-9][0-9]R
59+
*.eledsec[1-9]
60+
*.eledsec[1-9]R
61+
*.eledsec[1-9][0-9]
62+
*.eledsec[1-9][0-9]R
63+
*.eledsec[1-9][0-9][0-9]
64+
*.eledsec[1-9][0-9][0-9]R
65+
66+
# glossaries
67+
*.acn
68+
*.acr
69+
*.glg
70+
*.glo
71+
*.gls
72+
73+
# gnuplottex
74+
*-gnuplottex-*
75+
76+
# hyperref
77+
*.brf
78+
79+
# knitr
80+
*-concordance.tex
81+
*.tikz
82+
*-tikzDictionary
83+
84+
# listings
85+
*.lol
86+
87+
# makeidx
88+
*.idx
89+
*.ilg
90+
*.ind
91+
*.ist
92+
93+
# minitoc
94+
*.maf
95+
*.mtc
96+
*.mtc0
97+
98+
# minted
99+
_minted*
100+
*.pyg
101+
102+
# morewrites
103+
*.mw
104+
105+
# nomencl
106+
*.nlo
107+
108+
# sagetex
109+
*.sagetex.sage
110+
*.sagetex.py
111+
*.sagetex.scmd
112+
113+
# sympy
114+
*.sout
115+
*.sympy
116+
sympy-plots-for-*.tex/
117+
118+
# todonotes
119+
*.tdo
120+
121+
# xindy
122+
*.xdy
123+
124+
# WinEdt
125+
*.bak
126+
*.sav

‎LICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
Copyright (c) 2016, Kazuki Maeda
2+
All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are met:
6+
7+
* Redistributions of source code must retain the above copyright notice, this
8+
list of conditions and the following disclaimer.
9+
10+
* Redistributions in binary form must reproduce the above copyright notice,
11+
this list of conditions and the following disclaimer in the documentation
12+
and/or other materials provided with the distribution.
13+
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
15+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
18+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24+

0 commit comments

Comments
 (0)
Please sign in to comment.