mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-14 19:01:51 +01:00
Add publications
This commit is contained in:
23
components/resume/PaperReference.vue
Normal file
23
components/resume/PaperReference.vue
Normal 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>
|
||||||
25
components/resume/sections/Publications.vue
Normal file
25
components/resume/sections/Publications.vue
Normal 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>
|
||||||
@ -4,8 +4,9 @@ export default {
|
|||||||
"certificates": "Certificates",
|
"certificates": "Certificates",
|
||||||
"skills": "Skills",
|
"skills": "Skills",
|
||||||
"other": "Other activities",
|
"other": "Other activities",
|
||||||
|
"publications": "Publications",
|
||||||
"link to certificate": "Link to certificate",
|
"link to certificate": "Link to certificate",
|
||||||
"future": "What will happen?",
|
"future": "What will happen next?",
|
||||||
"like timelines": "I like timelines",
|
"like timelines": "I like timelines",
|
||||||
|
|
||||||
"cv_link": "/cv/cv_xia_en1.pdf",
|
"cv_link": "/cv/cv_xia_en1.pdf",
|
||||||
@ -33,7 +34,7 @@ export default {
|
|||||||
|
|
||||||
"web development": "Web development",
|
"web development": "Web development",
|
||||||
"devops": "DevOps",
|
"devops": "DevOps",
|
||||||
"data analysis": "Data analysis",
|
"data analysis": "Data analysis and machine learning",
|
||||||
"other programming languages": "Other programming languages",
|
"other programming languages": "Other programming languages",
|
||||||
|
|
||||||
|
|
||||||
@ -43,7 +44,7 @@ export default {
|
|||||||
"cs50 ai description": "Problem solving using algorithms based on graphs, statistics, optimization and machine learning.",
|
"cs50 ai description": "Problem solving using algorithms based on graphs, statistics, optimization and machine learning.",
|
||||||
|
|
||||||
|
|
||||||
"pcto toyota": "IT/IS Office, Internship",
|
"pcto toyota": "IT/IS Office Intern",
|
||||||
"pcto toyota description": "Internship organized during high school.",
|
"pcto toyota description": "Internship organized during high school.",
|
||||||
"pcto toyota description list1": "IT support.",
|
"pcto toyota description list1": "IT support.",
|
||||||
"pcto toyota description list2": "Maintenance and setup of network devices.",
|
"pcto toyota description list2": "Maintenance and setup of network devices.",
|
||||||
@ -59,5 +60,9 @@ export default {
|
|||||||
"the Zerynth Studio development environment.",
|
"the Zerynth Studio development environment.",
|
||||||
|
|
||||||
"epfl": "EPFL, Switzerland",
|
"epfl": "EPFL, Switzerland",
|
||||||
"lauzhack description": "24-hour hackathon where my team tackled and was awarded first prize for the challenge proposed by Bristol Myers Squibb on probabilistic time series forecasting."
|
"lauzhack description": "24-hour hackathon where my team tackled and was awarded first prize for the challenge proposed by Bristol Myers Squibb on probabilistic time series forecasting.",
|
||||||
|
|
||||||
|
"under_review": "Under review",
|
||||||
|
"research intern": "Research Intern",
|
||||||
|
"japan": "Japan"
|
||||||
}
|
}
|
||||||
@ -4,6 +4,7 @@ export default {
|
|||||||
"certificates": "Certificati",
|
"certificates": "Certificati",
|
||||||
"skills": "Competenze",
|
"skills": "Competenze",
|
||||||
"other": "Altre attività",
|
"other": "Altre attività",
|
||||||
|
"publications": "Pubblicazioni",
|
||||||
"link to certificate": "Link al certificato",
|
"link to certificate": "Link al certificato",
|
||||||
"future": "Chissà cosa succederà",
|
"future": "Chissà cosa succederà",
|
||||||
"like timelines": "Mi piacciono le linee del tempo",
|
"like timelines": "Mi piacciono le linee del tempo",
|
||||||
@ -33,7 +34,7 @@ export default {
|
|||||||
|
|
||||||
"web development": "Sviluppo web",
|
"web development": "Sviluppo web",
|
||||||
"devops": "DevOps",
|
"devops": "DevOps",
|
||||||
"data analysis": "Data analysis",
|
"data analysis": "Data analysis e machine learning",
|
||||||
"other programming languages": "Altri linguaggi di programmazione",
|
"other programming languages": "Altri linguaggi di programmazione",
|
||||||
|
|
||||||
|
|
||||||
@ -58,5 +59,9 @@ export default {
|
|||||||
"l'ambiente di sviluppo Zerynth Studio.",
|
"l'ambiente di sviluppo Zerynth Studio.",
|
||||||
|
|
||||||
"epfl": "EPFL, Svizzera",
|
"epfl": "EPFL, Svizzera",
|
||||||
"lauzhack description": "Hackathon di 24 ore in cui la mia squadra ha risolto e vinto il primo posto della challenge proposta da Bristol Myers Squibb su predizioni probabilistiche di time series."
|
"lauzhack description": "Hackathon di 24 ore in cui la mia squadra ha risolto e vinto il primo posto della challenge proposta da Bristol Myers Squibb su predizioni probabilistiche di time series.",
|
||||||
|
|
||||||
|
"under_review": "In revisione",
|
||||||
|
"research intern": "Ricercatore tirocinante",
|
||||||
|
"japan": "Giappone"
|
||||||
}
|
}
|
||||||
@ -21,10 +21,11 @@
|
|||||||
<div class="flex flex-col md:flex-row">
|
<div class="flex flex-col md:flex-row">
|
||||||
<div class="w-full md:w-2/3 order-1 md:order-2 md:pl-4 [&>*]:mt-8 first:[&>*]:mt-0">
|
<div class="w-full md:w-2/3 order-1 md:order-2 md:pl-4 [&>*]:mt-8 first:[&>*]:mt-0">
|
||||||
<Education />
|
<Education />
|
||||||
<Certificates />
|
|
||||||
<Work />
|
<Work />
|
||||||
|
<Certificates />
|
||||||
<Skills />
|
<Skills />
|
||||||
<Other />
|
<Other />
|
||||||
|
<Publications />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="w-full md:w-1/3 mt-20 md:mt-0 order-2 md:order-1">
|
<div class="w-full md:w-1/3 mt-20 md:mt-0 order-2 md:order-1">
|
||||||
|
|||||||
Reference in New Issue
Block a user