From 797c2d71f3a204382946d34da4bb62eb6c0c8917 Mon Sep 17 00:00:00 2001 From: Jan Heinrich Reimer Date: Mon, 3 Jun 2024 10:48:24 +0200 Subject: [PATCH] Improve publications shortening Signed-off-by: Jan Heinrich Reimer --- layouts/shortcodes/cv/publications.gohtml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/layouts/shortcodes/cv/publications.gohtml b/layouts/shortcodes/cv/publications.gohtml index 099d4f6..ce77fa4 100644 --- a/layouts/shortcodes/cv/publications.gohtml +++ b/layouts/shortcodes/cv/publications.gohtml @@ -91,6 +91,7 @@ {{- $publisher = replace $publisher "Association for Computational Linguistics" "ACL" -}} {{- $publisher = replace $publisher "CEUR Workshop Proceedings" "CEUR.ws" -}} {{- $publisher = replace $publisher "National Institute of Standards and Technology (NIST)" "NIST" -}} + {{- $publisher = replace $publisher "International Joint Conferences on Artificial Intelligence Organization" "IJCAI" -}} {{- $links := index . "a" -}} {{- $linksPaper := where $links "-class" "paper" -}} {{- $linkPaper := "" -}} @@ -148,6 +149,9 @@ {{- with strings.FindRESubmatch "Working Notes Papers of the (CLEF [0-9]{4}) Evaluation Labs" $booktitle 1 -}} {{- $booktitle = index (index . 0) 1 -}} {{- end -}} + {{- with strings.FindRESubmatch "Lernen. Wissen. Daten. Analysen. – (LWDA [0-9]{4})" $booktitle 1 -}} + {{- $booktitle = index (index . 0) 1 -}} + {{- end -}} {{- $series := "" -}} {{- with where $spans "-class" "series" -}} {{- $series = index (index . 0) "#text" -}}