Source code for derobertis_cv.pltemplates.coauthor

import pyexlatex as pl


[docs] class CoAuthor(pl.Template):
[docs] def __init__(self, author_name: str): self.author_name = author_name self.contents = [pl.NoLineBreak(name) for name in author_name.split(" ")] super().__init__()