https://github.com/addono/simple-logbook
A LaTeX package offering a simple way to track and display the time you spend.
https://github.com/addono/simple-logbook
latex logbook package teamwork
Last synced: 7 months ago
JSON representation
A LaTeX package offering a simple way to track and display the time you spend.
- Host: GitHub
- URL: https://github.com/addono/simple-logbook
- Owner: Addono
- License: mit
- Created: 2017-09-27T14:12:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-07T12:53:24.000Z (about 6 years ago)
- Last Synced: 2025-05-16T21:12:03.719Z (9 months ago)
- Topics: latex, logbook, package, teamwork
- Language: TeX
- Size: 83 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple logbook
A simple logbook package to track and display the amount of time spend during a project.

## Usage
Start by copying `logbook.sty` and `nth.sty` to the root of your LaTeX project.
*Note: `nth` might be optional, if your package manager includes it, however we observed that it generally isn't.*
First, import the package, this should probably be somewhere at the top of your document:
```tex
\usepackage{logbook}
```
Then, in the `document` environment you can use the `logbookTable` environment as such:
```tex
\begin{logbookTable}{table-name}
%\logEntry{Month}{Day}{# minutes}{Description}
% Initial phase
\logEntry{02}{02}{120}{Did something.}
\logEntry{02}{04}{120}{And more things.}
\logSubtotal{Initial phase} % Using logSubtotal is optional
% Second phase
\logEntry{02}{14}{50}{Started on the second phase.}
\logEntry{02}{16}{60}{Did things.}
\logSubtotal{Second phase}
% Add a row summing the amount of time spent during the whole project.
\logTotal
\end{logbookTable}
```
See `example.tex` for a complete example on how to use this package.