4

Are there templates for generating weekly time sheets in LaTeX? Ideally something that would minimize duplicate entries by computing totals and days-of-week.

2 Answers2

3

Check out this link. IMHO TeX is not the best solution for such a task. I personally would write some kind a script for generating data in one of my favorite scripting languages (shell+AWK or Python) and then just dump the data into his templates.

1

For my hourly/weekly timesheets, I use a BASH script that minimizes duplicates entries by computing totals. All hours are stored in a plaintext file and the script reads from it and inserts it into a LaTeX document.

See GitHub for the raw files and my blog for annotations and a short writeup.

Brandon Amos
  • 111
  • 2