report-log-to-latex
A script to convert a tab-delimited time log file to LaTeX markup for inclusion in a report.
Science Score: 44.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (8.0%) to scientific vocabulary
Repository
A script to convert a tab-delimited time log file to LaTeX markup for inclusion in a report.
Basic Info
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Metadata Files
README.md
Log time to LaTeX converter
This script converts a time log into LaTeX for inclusion in a report. This script is specifically written with the intention of use for the Machine Learning class at Vrije Universiteit Amsterdam.
A time log is a tab-delimited timelog.tsv file in the following format:
| Week | Day | Begin | End | Category | Task | | --- | --- | --- | --- | --- | --- | | The week number | The date in %d.%m format. | The start time of task in %H:%M format. | The end time of task, also in %H:%M format. | The type of task being performed (prep, code, theory, report). | A description of the task.
Please also see timelog_example.tsv for an example.
Usage
Place the .py file in the same directory as the timelog.tsv file and run:
bash
python log-to-latex.py
The output can be copied into your report. If you use this for your report, please cite this github page!
Example output
```latex \begin{tabular}{rll} \toprule Week & Task & Time spent \ \midrule 1 & started a to-do list & 24m \ 2 & wrote a literature review & 1h5m \ 3 & built a support vector machine & 5h16m \ 4 & cleaned up code & 1h9m \ 4 & updated report & 1h8m \ \bottomrule \end{tabular}
Total: 9h2m ```
Owner
- Name: Sofi Xian
- Login: sofixian
- Kind: user
- Location: Amsterdam
- Company: @sofaero
- Website: sofi.pics
- Repositories: 2
- Profile: https://github.com/sofixian
formerly Sofia Lee - design researcher at @sofaero, coiner of 'Frutiger Aero'. founder of digicam.love. musician.
Citation (CITATION.cff)
# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!
cff-version: 1.2.0
title: Log time to LaTeX converter
message: >-
If you use this software, please cite it using the
metadata from this file.
type: software
authors:
- given-names: Sofia
family-names: Lee
email: sofiamarielee@gmail.com
orcid: 'https://orcid.org/0000-0003-1881-9578'
abstract: >-
Python script to convert a time log to a LaTeX
table - intended for use in the Machine Learning
course at Vrije Universiteit Amsterdam.
license: GPL-3.0
commit: 2409c7f5523a43ceda4f774caae52a7023aa8db3
version: '0.1'
date-released: '2022-11-22'