blob: 45e4f0851b048ef0eaeacdd2c7d8648d8d74f17f (
plain)
1
2
3
4
|
from data import trials
for trial in trials:
print('& '.join(['$\\times$'.join([str(el) for el in trial.size]), str(trial.date), str(trial.intro), str(trial.dead), str(len(trial.pits))])+'\\cr\\noalign{\\hrule}')
|