I am writing a class file. I am defining a variable for my custom \maketitle like so:
\newcommand*{\comment}[1]{\def\commentname{#1}}
\comment{}
I want to be able to write a list of comments like so:
\comment{
Comment1: this is a comment.
Comment2: this is also a comment.
etc.
}
Then I would like my \maketitle to form a table with each of the comments in a separate row. The table should preferably have a dynamic number of rows so that added comments increase the size of the table.
Is this possible?!

