Research: overhaul authors' names

This commit is contained in:
Théophile Bastian 2022-01-20 12:00:23 +01:00
parent c29b67e181
commit 7e759cb925
4 changed files with 45 additions and 39 deletions

View file

@ -9,42 +9,56 @@ menu:
authors: authors:
tobast: tobast:
name: "T. Bastian" short: "T. Bastian"
name: "Théophile Bastian"
fzn: fzn:
name: "F. Zappa Nardelli" short: "F. Zappa Nardelli"
name: "Francesco Zappa Nardelli"
page: "https://fzn.fr/" page: "https://fzn.fr/"
skell: skell:
name: "S. Kell" short: "S. Kell"
name: "Stephen Kell"
page: "https://www.cs.kent.ac.uk/people/staff/srk21/" page: "https://www.cs.kent.ac.uk/people/staff/srk21/"
jch: jch:
name: "J. Chroboczek" short: "J. Chroboczek"
name: "Juliusz Chroboczek"
page: "https://www.irif.fr/~jch/" page: "https://www.irif.fr/~jch/"
msheeran: msheeran:
name: "M. Sheeran" short: "M. Sheeran"
name: "Mary Sheeran"
page: "http://www.cse.chalmers.se/~ms/" page: "http://www.cse.chalmers.se/~ms/"
cseger: cseger:
name: "C-J. Seger" short: "C-J. Seger"
name: "Carl-Johan Seger"
page: "https://www.chalmers.se/en/Staff/Pages/secarl.aspx" page: "https://www.chalmers.se/en/Staff/Pages/secarl.aspx"
gwinskel: gwinskel:
name: "G. Winskel" short: "G. Winskel"
name: "Glynn Winskel"
page: "https://www.cl.cam.ac.uk/~gw104/" page: "https://www.cl.cam.ac.uk/~gw104/"
pclairambault: pclairambault:
name: "P. Clairambault" short: "P. Clairambault"
name: "Pierre Clairambault"
page: "http://perso.ens-lyon.fr/pierre.clairambault/" page: "http://perso.ens-lyon.fr/pierre.clairambault/"
frastello: frastello:
name: "F. Rastello" short: "F. Rastello"
name: "Fabrice Rastello"
page: "https://team.inria.fr/corse/team-members/fabrice-rastello/" page: "https://team.inria.fr/corse/team-members/fabrice-rastello/"
nderumigny: nderumigny:
name: "N. Derumigny" short: "N. Derumigny"
name: "Nicolas Derumigny"
fgruber: fgruber:
name: "F. Gruber" short: "F. Gruber"
name: "Fabian Gruber"
cguillon: cguillon:
name: "C. Guillon" short: "C. Guillon"
name: "Christophe Guillon"
giooss: giooss:
name: "G. Iooss" short: "G. Iooss"
name: "Guillaume Iooss"
page: "https://guillaume.iooss.fr/" page: "https://guillaume.iooss.fr/"
lnp: lnp:
name: "L.-N. Pouchet" short: "L-N. Pouchet"
name: "Louis-Noël Pouchet"
page: "https://www.cs.colostate.edu/~pouchet/" page: "https://www.cs.colostate.edu/~pouchet/"
@ -78,7 +92,7 @@ publications:
- frastello - frastello
year: 2022 year: 2022
title: "PALMED: Throughput Characterization for Any Architecture" title: "PALMED: Throughput Characterization for Any Architecture"
journal: "preprint, to be published" journal: "preprint, being published"
links: links:
- name: arXiv - name: arXiv
url: "https://arxiv.org/abs/2012.11473" url: "https://arxiv.org/abs/2012.11473"

View file

@ -0,0 +1,8 @@
<span class="author" title="{{ .name }}">
{{- if isset . "page" -}}
<a href="{{ .page }}">{{ .short }}</a>
{{- else -}}
{{- .short -}}
{{- end -}}
</span>
{{- print "" -}}

View file

@ -3,20 +3,12 @@
{{ range sort .Page.Params.publications "year" "desc" }} {{ range sort .Page.Params.publications "year" "desc" }}
<li> <li>
<span class="authors"> <span class="authors">
{{ range .authors }} {{- range .authors }}
{{ $author := . }} {{ $author := . }}
{{ with $authors }} {{- with $authors -}}
{{ with (index . $author) }} {{ partial "research/quote_author.html" (index . $author) }}
<span class="author">
{{- if isset . "page" -}}
<a href="{{ .page }}">{{ .name }}</a>
{{- else -}}
{{ .name -}}
{{- end -}}
</span>
{{- end -}}
{{- end -}} {{- end -}}
{{- end -}} {{ end -}}
</span>. </span>.
<span class="title">{{ .title }}</span> in <span class="title">{{ .title }}</span> in
<span class="journal">{{ .journal }}</span> <span class="journal">{{ .journal }}</span>

View file

@ -5,20 +5,12 @@
<span class="title">{{ .title }}</span>, <span class="title">{{ .title }}</span>,
<span class="freetext">{{ .freetext }}</span>. With <span class="freetext">{{ .freetext }}</span>. With
<span class="authors"> <span class="authors">
{{ range .with }} {{- range .with }}
{{ $author := . }} {{ $author := . }}
{{ with $authors }} {{- with $authors -}}
{{ with (index . $author) }} {{ partial "research/quote_author.html" (index . $author) }}
<span class="author">
{{- if isset . "page" -}}
<a href="{{ .page }}">{{ .name }}</a>
{{- else -}}
{{ .name -}}
{{- end -}}
</span>
{{- end -}}
{{- end -}} {{- end -}}
{{- end -}} {{ end -}}
</span>. </span>.
{{ range .links }} {{ range .links }}