biblatex icon indicating copy to clipboard operation
biblatex copied to clipboard

Some fields are missing in bibliography when using a BibLaTeX file

Open maucejo opened this issue 1 month ago • 0 comments

Hi all,

I am facing a problem when importing my bibliography, since some fields are not displayed when it is in *bib format, while they are displayed when it is in the *yml format.

To illustrate the problem I am facing, let’s take the following *bib and *yml files.

% biblio.bib
@phdthesis{Auc07,
  author  = {M. Aucejo},
  title   = {Vibro-acoustique des structures immergées sous écoulement turbulent},
  type = {Thèse de doctorat},
  school  = {Insa de Lyon},
  year    = {2007}
}

// biblio.yml
Auc07:
  type: thesis
  title: Vibro-acoustique des structures immergées sous écoulement turbulent
  author: M. Aucejo
  genre: Thèse de doctorat
  publisher: Insa de Lyon
  date: 2007

// Note that I have to put the school name in the publisher field, since the field organization doesn't display

Here are the results. For the *bib file

@Auc07

#bibliography("biblio.bib/yml")

Image

For the *.yml file

Image

As you can see, when using the *bib file some information is missing and I don’t figure out why. So, I suspect that these fields are not parsed, but I don't know Rust enough to propose a PR.

Thank you.

maucejo avatar Jan 24 '25 12:01 maucejo