Files
notxia.github.io/components/resume/paper-reference/ConferenceReference.vue
2026-03-11 23:25:01 +01:00

25 lines
855 B
Vue

<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 }}).<br/>
"{{ props.title }}".<br/>
<span>{{ conference }}</span>.<br/>
<ReferenceLink :doi="doi" :openreview="openreview" :arxiv="arxiv" />
</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: '' },
arxiv: { type: String, default: '' }
});
</script>