{"id":24564079,"url":"https://github.com/taskbjorn/au-latex","last_synced_at":"2026-05-07T13:04:50.247Z","repository":{"id":188889913,"uuid":"406524697","full_name":"taskbjorn/au-latex","owner":"taskbjorn","description":"Unofficial Aarhus University LaTeX template for reports and assignments.","archived":false,"fork":false,"pushed_at":"2021-10-03T06:36:30.000Z","size":1023,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-17T00:28:52.111Z","etag":null,"topics":["aarhus-university","latex","matlab","matplotlib","python"],"latest_commit_sha":null,"homepage":"https://medarbejdere.au.dk/en/administration/communication/guidelines/design/","language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/taskbjorn.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-09-14T21:21:34.000Z","updated_at":"2024-03-13T14:14:37.000Z","dependencies_parsed_at":"2023-08-17T10:53:56.304Z","dependency_job_id":"c686152f-c99a-4e6f-a291-afc964ba70e4","html_url":"https://github.com/taskbjorn/au-latex","commit_stats":null,"previous_names":["taskbjorn/au-latex"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/taskbjorn/au-latex","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fau-latex","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fau-latex/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fau-latex/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fau-latex/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/taskbjorn","download_url":"https://codeload.github.com/taskbjorn/au-latex/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/taskbjorn%2Fau-latex/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274117488,"owners_count":25225102,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aarhus-university","latex","matlab","matplotlib","python"],"created_at":"2025-01-23T10:16:58.683Z","updated_at":"2026-05-07T13:04:50.193Z","avatar_url":"https://github.com/taskbjorn.png","language":"TeX","funding_links":[],"categories":["Popular \u0026 New LaTeX Templates"],"sub_categories":["Others"],"readme":"# Aarhus University LaTeX Report Template\n\n`AU-LaTeX` is an unofficial LaTeX template for reports to be submitted to Aarhus University. While the template follows Aarhus University branding guidelines and colour schemes closely, it is not an official template and it is created \"by a student, for students\".\n\n## Features\n\n* Follows the [AU colour scheme](https://medarbejdere.au.dk/en/administration/communication/guidelines/guidelinesforcolours/) for text and listings\n* Automatically generated title page, header and footer based on given parameters (report title, course name, etc.)\n* Complementary matching *MATLAB* and *matplotlib* schemes\n\n## Screenshots\n\n### Title page example\n\n![Title page](./screenshots/titlepage.png)\n\n### Section example\n\n![Section](./screenshots/section.png)\n\n## Usage\n\nClone the repository in a new folder:\n\n```shell\ngit clone https://git.dsme.cc/taskbjorn/au-latex.git\n```\n\n(Optional) Remove the example assets using the provided script (requires PowerShell):\n\n```shell\ncd au-latex\n./git-repo-cleanup.pwsh\n```\n\nOpen `au-report.tex` and fill out the variables section:\n\n```latex\n%% ----------- BEGIN VARIABLES ----------- %%\n\n% Set course name\n\\newcommand{\\aucoursename}{Course Name}\n(...)\n```\n\nType your contents in :\n\n```latex\n%% ----------- BEGIN CONTENT ----------- %%\n\n\\ausection{01-a-section}\n(...)\n```\n\nExchange the default titlepage header image with your titlepage header image under `assets/graphics/titlepage.jpg`\n\n## Including assets\n\n### Including graphics\n\nBy default, the relative path for graphics elements refers to subfolder `./assets/graphics`. If you prefer a different path, edit `preamble.tex` as follows:\n\n```latex\n(...)\n% Set root path for graphics assets\n\\graphicspath{{your-path}}\n```\n\n### Including listings\n\nBy default, the relative path for listings refers to subfolder `./assets/listings`. If you prefer a different path, edit `preamble.tex` as follows:\n\n```latex\n(...)\n% Set root path for listings assets\n\\newcommand*\\lstpath[1]{\\lstset{inputpath=#1}}\n\\lstpath{your-path}\n```\n\n## Plot styles\n\n### MATLAB plot styles\n\nIf you would like to include MATLAB figures with matching style, a [MATLAB script](./template/extras/matlab/au_preset.m) setting MATLAB default figure and plotting settings is provided. Simply add the script to the root of your MATLAB path and add the following to your MATLAB script:\n\n```matlab\n(...)\nau = auColorScheme()\n```\n\nThe script changes the default MATLAB plot settings for the current session and returns a structure. You may access any colour from the [AU colour scheme](https://medarbejdere.au.dk/en/administration/communication/guidelines/guidelinesforcolours/) by simply referencing it by its name as follows:\n\n```matlab\nau.colours.darkblue\n\nans =\n\n         0    0.1451    0.2745\n(...)\n```\n\n### matplotlib plot styles\n\nIf you would like to include matplotlib figures with matching styles, a [matplotlibrc](extras/matplotlib/matplotlibrc) file is included. Copy it to the root of your Python application to generate plots matching the AU color scheme.\n\nIf you would only like to use AU style for a certain plot, you may also load the included style file `au.mplstyle` on demand as follows:\n\n```python\n# Set plot style to Aarhus University template\nplt.style.use('\u003cpath-to-mplstyle\u003e/au.mplstyle')\n```\n\n### Showing console output\n\nIn addition to a default style to pretty print code following the AU color scheme using package `lstlisting`, you may also add similarly formatted console output (such as the output from a Jupyter notebook cell) as follows:\n\n```latex\n\\begin{lstlisting}[style = console-output]\n(...)\n\\end{lstlisting}\n```\n\nYou may also higlight part of your console output using delimiters `(STARTRC, ENDRC)`, `(STARTBC, ENDBC)` and `(STARTGC, ENDGC)` in your code snippet to higlight output in red, blue and green respectively.\n\n```latex\n\\begin{lstlisting}[style = console-output]\nHello, STARTRCWorld!ENDRC\n\\end{lstlisting}\n```\n\n## Compatibility\n\nThe template was tested with [pdfTeX](https://www.tug.org/applications/pdftex/) on Microsoft Windows 10 running [MiKTeX](https://miktex.org) distribution v21.2.\n\n## License\n\nThis code is released under [GNU General Public License (GPL) v3.0](LICENSE).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskbjorn%2Fau-latex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftaskbjorn%2Fau-latex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftaskbjorn%2Fau-latex/lists"}