mirror of
https://github.com/NotXia/notxia.github.io.git
synced 2025-12-15 19:22:21 +01:00
Update publications
This commit is contained in:
23
components/resume/paper-reference/ConferenceReference.vue
Normal file
23
components/resume/paper-reference/ConferenceReference.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>{{ 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>
|
||||
Reference in New Issue
Block a user