On 2012-03-10 00:40, Jed Rothwell wrote:
Publisher = "Third International Conference on Cold Fusion, "Frontiers
of Cold Fusion""
That crashes with an error.
I'm not an expert and can't tell if this will work, but I think you need
to "escape" the double quotes by putting backslashes before them:
"Third International Conference on Cold Fusion, \"Frontiers of Cold
Fusion\""
The reason is that generally double quotes have special meanings in
C-like parsers and programming languages (as string delimiters, usually)
and can't be directly used inside a block of text (string) without extra
characters.
Cheers,
S.A.