I'm using Tabulate in order to print data in a table format. I'm trying to figure out whether I could somehow add comments in between rows without any impact on the alignment.
That's how it is:
1. ItemA A: 0 B: 4 C: 8 D: 8 E: 0
2. ItemB A: 0 B: 0 C: 6 D: 0 E: 0
3. ItemC A: 2 B: -3 C: 1 D: 8 E: 0
4. ItemD A: 8 B: 0 C: 5 D: 0 E: 0
I want to turn it to this:
1. ItemA A: 0 B: 4 C: 8 D: 8 E: 0
Some comment
2. ItemB A: 0 B: 0 C: 6 D: 0 E: 0
3. ItemC A: 2 B: -3 C: 1 D: 8 E: 0
Some other very long comment
5. ItemD A: 8 B: 0 C: 5 D: 0 E: 0
If I try to add it as an extra row then it pushes all the elements of the second column, like this:
1. ItemA A: 0 B: 4 C: 8 D: 8 E: 0
Some comment
2. ItemB A: 0 B: 0 C: 6 D: 0 E: 0
3. ItemC A: 2 B: -3 C: 1 D: 8 E: 0
Some other very very long comment
5. ItemD A: 8 B: 0 C: 5 D: 0 E: 0
which I don't want at all
NOTE: There won't be a comment below every row
Thanks for your time!