parsing non-standard biblatex entry types #23
-
I noticed that parsebib parses my biblatex "jurisdiction" entry types, but that the bibtex package doesn't seem to; it returns a key not found when using But I don't see any explicit configuration in parsebib for jurisdiction. Any tips so that |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Parsebib just assumes anything following an
So in order to get |
Beta Was this translation helpful? Give feedback.
Parsebib just assumes anything following an
@
sign is an entry type if it's notpreamble
,string
orcomment
.bibtex.el
OTOH sets up a regex matching entry types inbibtex-entry-type
, so anything that doesn't match this regex is not recognised as an entry.bibtex-entry-type
is populated on the basis ofbibtex-BibTeX-entry-alist
orbibtex-biblatex-entry-alist
, depending on the detected dialect. (I don't know howbibtex.el
detects the dialect, except that setting a file-local variable works; there may be other methods as well, I don't know.)So in order to get
jurisdiction
recognised, you'd have to customise the entry types.