diff --git a/src/components/PublicationLinkComponent.vue b/src/components/PublicationLinkComponent.vue
index 3ba8835..66baa14 100644
--- a/src/components/PublicationLinkComponent.vue
+++ b/src/components/PublicationLinkComponent.vue
@@ -10,6 +10,7 @@
+ {{ publicationLink.doi }}
diff --git a/src/components/PublicationsSection.vue b/src/components/PublicationsSection.vue
index 109adaa..a8c4b4e 100644
--- a/src/components/PublicationsSection.vue
+++ b/src/components/PublicationsSection.vue
@@ -23,14 +23,16 @@ const publicationLinks: PublicationsLink[] = [
authors: ['Timur Sağlam', 'Sebastian Hahner', 'Larissa Schmid', 'Erik Burger'],
venue:
'IEEE/ACM 46th International Conference on Software Engineering: Companion Proceedings (ICSE-C ’24)',
- year: 2024
+ year: 2024,
+ doi: '10.1145/3639478.3643074'
},
{
url: 'https://doi.org/10.1145/3597503.3639192',
title: 'Detecting Automatic Software Plagiarism via Token Sequence Normalization',
authors: ['Timur Sağlam', 'Moritz Brödel', 'Larissa Schmid', 'Sebastian Hahner'],
venue: 'IEEE/ACM 46th International Conference on Software Engineering (ICSE ’24)',
- year: 2024
+ year: 2024,
+ doi: '10.1145/3597503.3639192'
},
{
url: 'https://doi.org/10.1145/3639474.3640084',
@@ -38,7 +40,8 @@ const publicationLinks: PublicationsLink[] = [
authors: ['Timur Sağlam', 'Sebastian Hahner', 'Larissa Schmid', 'Erik Burger'],
venue:
'IEEE/ACM 46th International Conference on Software Engineering: Software Engineering Education and Training (ICSE-SEET ’24)',
- year: 2024
+ year: 2024,
+ doi: '10.1145/3639474.3640084'
},
{
url: 'https://doi.org/10.1109/MODELS-C59198.2023.00032',
@@ -46,7 +49,8 @@ const publicationLinks: PublicationsLink[] = [
authors: ['Timur Sağlam', 'Larissa Schmid', 'Sebastian Hahner', 'Erik Burger'],
venue:
'2023 ACM/IEEE International Conference on Model Driven Engineering Languages and Systems Companion (MODELS-C)',
- year: 2023
+ year: 2023,
+ doi: '10.1109/MODELS-C59198.2023.00032'
},
{
url: 'https://doi.org/10.1145/3550356.3556508',
@@ -54,7 +58,8 @@ const publicationLinks: PublicationsLink[] = [
authors: ['Timur Sağlam', 'Sebastian Hahner', 'Jan Willem Wittler', 'Thomas Kühn'],
venue:
'25th International Conference on Model Driven Engineering Languages and Systems: Companion Proceedings',
- year: 2022
+ year: 2022,
+ doi: '10.1145/3550356.3556508'
}
]
diff --git a/src/model/publicationsLink.ts b/src/model/publicationsLink.ts
index e8e9f26..df9df4c 100644
--- a/src/model/publicationsLink.ts
+++ b/src/model/publicationsLink.ts
@@ -4,4 +4,5 @@ export interface PublicationsLink {
title: string
venue: string
year: number
+ doi: string
}