The tool at makes cover pages for courses
To configure
config file is in the home of the course account
Configuration file .coverrc
Command makeCover
For each assignment, add list of questions and marks per question to .coverrc
EG:
# -*- perl -*-
package CoverRC;
$name = "CS 240";
$current = 1;# Which assignment is due next?
%covers = (
1 => {name => "Assignment 1",
marks => [[1, 1],
[2, 4],
[3, 6],
[4, 14],
[5, 25],
["Bonus", ""],
["Total", 50]]},
);