-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update .cls to recent one and clean up structure
- Loading branch information
Showing
29 changed files
with
2,213 additions
and
3,257 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 |
---|---|---|
@@ -1,42 +1,68 @@ | ||
# KAIST Thesis Template | ||
# Description | ||
|
||
KAIST Thesis Template for B.S., M.S., Ph.D graduation. | ||
|
||
## Usage | ||
|
||
1. clone the git repo: | ||
``` | ||
$ git clone [email protected]:0xdkay/kaist-thesis-template.git | ||
``` | ||
|
||
2. build it: | ||
``` sh | ||
$ make | ||
|
||
(check p.pdf) | ||
``` | ||
|
||
3. starting point, p.tex: | ||
``` | ||
$ grep -oP 'input{\K\w+' p.tex | ||
pkgs | ||
macro | ||
abstract | ||
intro | ||
back | ||
anal | ||
accounting | ||
impl | ||
eval | ||
attack | ||
cm | ||
related | ||
concl | ||
summary | ||
ack | ||
cv | ||
``` | ||
### 0. Preprequisite | ||
|
||
### Original Format | ||
``` | ||
https://github.com/tsgates/die | ||
``` | ||
You need to install `textlive-full` before using this package. | ||
|
||
```/bin/bash | ||
$ sudo apt install texlive-full | ||
``` | ||
|
||
### 1. Clone the git repo: | ||
``` | ||
$ git clone [email protected]:0xdkay/kaist-thesis-template.git | ||
``` | ||
|
||
### 2. Build it: | ||
``` sh | ||
$ make | ||
|
||
(check p.pdf) | ||
``` | ||
|
||
### 3. Structure | ||
``` | ||
├── aspell.words # checked spell words for `make spell` | ||
├── bin # helper scripts | ||
│ ├── abbrv.pl | ||
│ ├── aspell.sh | ||
│ ├── diff.sh | ||
│ ├── double.pl | ||
│ ├── get-tex-files.sh | ||
│ ├── hyphens.sh | ||
│ ├── latexrun | ||
│ ├── parse-latex-log.py | ||
│ ├── passive.sh | ||
│ ├── shortmonth.sh | ||
│ └── weasel.sh | ||
├── cmds.tex # handle commands | ||
├── code # folder for program code | ||
│ └── fmt.tex | ||
├── hdr.tex # title, author, advisor, referee, etc | ||
├── tabs # folder for latex tables | ||
├── figs # folder for figures | ||
├── kaist-ucs.cls # KAIST thesis template | ||
├── Makefile | ||
├── pkgs.tex # import latex packages here | ||
├── p.tex | ||
├── README.md | ||
├── refs # folder for references | ||
│ └── p.bib | ||
├── sections # your writing starts here | ||
│ ├── abstract.tex # sample abstract and keywords | ||
│ ├── ack.tex # sample acknoledgement | ||
│ ├── concl.tex | ||
│ ├── cv.tex # sample curriculum vitae | ||
│ ├── intro.tex | ||
│ └── summary.tex # sample abstract and keywords in Korean | ||
└── warning.tex # filtering warnings | ||
``` | ||
|
||
### Original Format | ||
``` | ||
https://github.com/tsgates/die | ||
``` |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.