Skip to content

Commit e2a997d

Browse files
committed
Generate selected publications
1 parent 61c3b09 commit e2a997d

File tree

10 files changed

+75
-11
lines changed

10 files changed

+75
-11
lines changed

_conferences/aire25.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/aire25
44
title: "Beyond Retrieval: A Study of Using LLM Ensembles for Candidate Filtering in Requirements Traceability"
55
description:
66
publication: fuchss_beyond_2025
7+
featured: true
8+
year: 2025
9+
pub_short_name: "AIRE 2025"
710
authors:
811
- dominik_fuchss
912
- stefan_schwedt

_conferences/ecsa21.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/ecsa21
44
title: Trace Link Recovery for Software Architecture Documentation
55
description:
66
publication: keim_tracelink_2021
7+
featured: true
8+
year: 2021
9+
pub_short_name: "ECSA 2021"
710
authors:
811
- jan_keim
912
- sophie_corallo

_conferences/fg-arch24.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ description:
66
authors:
77
- jan_keim
88
- tobias_hey
9+
featured: true
10+
year: 2024
11+
pub_emoji: "🇩🇪"
12+
pub_prefix_text: "Präsentation auf der Jahrestagung der GI-FG Architekturen 2024"
13+
pub_byline_connector: "von"
914
---
1015

1116
![FGARCH24 Titleslide](/assets/img/approaches/fgarch24-titleslide.png){:width="100%" style="background-color: white; border-radius: 8px; padding: 10px; display: block; margin: 0 auto;"}

_conferences/icsa23.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/icsa23
44
title: Detecting Inconsistencies in Software Architecture Documentation Using Traceability Link Recovery
55
description:
66
publication: keim_detecting_2023
7+
featured: true
8+
year: 2023
9+
pub_short_name: "ICSA 2023"
710
authors:
811
- jan_keim
912
- sophie_corallo
@@ -27,6 +30,7 @@ links:
2730
se24_pdf: /assets/pdf/presentation_24_SE_InconsistencyDetection.pdf
2831
additional_presentations:
2932
- name: Software Engineering 2024 (SE24)
33+
short_name: SE24
3034
url: https://se2024.se.jku.at/
3135
---
3236

_conferences/icsa25.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/icsa25
44
title: Enabling Architecture Traceability by LLM-based Architecture Component Name Extraction
55
description:
66
publication: fuchss_enabling_2025
7+
featured: true
8+
year: 2025
9+
pub_short_name: "ICSA 2025"
710
authors:
811
- dominik_fuchss
912
- haoyu_liu
@@ -28,6 +31,7 @@ links:
2831
pdf: /assets/pdf/presentation_icsa25.pdf
2932
additional_presentations:
3033
- name: Software Engineering 2026 (SE26)
34+
short_name: SE26
3135
url: https://se2026.inf.unibe.ch/en/
3236
---
3337

_conferences/icse24.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/icse24
44
title: Recovering Trace Links Between Software Documentation And Code
55
description:
66
publication: keim_recovering_2024
7+
featured: true
8+
year: 2024
9+
pub_short_name: "ICSE 2024"
710
authors:
811
- jan_keim
912
- sophie_corallo
@@ -32,6 +35,7 @@ links:
3235
se25_pdf: /assets/pdf/presentation_25_SE_TransArC.pdf
3336
additional_presentations:
3437
- name: Software Engineering 2025 (SE25)
38+
short_name: SE25
3539
url: https://se2025.sdq.kastel.kit.edu/
3640
---
3741

_conferences/icse25.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/icse25
44
title: "LiSSA: Toward Generic Traceability Link Recovery through Retrieval-Augmented Generation"
55
description:
66
publication: fuchss_lissa_2025
7+
featured: true
8+
year: 2025
9+
pub_short_name: "ICSE 2025"
710
authors:
811
- dominik_fuchss
912
- tobias_hey
@@ -29,6 +32,7 @@ links:
2932
pdf: /assets/pdf/presentation_icse25.pdf
3033
additional_presentations:
3134
- name: Software Engineering 2026 (SE26)
35+
short_name: SE26
3236
url: https://se2026.inf.unibe.ch/en/
3337
---
3438

_conferences/refsq25.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ permalink: /c/refsq25
44
title: "Requirements Traceability Link Recovery via Retrieval-Augmented Generation"
55
description:
66
publication: hey_requirements_2025
7+
featured: true
8+
year: 2025
9+
pub_short_name: "REFSQ 2025"
710
authors:
811
- tobias_hey
912
- dominik_fuchss
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{% assign menu_page = site.pages | where: 'title', 'conferences' | first %}
2+
{% assign sorted_conferences = '' | split: '' %}
3+
{% for child in menu_page.children %}
4+
{% assign conf = site.conferences | where: 'permalink', child.permalink | where: 'featured', true | first %}
5+
{% if conf %}
6+
{% assign sorted_conferences = sorted_conferences | push: conf %}
7+
{% endif %}
8+
{% endfor %}
9+
10+
<sub> The links will lead you to pages that contain details about the corresponding publications </sub>
11+
12+
<ul>
13+
{% for conf in sorted_conferences %}
14+
{% if conf.publication or conf.authors %}
15+
{% assign prefix_text = conf.pub_prefix_text | default: 'Paper at' %}
16+
{% assign byline_connector = conf.pub_byline_connector | default: 'by' %}
17+
<li>
18+
{% if conf.pub_emoji %}{{ conf.pub_emoji }} {% endif -%}
19+
<a href="{{ conf.url | relative_url }}">
20+
{{- prefix_text -}}
21+
{%- if conf.pub_short_name %} {{ conf.pub_short_name }}{% endif -%}
22+
</a>
23+
{%- if conf.additional_presentations %}
24+
with additional presentation{% if conf.additional_presentations.size > 1 %}s{% endif %} at
25+
{% for pres in conf.additional_presentations -%}
26+
<a href="{{ pres.url }}" target="_blank" rel="noopener noreferrer">{{ pres.short_name | default: pres.name }}</a>
27+
{%- unless forloop.last %}, {% endunless -%}
28+
{%- endfor -%}
29+
{%- endif -%}
30+
: "<strong>{{ conf.title }}</strong>"
31+
{% if conf.authors %}
32+
{{ byline_connector }}
33+
{% for author_id in conf.authors -%}
34+
{%- assign author = site.data.authors[author_id] -%}
35+
{{- author.name -}}
36+
{%- unless forloop.last %}, {% endunless -%}
37+
{%- endfor -%}
38+
{%- endif %}
39+
</li>
40+
{% endif %}
41+
{% endfor %}
42+
43+
<li><a href="/initial-poster-2019/">Poster</a> with the initial idea from the ICSA2019 NEMI track.</li>
44+
</ul>

_pages/about.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,4 @@ ARDoCo is actively developed by researchers of the _[Modelling for Continuous So
3030

3131
## Relevant and Recent Publications
3232

33-
<sub> The links will lead you to pages that contain details about the corresponding publications </sub>
34-
35-
- [Paper at AIRE 2025](/c/aire25): "**Beyond Retrieval: A Study of Using LLM Ensembles for Candidate Filtering in Requirements Traceability**" by Dominik Fuchß, Stefan Schwedt, Jan Keim, and Tobias Hey
36-
- [Paper at ICSE 2025 with additional presentation at SE 2026](/c/icse25): "**LiSSA: Toward Generic Traceability Link Recovery through Retrieval-Augmented Generation**" by Dominik Fuchß, Tobias Hey, Jan Keim, Haoyu Liu, Niklas Ewald, Tobias Thirolf, and Anne Koziolek
37-
- [Paper at REFSQ 2025](/c/refsq25): "**Requirements Traceability Link Recovery via Retrieval-Augmented Generation**" by Tobias Hey, Dominik Fuchß, Jan Keim, and Anne Koziolek
38-
- [Paper at ICSA 2025 with additional presentation at SE 2026](/c/icsa25): "**Enabling Architecture Traceability by LLM-based Architecture Component Name Extraction**" by Dominik Fuchß, Haoyu Liu, Tobias Hey, Jan Keim, and Anne Koziolek
39-
- 🇩🇪 [Präsentation auf der Jahrestagung der GI-FG Architekturen 2024](/c/fg-arch24): "**LLM-gestützte Softwarearchitektur: Eine neue Ära?**" von Jan Keim, Tobias Hey
40-
- [Paper at ICSE 2024 with additional presentation at SE25](/c/icse24): "**Recovering Trace Links Between Software Documentation And Code**" by Jan Keim, Sophie Corallo, Dominik Fuchß, Tobias Hey, Tobias Telge, and Anne Koziolek
41-
- [Paper at ICSA 2023 with additional presentation at SE24](/c/icsa23): "**Detecting Inconsistencies in Software Architecture Documentation Using Traceability Link Recovery**" by Jan Keim, Sophie Corallo, Dominik Fuchß, and Anne Koziolek
42-
- [Paper at ECSA 2021](/c/ecsa21): "**Trace Link Recovery for Software Architecture Documentation**" by Jan Keim, Sophie Corallo, Dominik Fuchß, Claudius Kocher, Janek Speit and Anne Koziolek
43-
- [Poster with the initial idea](/initial-poster-2019/) from the ICSA2019 NEMI track.
33+
{% include featured_publications.liquid %}

0 commit comments

Comments
 (0)