commit 5a7d15edeccdd27b0844efa439f7661cf4c10ba6
parent dd60e5fb3f4687119513f1740d03261bedcc652a
Author: Antoine Amarilli <a3nm@a3nm.net>
Date: Tue, 21 Sep 2021 23:00:44 +0200
no journals without issues in cv
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/maketex.py b/maketex.py
@@ -201,6 +201,10 @@ if __name__ == '__main__':
# just one publi
if thepubli and publi['id'] != thepubli:
continue
+ name, typ2, url, issue, oa, keywords = getvenue(publi, lang, venuesz)
+ if fmt == 'tex' and typ2 == 'journal' and publi.get('issue', "none") == "none":
+ # in latex, no journal articles without an issue number yet
+ continue
print(fmtdict[fmt](publi, lang, venuesz, authorsz))