mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-14 19:01:51 +01:00
25 lines
1021 B
Vue
25 lines
1021 B
Vue
<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> |