BibTeX, biblatex and biber ⇒ Custom style bibliography
-
- Posts: 4
- Joined: Sat May 20, 2023 10:32 am
Custom style bibliography
Vergara-Buenaventura, A. and Castro-Ruiz, C. (2020). Use of mouthwashes
against covid-19 in dentistry. British Journal of Oral and Maxillofacial
Surgery 58:924–927.
I want to add period after the name of journal. How should I edit stylefile ( .BST file) to include period at theend of journal name.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Custom style bibliography
If you really want that, you can find the function "article" in your BST file and there should be a line that says something like
Code: Select all
"journal" bibinfo.checkadd.blank
Code: Select all
journal " " *
Code: Select all
add.period$ write$
Note that BibTeX is a stack-based language, meaning doing something like 2 + 2 = 4 would be coded as "2 2 + write$ newline$"; similarly, writing "hello, world!" could be coded as ' "hello" " " * "world" * "!" * write$ newline$' or perhaps '"hello" " " "world" "!" * * * write$ newline$'
If it needs to be more complicated than that or you have trouble, check out
