Compare commits

...

2 Commits

Author SHA1 Message Date
ecfffc1fb5 🤖 Hello human, updating CVs 2025-11-18 23:55:26 +00:00
c4e5e63ca0 Update publications 2025-11-19 08:51:02 +09:00
8 changed files with 62 additions and 5 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>{{ conference }}</span>.
<ReferenceLink :doi="doi" :openreview="openreview" />
</div>
</template>
<script setup lang="ts">
const props = defineProps({
title: String,
authors: { type: Array<String>, default: [] },
highlight_author: String,
year: String,
conference: String,
doi: { type: String, default: '' },
openreview: { type: String, default: '' }
});
</script>

View File

@ -5,8 +5,7 @@
</span>. </span>.
({{ props.year }}). "{{ props.title }}". ({{ props.year }}). "{{ props.title }}".
<span class="italic">{{ journal }}</span>. <span class="italic">{{ journal }}</span>.
<span v-if="doi === ''">{{ $t("under_review") }}</span> <ReferenceLink :doi="doi" :openreview="openreview" />
<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> </div>
</template> </template>
@ -18,6 +17,7 @@
highlight_author: String, highlight_author: String,
year: String, year: String,
journal: String, journal: String,
doi: { type: String, default: '' } doi: { type: String, default: '' },
openreview: { type: String, default: '' }
}); });
</script> </script>

View File

@ -0,0 +1,13 @@
<template>
<span v-if="doi === '' && openreview === ''">{{ $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>
<span v-if="openreview !== ''"><span class="font-mono">OpenReview</span>: <a :href="`https://openreview.net/forum?id=${props.openreview}`" class="font-mono hover:underline">{{ props.openreview }}</a>.</span>
</template>
<script setup lang="ts">
const props = defineProps({
doi: { type: String, default: '' },
openreview: { type: String, default: '' }
});
</script>

View File

@ -2,7 +2,26 @@
<div> <div>
<h2 class="text-4xl font-bold tracking-wide">{{ $t("publications") }}</h2> <h2 class="text-4xl font-bold tracking-wide">{{ $t("publications") }}</h2>
<PaperReference
<ConferenceReference
title = "UnitMath: Unit-Aware Numerical Reasoning and Dimensional Consistency for Scientific Table Claims"
:authors = "['AI Scientist', 'Ho, Xanh', 'Xia, Tian Cheng', 'Duong, Khoa', 'Wu, Yun-Ang', 'Nguyen, Ha-Thanh', 'Aizawa, Akiko' ]"
:highlight_author = "highlight_author"
year = "2025"
conference = "Open Conference of AI Agents for Science 2025"
openreview = "cK8YYMc65B" />
<ConferenceReference
title = "Decontextualization, Everywhere: A Systematic Audit on PeerQA"
:authors = "['AI Scientist', 'Ho, Xanh', 'Xia, Tian Cheng', 'Duong, Khoa', 'Wu, Yun-Ang', 'Nguyen, Ha-Thanh', 'Aizawa, Akiko' ]"
:highlight_author = "highlight_author"
year = "2025"
conference = "Open Conference of AI Agents for Science 2025"
openreview = "OG8sFxeNHv" />
<JournalReference
title = "Large Language Models Evaluation for PubMed Extractive Summarisation" title = "Large Language Models Evaluation for PubMed Extractive Summarisation"
:authors = "['Xia, Tian Cheng', 'Bertini, Flavio', 'Montesi, Danilo']" :authors = "['Xia, Tian Cheng', 'Bertini, Flavio', 'Montesi, Danilo']"
:highlight_author = "highlight_author" :highlight_author = "highlight_author"
@ -10,13 +29,15 @@
journal = "ACM Transactions on Computing for Healthcare" journal = "ACM Transactions on Computing for Healthcare"
doi = "10.1145/3766905" /> doi = "10.1145/3766905" />
<PaperReference <JournalReference
title = "The Design and Realization of a Self-Hosted and Open-Source Agile Internal Development Platform" 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']" :authors = "['Ciancarini, Paolo', 'Giancarlo, Raffaele', 'Grimaudo, Gennaro', 'Missiroli, Marcello', 'Xia, Tian Cheng']"
:highlight_author = "highlight_author" :highlight_author = "highlight_author"
year = "2025" year = "2025"
journal = "IEEE Access" journal = "IEEE Access"
doi = "10.1109/ACCESS.2025.3564141" /> doi = "10.1109/ACCESS.2025.3564141" />
</div> </div>
</template> </template>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.