Use braces for title field

This commit is contained in:
Nicolò P 2023-12-25 14:26:43 +01:00
parent 7735d55313
commit 091e5399b5

View File

@ -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" +