Skip to content

Commit

Permalink
Add DOIs to the listed publications.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsaglam committed May 27, 2024
1 parent 2a5deea commit 4733fa3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/components/PublicationLinkComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
<button class="border rounded-sm border-black px-2 mt-1">
PDF
</button>
<i>{{ publicationLink.doi }}</i>
</a>
</div>

Expand Down
15 changes: 10 additions & 5 deletions src/components/PublicationsSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,38 +23,43 @@ 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',
title: 'Automated Detection of AI-Obfuscated Plagiarism in Modeling Assignments',
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',
title: 'How Students Plagiarize Modeling Assignments',
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',
title: 'Token-based plagiarism detection for metamodels',
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'
}
]
</script>
1 change: 1 addition & 0 deletions src/model/publicationsLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ export interface PublicationsLink {
title: string
venue: string
year: number
doi: string
}

0 comments on commit 4733fa3

Please sign in to comment.