Skip to content

Commit

Permalink
updated style
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi0395 committed Oct 13, 2024
1 parent d77328a commit d36575a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/render
Original file line number Diff line number Diff line change
Expand Up @@ -112,11 +112,11 @@ if __name__ == "__main__":
significant = list(map(format_pub, zip(range(len(significant), 0, -1), significant)))
collaboration = list(map(format_pub, zip(range(len(collaboration), 0, -1), collaboration)))

with open("/tex/first_author.tex", "w") as f:
with open("tex/first_author.tex", "w") as f:
f.write("\n\n".join(first))
with open("/tex/significant_author.tex", "w") as f:
with open("tex/significant_author.tex", "w") as f:
f.write("\n\n".join(significant))
with open("/tex/collaboration_author.tex", "w") as f:
with open("tex/collaboration_author.tex", "w") as f:
f.write("\n\n".join(collaboration))

with open("tex/pubs_ref.tex", "w") as f:
Expand Down

0 comments on commit d36575a

Please sign in to comment.