Skip to content

Commit

Permalink
Added a talks section
Browse files Browse the repository at this point in the history
  • Loading branch information
ulfarsson committed May 6, 2019
1 parent b60c243 commit 1816dc2
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 0 deletions.
7 changes: 7 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ collections:
output: true
papers:
output: true
talks:
output: true
programs:
output: true
authors:
Expand All @@ -48,6 +50,11 @@ defaults:
type: "papers"
values:
layout: "paper"
- scope:
path: ""
type: "talks"
values:
layout: "talk"
- scope:
path: ""
type: "programs"
Expand Down
50 changes: 50 additions & 0 deletions _layouts/talk.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<h3>{{ page.venue }}
{% if page.eventpage %}
(<a href="{{ page.eventpage }}">Event page</a>)
{% endif %}</h3>

<p>
{{ page.date | date_to_string }}
</p>
<p>
Presented by
{% assign authorCount = page.authors | size %}
{% if authorCount == 0 %}
No author
{% elsif authorCount == 1 %}
{% assign thisAuthor = page.authors | first %}

{% assign author = site.authors | where: 'short_name', thisAuthor | first %}
<a href="{{site.baseurl}}{{ author.url }}">{{ author.first_name }}</a>

{% elsif authorCount == 2 %}
{% assign thisAuthor = page.authors | first %}
{% assign author = site.authors | where: 'short_name', thisAuthor | first %}
<a href="{{site.baseurl}}{{ author.url }}">{{ author.first_name }}</a> and
{% assign thisAuthor = page.authors | last %}
{% assign author = site.authors | where: 'short_name', thisAuthor | last %}
<a href="{{site.baseurl}}{{ author.url }}">{{ author.first_name }}</a>

{% else %}
{% for thisAuthor in page.authors %}
{% assign gaur = forloop.length | minus: 1 %}
{% if forloop.last %}
and
{% assign author = site.authors | where: 'short_name', thisAuthor | first %}
<a href="{{site.baseurl}}{{ author.url }}">{{ author.first_name }}</a>
{% elsif forloop.index == gaur %}
{% assign author = site.authors | where: 'short_name', thisAuthor | first %}
<a href="{{site.baseurl}}{{ author.url }}">{{ author.first_name }}</a>
{% else %}
{% assign author = site.authors | where: 'short_name', thisAuthor | first %}
<a href="{{site.baseurl}}{{ author.url }}">{{ author.first_name }}</a>,
{% endif %}
{% endfor %}
{% endif %}
</p>

{{ content }}
24 changes: 24 additions & 0 deletions _talks/2019-05-03-icetcs-theory-day.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
title: Combinatorial Exploration

venue: ICE-TCS Theory Day

eventpage: http://icetcs.ru.is/theory-day2019.html

authors:
- ulfarsson

projects:
- combspec
---
![The hard class]({{site.baseurl}}/assets/talks/2019/icetcstheoryday/itd19.png){:align="right" height="200px"}
In combinatorics, mathematicians often prove theorems by
case analysis, reduction to a smaller instance, and other "tricks of
the trade". We have developed a tool, called the CombSpecSearcher,
which automates these methods, and is able to prove results featured
in dozens of research papers. In this talk we will introduce this tool
and apply it to enumerate a particular subset of permutations of
length n.

## Download the slides
- [Slides]({{site.baseurl}}/assets/talks/2019/icetcstheoryday/TheoryDay2019_web.pdf)
Binary file not shown.
Binary file added assets/talks/2019/icetcstheoryday/itd19.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions navigation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
link: /blog.html
- name: Projects
link: /projects.html
- name: Talks
link: /talks.html
- name: Papers
link: /papers.html
- name: Programs
Expand Down
18 changes: 18 additions & 0 deletions talks.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
layout: default
title: Talks
---
<h1>{{ page.title }}</h1>

<ul>
{% assign sorted = site.talks | sort: 'date' | reverse %}
{% for talk in sorted %}
{% if talk.type != 'outside' %}
<li>
<h2><a href="{{site.baseurl}}{{ talk.url }}">{{ talk.title }}</a></h2>
<p>{{ talk.venue }}</p>
<p>{{ talk.excerpt }}</p>
</li>
{% endif %}
{% endfor %}
</ul>

0 comments on commit 1816dc2

Please sign in to comment.