Update publications

This commit is contained in:
2026-03-11 23:25:01 +01:00
parent 1e84da008c
commit 6a0beb29e1
4 changed files with 28 additions and 15 deletions

View File

@@ -3,9 +3,10 @@
<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>.
<ReferenceLink :doi="doi" :openreview="openreview" />
({{ props.year }}).<br/>
"{{ props.title }}".<br/>
<span class="italic">{{ journal }}</span>.<br/>
<ReferenceLink :doi="doi" :openreview="openreview" :arxiv="arxiv" />
</div>
</template>
@@ -18,6 +19,7 @@
year: String,
journal: String,
doi: { type: String, default: '' },
openreview: { type: String, default: '' }
openreview: { type: String, default: '' },
arxiv: { type: String, default: '' }
});
</script>