From 1339517023a7509ece691199e646a0390805f37c Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Tue, 13 Apr 2021 19:57:29 +0200 Subject: [PATCH 1/2] xep.xsl: fix dangling closing curly brace in biblatex's author entry Fixes: 5d186e636204 ("xep.xsl: produce BibLaTeX entry") --- xep.xsl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xep.xsl b/xep.xsl index e9c696f8..016d31ef 100644 --- a/xep.xsl +++ b/xep.xsl @@ -509,8 +509,7 @@ content: "XEP-"; version = {}, type = {XEP}, number = {}, - author = { and -}, + author = { and }, institution = {XMPP Standards Foundation}, url = {https://xmpp.org/extensions/xep-.html}, date = {/}, From 8670200e48169bd30beca3666f7adcda1f533a39 Mon Sep 17 00:00:00 2001 From: Florian Schmaus Date: Tue, 13 Apr 2021 20:02:18 +0200 Subject: [PATCH 2/2] xep.xsl: use proper biblatex name list part ordering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Name lists start with the family name, follow by the given name. See biblatex(.pdf) ยง 2.2.1. --- xep.xsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xep.xsl b/xep.xsl index 016d31ef..fb0b8766 100644 --- a/xep.xsl +++ b/xep.xsl @@ -509,7 +509,7 @@ content: "XEP-"; version = {}, type = {XEP}, number = {}, - author = { and }, + author = {, and }, institution = {XMPP Standards Foundation}, url = {https://xmpp.org/extensions/xep-.html}, date = {/},