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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- 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.check
add.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
