Hi, I’m writing a research in typst and I have encountered this problem: the Bibliography entries at the end of the document are numbered. Is there any possibility to remove completely the numbering. Thanks in advance!
Hi, welcome to the forum!
I guess this is controlled by the biliography style. What’s your current choice?
Do you want to change it to author-date?
Hi! No it’s not for the style of the citation but rather at the end of the document where all the articles and books cited are.
I want to remove these numbers but I didn’t find a solution anywhere unfortunately only different ways to change that
Is this what you want? If so, the trick is that most bibliography styles use grid. See How to manually correct the format of bibliography (for ~60% styles)? - #2 by Y.D.X for details.
#show bibliography: it => {
show grid.cell.where(x: 0): none
it
}
#bibliography("ref.bib")
However, I still don’t understand why you want this. After deleting the numbers, how do you cite the work in the main text?
2 Likes
Thank you very much! I didn’t see that post earlier in my research! Have a nice day

