Is there a way to preserve the citation key when importing using BibTex? This is pretty important for me so I don't have to rewrite reams of citations that I'm processing with pandoc-citeproc.
It's actually easiest to just install Better BibTeX and import the first sample as-is I think. You'll see how it ends up in the UI, I think that will make things clearer. So you can just import
@book{Latour:1993, Author = "Latour, Bruno", Date-Added = "2019-07-23 18:06:52 -0400", Date-Modified = "2019-07-23 18:07:39 -0400", Keywords = "Philosophy ; STS ; ANT", Publisher = "Harvard University Press", Title = "We have never been modern.", Year = "1993" }
after installation of BBT. No need to change anything about the bibtex you import.
@book{Latour:1993,
Author = "Latour, Bruno",
Date-Added = "2019-07-23 18:06:52 -0400",
Date-Modified = "2019-07-23 18:07:39 -0400",
Keywords = "Philosophy ; STS ; ANT",
Publisher = "Harvard University Press",
Title = "We have never been modern.",
Year = "1993"
}
So I would need it to look like this?
@book{Latour:1993,
Author = "Latour, Bruno",
Date-Added = "2019-07-23 18:06:52 -0400",
Date-Modified = "2019-07-23 18:07:39 -0400",
Keywords = "Philosophy ; STS ; ANT",
Publisher = "Harvard University Press",
Title = "We have never been modern.",
Year = "1993",
Citation-Key = "Latour:1993"
}
@book{Latour:1993,
Author = "Latour, Bruno",
Date-Added = "2019-07-23 18:06:52 -0400",
Date-Modified = "2019-07-23 18:07:39 -0400",
Keywords = "Philosophy ; STS ; ANT",
Publisher = "Harvard University Press",
Title = "We have never been modern.",
Year = "1993"
}
after installation of BBT. No need to change anything about the bibtex you import.