Skip to content
Snippets Groups Projects
Commit e8b53c19 authored by Michael Kohlhase's avatar Michael Kohlhase
Browse files

first skeleton

parent 2e7bbb15
No related branches found
No related tags found
No related merge requests found
Showing
with 810 additions and 0 deletions
---
layout: post
author: Michael Kohlhase
title: "New KWARC Ph.D. Student: Dennis Müller"
tags:
- announcement
---
We are happy to welcome [Dennis Müller](https://kwarc.info/people/dmueller) to the KWARC group as a new Ph.D. student. Dennis received a Masters degree in Mathematics from Freiburg University and will be working on the [OAF Project](http://kwarc.info/projects/OAF), initially importing the PVS library into MathHub.
---
layout: post
author: Michael Kohlhase
title: OpenDreamKit H2020 Grant accepted by EU
tags:
- announcement
---
We are delighted to announce that the Horizon 2020 proposal ``OpenDreamKit'' was accepted by the European commission:
Project Home page: http://opendreamkit.org/
Starting next Fall and for four years, this project will provide substantial funding to the open source computational mathematics ecosystem, and in particular popular tools such as LinBox, MPIR, Sagemath, GAP, PariGP, LMFDB, Singular, and the IPython/Jupyter interactive computing environment ([more information](https://github.com/OpenDreamKit/OpenDreamKit.github.io/blob/master/_posts/2015-05-15-OpenDreamKit-accepted.md)).
---
layout: post
author: Michael Kohlhase
title: KWARC is recruiting Ph.D. Candidates and PostDocs (multiple Projects)
tags:
- recruiting
---
The KWARC group at Jacobs University Bremen is looking for Ph.D. candidates and PostDocs in multiple MKM-related projects: e.g. OAF, OpenDreamKit (others are in the pipeline)
Jacobs University Bremen is a private, english-speaking research university at the center of Europe (for one plausible definition of center). The KWARC group in research and development in foundations of mathematics, flexiformal knowledge representation for STEM (Science, Technology, Engineering, and Mathematics), flexiformalization, semantics extraction from STEM documents, and knowledge management on this basis.
Candidates interested in the above positions should introduce themselves and inquire for further information by sending email with the usual documents to m.kohlhase@jacobs-university.de
---
layout: post
author: Michael Kohlhase
title: Best Paper Award at CICM tags
tags:
- announcement
---
Mihnea Iancu and Michael Kohlhase received the best paper award at [CICM 2015](http://cicm-conference.org/2015/cicm.php) in Washington DC, USA (MKM/DML tracks) for their paper Math [Literate Knowledge Management via Induced Material](http://kwarc.info/kohlhase/papers/cicm15-induced.pdf)
---
layout: post
author: Michael Kohlhase
title: KWARC is recruiting Ph.D. Candidates and PostDocs (multiple Projects)
tags:
- recruiting
---
The KWARC group at [FAU Erlangen-Nürnberg](http://cs.fau.de) is looking for Ph.D. candidates and PostDocs in multiple MKM-related projects: e.g. OAF, OpenDreamKit (others are in the pipeline)
The KWARC group in research and development in foundations of mathematics, flexiformal knowledge representation for STEM (Science, Technology, Engineering, and Mathematics), flexiformalization, semantics extraction from STEM documents, and knowledge management on this basis.
Candidates interested in the above positions should introduce themselves and inquire for further information by sending email with the usual documents to michael.kohlhase@fau.de
Technical directions on adding a blog post
------------------------------------------
To add a new blog/news/activity post, create a file in this directory, taking
the existing files as examples.
Each post needs some specific parameters:
* **layout** use *post* for a classical post look, or *slides* for md slides
* **title** the title of your post
* **subtitle** (optionnal) a subtitle. It will be adjuncted to your title in the post link and just under the title in the post page
* **location** (optional) a location (especially for workshops, conferences, job openings, etc)
* **author** the author of the post (you don't want to push yourself forward? Just write *the ODK team* or whatever you like
* **date** the date *YYYY/MM/DD*
* **redirect_from** not needed for new posts, this is just the redirect link from old activities pages on the former site
* **tags** a list of tag. The first tag is the *type* of activity (talk, blogpost, workshop, etc). The available tags are in the folder */_tagpages/* you can create news tags by adding a page there and then adding the tag to your post.
This folder contains a page for each *tag* on the website. Tags are used to organize
posts by thematics. The tag system works almost automatically except that we need
to explicitly create a page for each tag we use (due to some limitations of jekyll
gitHub pages).
For each tag, we create a *almost empty* *md* file which only contains:
---
layout: tagpage
tag: my-tag-name
title: My tag Title
class: (optional) either software (appears in yellow), keyword (appears in green), or event (appears in blue)
---
Use the other tag pages as examples.
---
layout: tagpage
tag: blogpost
title: Blogpost
---
---
layout: tagpage
tag: conference
title: Conference
class: event
---
---
layout: tagpage
tag: publication
title: Publication
---
---
layout: tagpage
tag: recruiting
title: Recruiting
---
---
layout: tagpage
tag: release
title: Release
---
---
layout: tagpage
tag: talk
class: event
title: Talk
---
---
layout: tagpage
tag: workshop
title: Workshop
class: event
---
atom.xml 0 → 100644
---
layout: null
---
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>{{ site.title }}</title>
<link href="{{ site.url }}/atom.xml" rel="self"/>
<link href="{{ site.url }}/"/>
<updated>{{ site.time | date_to_xmlschema }}</updated>
<id>{{ site.url }}</id>
<author>
<name>{{ site.author.name }}</name>
<email>{{ site.author.email }}</email>
</author>
{% for post in site.posts %}
<entry>
<title>{{ post.title }}</title>
<link href="{{ site.url }}{{ post.url }}"/>
<updated>{{ post.date | date_to_xmlschema }}</updated>
<id>{{ site.url }}{{ post.id }}</id>
<content type="html">{{ post.content | xml_escape }}</content>
</entry>
{% endfor %}
</feed>
index.md 0 → 100644
---
layout: default
title: Home
---
{% include intro.md %}
## Recent activities
{% for post in site.posts %}
{% if forloop.index < 5 %}
{% include post_link.html %}
{% endif %}
{% endfor %}
[See all activites](/news/posts/)
<p>&copy; {{ site.time | date: '%Y' }}. All rights reserved.</p>
---
layout: default
title: News
source: _posts/
---
{% comment %}
To add a new blog/news post, please create a file in the _posts/
directory, taking the existing files as examples.
{% endcomment %}
<div class="posts">
{% for post in paginator.posts %}
{% include post_link.html %}
{% endfor %}
</div>
{% include pagination.html %}
---
layout: page
title: Project Activites
alltags: True
menu_order: 1
---
{% comment %}
Project activities are generated through the /_posts/ folder
{% endcomment %}
<h2>By tag</h2>
{% assign with_post_numbers = true %}
{% include tags_module.html %}
<div class="tagcloud" >
<span class="tag" ><a class="btn btn-default" href="{{ site.blog_path}}">All activites <span class="badge">{{ site.posts.size }}</span></a></span>
{{ tagscontent }}
</div>
<h2>Most recent activites</h2>
{% for post in site.posts %}
{% if forloop.index < 5 %}
{% include post_link.html %}
{% endif %}
{% endfor %}
<a href="{{ site.blog_path}}">See all</a>
File added
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment