From 091e5399b5376e3fdf919b4aa1f8e0ef4e5802ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20P?= Date: Mon, 25 Dec 2023 14:26:43 +0100 Subject: [PATCH] Use braces for title field --- Records.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Records.cs b/Records.cs index a2b5c3b..103b93f 100644 --- a/Records.cs +++ b/Records.cs @@ -25,7 +25,7 @@ namespace Txt2Bib.Records { return $"@{Type}" + "{" +$"{Author[0][..5]}_{Year},\n" + $"\tauthor = \"{string.Join(" and ", Author)}\",\n" + - $"\ttitle = \"{Title}\",\n" + + $"\ttitle = {{{Title}}},\n" + $"\tjournal = \"{Journal}\",\n" + $"\tyear = \"{Year}\",\n" + $"\tvolume = \"{Volume}\",\n" +