Add publications

This commit is contained in:
2025-05-03 10:35:40 +02:00
parent ce1793f8ad
commit 43bd36cad6
5 changed files with 66 additions and 7 deletions

View File

@ -0,0 +1,23 @@
<template>
<div class="md:ml-2 mt-4">
<span v-for="(author, i) in props.authors">
<span :class="`${props.highlight_author == author ? 'font-bold' : ''}`">{{ author }}</span><span v-if="i < props.authors.length-1">; </span>
</span>.
({{ props.year }}). "{{ props.title }}".
<span class="italic">{{ journal }}</span>.
<span v-if="doi === ''">{{ $t("under_review") }}</span>
<span v-if="doi !== ''"><span class="font-mono">DOI</span>: <a :href="`https://doi.org/${props.doi}`" class="font-mono hover:underline">{{ props.doi }}</a></span>.
</div>
</template>
<script setup lang="ts">
const props = defineProps({
title: String,
authors: { type: Array<String>, default: [] },
highlight_author: String,
year: String,
journal: String,
doi: { type: String, default: '' }
});
</script>

View File

@ -0,0 +1,25 @@
<template>
<div>
<h2 class="text-4xl font-bold tracking-wide">{{ $t("publications") }}</h2>
<PaperReference
title = "Large Language Models Evaluation for PubMed Extractive Summarisation"
:authors = "['Xia, Tian Cheng', 'Bertini, Flavio', 'Montesi, Danilo']"
:highlight_author = "highlight_author"
year = "2025"
journal = "ACM Transactions on Computing for Healthcare"
doi = "" />
<PaperReference
title = "The Design and Realization of a Self-Hosted and Open-Source Agile Internal Development Platform"
:authors = "['Ciancarini, Paolo', 'Giancarlo, Raffaele', 'Grimaudo, Gennaro', 'Missiroli, Marcello', 'Xia, Tian Cheng']"
:highlight_author = "highlight_author"
year = "2025"
journal = "IEEE Access"
doi = "10.1109/ACCESS.2025.3564141" />
</div>
</template>
<script setup lang="ts">
const highlight_author = "Xia, Tian Cheng";
</script>