1 parent f5655e0 commit 0983872Copy full SHA for 0983872
1 file changed
wenxian/reference.py
@@ -100,6 +100,8 @@ def journal_abbr(self) -> str | None:
100
# special case
101
journal_title = journal_title.replace("Npj", "npj")
102
abbr = abbreviator(journal_title, remove_part=True)
103
+ # remove slash in the abbr
104
+ abbr = abbr.replace("/", "")
105
# workaround to fix the missing E, e.g. Phys. Rev. E
106
# https://github.com/pierre-24/pyiso4/issues/13
107
# Example: 10.1103/PhysRevE.108.055310
0 commit comments