Skip to content

Commit

Permalink
Merge pull request #5 from SERG-Delft/use-root-directory
Browse files Browse the repository at this point in the history
Use root directory to remove binary files from repository
  • Loading branch information
Inventitech authored Mar 28, 2018
2 parents edd7c1f + 5bb2464 commit 52bac33
Show file tree
Hide file tree
Showing 35 changed files with 58 additions and 40 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
sudo: required
dist: trusty
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y --no-install-recommends latexmk texlive-fonts-recommended texlive-latex-extra texlive-fonts-extra dvipng texlive-latex-recommended texlive-science
script: make
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# File: Makefile
SHELL = /bin/bash
PROJECT = thesis

.PHONY = all clean

.PRECIOUS: $(PROJECT).ps

all: pdf

pdf: $(PROJECT).pdf

%.pdf: %.tex Makefile *.tex *.sty
latexmk -bibtex -pdf -interaction=nonstopmode -halt-on-error -outdir=build $(<)

force:
$(MAKE) -W $(PROJECT).tex
34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Official SERG-Delft template master thesis

This repository hosts the source code for the official LateX template for a master thesis at SERG-Delft.

We reccomend you read and follow suggestions from the [LaTeX advice guide](https://github.com/dspinellis/latex-advice).

## Import for ShareLatex

If you would like to import this template into ShareLatex, perform the following steps:

1. Click the green "Clone or download"-button in the top-right corner of https://github.com/SERG-Delft/thesis-template
1. Click "Download ZIP"
1. Log in on https://www.sharelatex.com
1. Click "New Project" in the top-left corner of https://www.sharelatex.com/project
1. Click "Upload Project"
1. Click "Select a .zip file"
1. Select the ZIP you just downloaded

**:warning: Important! :warning:**

ShareLatex does not parse the `*.ps` files in `img/`.
These files should therefore be manually uploaded to the ShareLatex project to have a non-erroring build.

## Build instructions

If you would like to build this project on your local machine, ensure that `texlive-full` is installed.
You can follow the instructions on https://www.tug.org/texlive/quickinstall.html but the TLDR for Debian-based systems is:

```bash
sudo apt-get install texlive-full
sudo apt-get install latexmk
```

Then run `make` and the project should build.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file removed distributions/thesis-style_20070705.zip
Binary file not shown.
Binary file removed distributions/thesis-style_20080912.pdf
Binary file not shown.
Binary file removed distributions/thesis-style_20080912.zip
Binary file not shown.
Binary file removed distributions/thesis-style_20080915.pdf
Binary file not shown.
Binary file removed distributions/thesis-style_20080915.zip
Binary file not shown.
Binary file removed distributions/thesis-style_20090127.pdf
Binary file not shown.
Binary file removed distributions/thesis-style_20090127.zip
Binary file not shown.
Binary file removed distributions/thesis-style_20141127.pdf
Binary file not shown.
Binary file removed distributions/thesis-style_20141127.zip
Binary file not shown.
Binary file removed distributions/thesis-style_20150422.pdf
Binary file not shown.
Binary file removed distributions/thesis-style_20150422.zip
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
40 changes: 0 additions & 40 deletions thesis-style/Makefile

This file was deleted.

Binary file removed thesis-style/thesis.pdf
Binary file not shown.
Binary file removed thesis-style_20160608.pdf
Binary file not shown.
Binary file removed thesis-style_20160608.zip
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 comments on commit 52bac33

Please sign in to comment.