Skip to content

Commit 52bac33

Browse files
authored
Merge pull request #5 from SERG-Delft/use-root-directory
Use root directory to remove binary files from repository
2 parents edd7c1f + 5bb2464 commit 52bac33

35 files changed

+58
-40
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
build/

.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
sudo: required
2+
dist: trusty
3+
before_install:
4+
- sudo apt-get -qq update
5+
- sudo apt-get install -y --no-install-recommends latexmk texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra dvipng texlive-latex-recommended texlive-science
6+
script: make

Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# File: Makefile
2+
SHELL = /bin/bash
3+
PROJECT = thesis
4+
5+
.PHONY = all clean
6+
7+
.PRECIOUS: $(PROJECT).ps
8+
9+
all: pdf
10+
11+
pdf: $(PROJECT).pdf
12+
13+
%.pdf: %.tex Makefile *.tex *.sty
14+
latexmk -bibtex -pdf -interaction=nonstopmode -halt-on-error -outdir=build $(<)
15+
16+
force:
17+
$(MAKE) -W $(PROJECT).tex

README.md

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Official SERG-Delft template master thesis
2+
3+
This repository hosts the source code for the official LateX template for a master thesis at SERG-Delft.
4+
5+
We reccomend you read and follow suggestions from the [LaTeX advice guide](https://github.com/dspinellis/latex-advice).
6+
7+
## Import for ShareLatex
8+
9+
If you would like to import this template into ShareLatex, perform the following steps:
10+
11+
1. Click the green "Clone or download"-button in the top-right corner of https://github.com/SERG-Delft/thesis-template
12+
1. Click "Download ZIP"
13+
1. Log in on https://www.sharelatex.com
14+
1. Click "New Project" in the top-left corner of https://www.sharelatex.com/project
15+
1. Click "Upload Project"
16+
1. Click "Select a .zip file"
17+
1. Select the ZIP you just downloaded
18+
19+
**:warning: Important! :warning:**
20+
21+
ShareLatex does not parse the `*.ps` files in `img/`.
22+
These files should therefore be manually uploaded to the ShareLatex project to have a non-erroring build.
23+
24+
## Build instructions
25+
26+
If you would like to build this project on your local machine, ensure that `texlive-full` is installed.
27+
You can follow the instructions on https://www.tug.org/texlive/quickinstall.html but the TLDR for Debian-based systems is:
28+
29+
```bash
30+
sudo apt-get install texlive-full
31+
sudo apt-get install latexmk
32+
```
33+
34+
Then run `make` and the project should build.

thesis-style/a4.sty a4.sty

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
-188 KB
Binary file not shown.
-73 KB
Binary file not shown.
-188 KB
Binary file not shown.
-73 KB
Binary file not shown.
-188 KB
Binary file not shown.
-73.7 KB
Binary file not shown.
-188 KB
Binary file not shown.
-112 KB
Binary file not shown.
-253 KB
Binary file not shown.
-125 KB
Binary file not shown.
-261 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

thesis-style/lipsum.sty lipsum.sty

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

thesis-style/Makefile

-40
This file was deleted.

thesis-style/thesis.pdf

-115 KB
Binary file not shown.

thesis-style_20160608.pdf

-115 KB
Binary file not shown.

thesis-style_20160608.zip

-155 KB
Binary file not shown.

thesis-style/thesis.bib thesis.bib

File renamed without changes.

thesis-style/thesis.tex thesis.tex

File renamed without changes.

0 commit comments

Comments
 (0)