typst / hayagriva

Rusty bibliography management.
Apache License 2.0
320 stars 48 forks source link

ISBN not displayed in citation from Bibtex file #159

Closed tkoenig1 closed 5 months ago

tkoenig1 commented 5 months ago

Description

$ cat bar.typ
I like to cite my own books! @mybook @myotherbook

#bibliography("foo.bib")
$ cat foo.bib
@book{mybook,
title="My own book",
author="Me Myself I",
isbn="3-123-45678-9"
}

@book{myotherbook,
title="My other book",
author="I Me Myself",
serial="3-987-654321-0"
}
$ typst compile foo.typ
$ 

does not show ISBN or serial number in the output; the citations read (copied from the generated PDF file)

[1] M. M. I, My own book.
[2] I. M. Myself, My other book.

This is for


$ typst --version
typst 0.11.0 (2bf9f95d)
``

### Reproduction URL

_No response_

### Operating system

Linux

### Typst version

- [X] I am using the latest version of Typst
Enivex commented 5 months ago

Have you verified that the CSL style you're using actually displays the ISBN? Not all fields are shown in all styles

tkoenig1 commented 5 months ago

Have you verified that the CSL style you're using actually displays the ISBN? Not all fields are shown in all styles

I just used defaults out of the box (installed on Ubuntu via snap). Full source, as far as I know how to, is shown.

If there's any more configuration info you need, please let me know.

DerDrodt commented 5 months ago

Have you verified that the CSL style you're using actually displays the ISBN? Not all fields are shown in all styles

I just used defaults out of the box (installed on Ubuntu via snap). Full source, as far as I know how to, is shown.

If there's any more configuration info you need, please let me know.

The standard IEEE style does not show the ISBN for any entry. If you want to show it, choose a different style or alter your local CSL file.

This is not a bug.