Skip to content

Commit 08c5f5d

Browse files
committed
Add recent puclications; Fix item sorting
1 parent 44a0708 commit 08c5f5d

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

docs/src/components/Publications.astro

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
---
22
import publications from '../data/publications.json';
33
4-
const sortedPublicationsDesc = publications.sort((publication) => publication.year).reverse();
4+
const publicationsWithIndex = publications.map((pub, index) => ({ ...pub, originalIndex: index }));
5+
const sortedPublicationsDesc = publicationsWithIndex.sort((a, b) => {
6+
if (a.year !== b.year) {
7+
return b.year - a.year;
8+
}
9+
return b.originalIndex - a.originalIndex;
10+
});
511
612
---
713
<div class="bg-white py-10" id="publications">

docs/src/data/publications.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,17 @@
4141
"authors": "Till Schallau, Dominik Schmid, Nick Pawlinorz, Harun Teper, Stefan Naujokat, Jian-Jia Chen, Falk Howar",
4242
"year": 2025,
4343
"in": "Intelligent Vehicles (IV 2025)",
44+
"doi": "https://doi.org/10.1109/IV64158.2025.11097740",
45+
"preprintUrl": "https://aqua.cs.tu-dortmund.de/storages/aqua-cs/r/Publications/Schallau2025_Post-hoc_Scenario-based_Testing_of_Automated_Driving_Systems.pdf",
46+
"comment": ""
47+
},
48+
{
49+
"title": "A Qualitative Analysis of the German Road Traffic Regulations (StVO) for Automated Driving",
50+
"authors": "Dominik Schmid, Till Schallau, Nick Pawlinorz, Stefan Naujokat, Robin Philipp, Zhijing Zhu, Falk Howar",
51+
"year": 2025,
52+
"in": "IEEE International Automated Vehicle Validation Conference (IAVVC 2025)",
4453
"doi": null,
45-
"preprintUrl": "",
46-
"comment": "to be published"
54+
"preprintUrl": "https://aqua.cs.tu-dortmund.de/storages/aqua-cs/r/Publications/Schmid2025QualitativeAnalysisGermana_-_A_Qualitative_Analysis_of_the_German_Road_Traffic_Regulations__stvo__for_Automated_Driving.pdf",
55+
"comment": "To be published"
4756
}
4857
]

0 commit comments

Comments
 (0)