commit 67a570f515660c0de7c8aae3fff814d0a8e6a179
parent 01a928588628ccfa6f1448d86b72b85583a6596b
Author: Janis Pagel <janis.pagel@ims.uni-stuttgart.de>
Date: Fri, 23 Aug 2019 00:30:23 +0200
Add bachelor thesis
Diffstat:
6 files changed, 19 insertions(+), 20 deletions(-)
diff --git a/_includes/pub/bachelorsthesis.html b/_includes/pub/bachelorsthesis.html
@@ -0,0 +1 @@
+<span class="author">{{ include.p.author | join: ", " }}</span>. <span class="title">{{ include.p.title }}</span>. Bachelor's thesis, <span class="journal">{{ include.p.school }}</span>, <span class="year">{{ include.p.year }}.</span>{% if include.p.status %} (<span class="status">{{ include.p.status }}</span>){% endif %}
diff --git a/_includes/pub/ris.html b/_includes/pub/ris.html
@@ -1,4 +1,4 @@
-TY - {% if include.pub.type == "article" %}JOUR{% elsif include.pub.type == "incollection" %}CHAP{% elsif include.pub.type == "inproceedings" %}CPAPER{% elsif include.pub.type == "mastersthesis" %}THES{% elsif include.pub.type == "phdthesis" %}THES{% endif %}
+TY - {% if include.pub.type == "article" %}JOUR{% elsif include.pub.type == "incollection" %}CHAP{% elsif include.pub.type == "inproceedings" %}CPAPER{% elsif include.pub.type == "bachelorsthesis" %}THES{% elsif include.pub.type == "mastersthesis" %}THES{% elsif include.pub.type == "phdthesis" %}THES{% endif %}
TI - {{ include.pub.title }}
{% for au in include.pub.author %}AU - {{ au }}
{% endfor %}{% for au in include.pub.editor %}ED - {{ au }}
diff --git a/_publications/pagel2015a.md b/_publications/pagel2015a.md
@@ -0,0 +1,15 @@
+---
+layout: pub
+type: bachelorsthesis
+title: "Automatische Belebtheitsklassifikation im Deutschen"
+author:
+- Janis Pagel
+school: Ruhr-University Bochum
+status: unpublished
+year: 2015
+downloads:
+- desc: "thesis"
+ url: /assets/publications/pagel2015a/thesis.pdf
+- desc: "data"
+ url: http://www.sfs.uni-tuebingen.de/ascl/ressourcen/corpora/tueba-dz.html
+---
diff --git a/_publications/pagel2018b.md~ b/_publications/pagel2018b.md~
@@ -1,19 +0,0 @@
----
-layout: pub
-type: mastersthesis
-title: "Rule-based and Learning-based Approaches for Automatic Bridging Detection and Resolution in German"
-author:
-- Janis Pagel
-school: University of Stuttgart
-status: unpublished
-year: 2018
-downloads:
-- desc: "thesis"
- url: /assets/publications/pagel2018b/thesis.pdf
-- desc: "data1"
- url: https://www.ims.uni-stuttgart.de/forschung/ressourcen/korpora/dirndl.en.html
-- desc: "data2"
- url: http://hdl.handle.net/11022/1007-0000-0007-C632-1
-- desc: "code"
- url: https://github.com/InaRoesiger/BridgingSystem/tree/master/German
----
diff --git a/assets/publications/pagel2015a/thesis.pdf b/assets/publications/pagel2015a/thesis.pdf
Binary files differ.
diff --git a/publications/thesis.html b/publications/thesis.html
@@ -8,6 +8,8 @@ menu: "pub/menu.html"
{% assign filtered_publications_phd = site.publications | where:"type", "phdthesis" %}
{% assign filtered_publications_master = site.publications | where:"type", "mastersthesis" %}
+{% assign filtered_publications_bachelor = site.publications | where:"type", "bachelorsthesis" %}
{% include pub/filtered-collection.html publications=filtered_publications_phd showYear=true %}
{% include pub/filtered-collection.html publications=filtered_publications_master showYear=true %}
+{% include pub/filtered-collection.html publications=filtered_publications_bachelor showYear=true %}