Page 1 of 1

How to fix that problem with bibtex references?

Posted: Sun Jun 20, 2021 6:50 am
by domino
Hi everyone! I'm trying to find out how I could fix that issue I have whith my bibtex references. This is how my references appear in Bookends and in my bibtex references section once my document compiled :

Code: Select all

originalyear={,
métapsychologieBook2021-05-01o0Introduction à la métapsychologie freudienne 9185 k,
Any idea?
Thank you so much for your help!

Re: How to fix that problem with bibtex references?

Posted: Sun Jun 20, 2021 7:56 am
by Jon
It looks like you modified the BibTeX format. Without seeing what you did it's impossible to say what is wrong.

Jon
Sonny Software

Re: How to fix that problem with bibtex references?

Posted: Sun Jun 20, 2021 8:36 am
by domino
This is my bibtex format for Book reference:

Code: Select all

`@Book{`u1`,`$
author = $`{`a`}`, $
title = $`{`t`}`, $
volume = $`{`v`}`, $
pages = $`{`p-`}`, $
editor = $`{`e`}`, $
publisher = $`{`u`}`, $
address = $`{`l`}`, $
year = $`{`d`}`, $
originalyear=$`{`u11}`,
`keywords = {`k`},
}`

Re: How to fix that problem with bibtex references?

Posted: Sun Jun 20, 2021 11:17 am
by domino
Problem solved, but I had to reinitialize my bibtex format. I don't know why those changes emerged.No matter, Bookends is terrific!

Re: How to fix that problem with bibtex references?

Posted: Sun Jun 20, 2021 2:51 pm
by Jon
You have unmatched `characters. BibTeX output is tricky, you need to pay careful attention to the details our it won't work.

See if this works better for you

`@Book{`u1`,`$
author = $`{`a`}`, $
title = $`{`t`}`, $
volume = $`{`v`}`, $
pages = $`{`p-`}`, $
editor = $`{`e`}`, $
publisher = $`{`u`}`, $
address = $`{`l`}`, $
year = $`{`d`}`, $
originalyear=$`{`u11`}`,
`keywords = {`k`}}`¬

Jon
Sonny Software