{"id":23237393,"url":"https://github.com/pytooling/miktex","last_synced_at":"2026-04-27T02:04:49.495Z","repository":{"id":265930868,"uuid":"896810667","full_name":"pyTooling/MiKTeX","owner":"pyTooling","description":"A Docker image containing MikTeX to translate LaTeX documents.","archived":false,"fork":false,"pushed_at":"2026-03-04T15:46:19.000Z","size":35,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-04T18:34:37.722Z","etag":null,"topics":["docker-image","latex","miktex","sphinx"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyTooling.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-01T11:21:31.000Z","updated_at":"2026-03-04T14:15:56.000Z","dependencies_parsed_at":"2024-12-27T00:18:13.487Z","dependency_job_id":"3346f177-f2f5-4634-9f28-8c0e6186ba47","html_url":"https://github.com/pyTooling/MiKTeX","commit_stats":null,"previous_names":["pytooling/miktex"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/pyTooling/MiKTeX","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyTooling%2FMiKTeX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyTooling%2FMiKTeX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyTooling%2FMiKTeX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyTooling%2FMiKTeX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyTooling","download_url":"https://codeload.github.com/pyTooling/MiKTeX/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyTooling%2FMiKTeX/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30095691,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T21:59:23.547Z","status":"ssl_error","status_checked_at":"2026-03-04T21:57:50.415Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["docker-image","latex","miktex","sphinx"],"created_at":"2024-12-19T04:13:32.634Z","updated_at":"2026-04-27T02:04:49.490Z","avatar_url":"https://github.com/pyTooling.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MikTeX Docker Image\n\nThis repository is based on [Debian 12.x Bookworm (slim) with Python 3.14](https://hub.docker.com/_/python).\n\nDocker Hub: https://hub.docker.com/r/pytooling/miktex\n\n| Docker Hub Image           | GitHub Branch/Tag | Comment                                       |\n|----------------------------|-------------------|-----------------------------------------------|\n| `pytooling/miktex:latest`  | `vX.Y.Z`          | Created from tagged release on `main` brnach. |\n| `pytooling/miktex:release` | `main`            | Created from commits on `main` brnach.        |\n| `pytooling/miktex:dev`     | `dev`             | Created from commits on `dev` brnach.         |\n\n| Docker Hub Image                                              | Comment                                                                         |\n|---------------------------------------------------------------|---------------------------------------------------------------------------------|\n| tbd; see [#12](https://github.com/pyTooling/MiKTeX/issues/12) | Created specificly for processing [Doxygen](https://www.doxygen.nl/) ouputs.    |\n| tbd; see [#11](https://github.com/pyTooling/MiKTeX/issues/11) | Created specificly for processing [Pandoc](https://pandoc.org/) ouputs.         |\n| `pytooling/miktex:sphinx`                                     | Created specificly for processing [Sphinx](https://www.sphinx-doc.org/) ouputs. |\n\n\n## Why another MikTeX Docker Image?\n\n* [MikTeX original containers](https://hub.docker.com/r/miktex/miktex) do not provide installations based on Debian.\n* MikTeX original containers are infrequently updated (\u003e1 year).\n* MikTeX original containers aren't smaller (less download time).\n* Prepare MiKTeX with Unicode support ([`pyTooling.sty`](pyTooling.sty)).\n* pyTooling has control over preinstalled commonly used LaTeX packages (`amsfonts`/`amsmath`, `babel`, `hyperref`, `longtables`, ...)\n* pyTooling can derive specific images for e.g.Doxygen, Pandoc, [`Sphinx`](Sphinx.list), ...\n\n## Usage\n\n### Standalone Docker Container\n```bash\ndocker image run --rm -it -v $(pwd):/latex pytooling/miktex:latest\n```\n\n### GitHub Action Pipeline\n```yml\n  MiKTeX:\n    name: 📓 Translate to PDF\n    runs-on: 'ubuntu-24.04'\n    container:\n      image: pytooling/miktex:latest\n    steps:\n      - name: ⏬ Checkout repository\n        uses: actions/checkout@v6\n\n      - name: 📓 Compile 'latex/document.tex'\n        run: |\n          set -o pipefail\n          \n          cd ./latex\n          chown -R latex:latex .\n          sudo -u latex latexmk \\\n            --lualatex \\\n            --interaction=nonstopmode \\\n            --file-line-error \\\n            --halt-on-error \\\n            document.tex | filter.latexmk.sh\n          \n          ls -lAh *.pdf\n\n      - name: 📤 Upload 'document-pdf' artifact\n        uses: pyTooling/upload-artifact@v7\n        with:\n          name: document-pdf\n          working-directory: latex\n          path: document.pdf\n          if-no-files-found: error\n          retention-days: 1\n```\n\n## MiKTeX Docker Image\n### Installed Tools\n\nInstalled additional tools are:\n\n* curl\n* MikTeX\n  * Preinstalled packages: [Common.list](Common.list) \n* Perl\n* Python 3.14\n* sudo\n* tree\n\n### Installed Fonts\n\n* Cabin\n* DejaVu\n* Latin Modern (LM)\n* Libertinus (optimized `Linux Libertine` for LuaLaTeX)\n* [URW Type Foundy](https://en.wikipedia.org/wiki/URW_Type_Foundry)\n  * URW Bookman (`ITC Bookman` clone)\n  * Nimbus Sans (`Helvetica` clone)\n  * Nimbus Roman (`Times New Roman` clone)\n  * ~~Palladio -\u003e Palatino~~\n* Noto (No Tofu)\n\n## Derived Variant Docker Images\n\n### Doxygen\n\n**planned**, see [#12](https://github.com/pyTooling/MiKTeX/issues/12)\n\n### Pandoc\n\n**planned**, see [#11](https://github.com/pyTooling/MiKTeX/issues/11)\n\n### Sphinx\n\nMiKTeX:\n* Common package list: [Common.list](Common.list)  \n* Sphinx specific package list: [Sphinx.list](Sphinx.list)\n\nAdditional Debian Packages: [Sphinx.packages](Sphinx.packages)\n* nodejs: [Sphinx.npm](Sphinx.npm)\n  * Mermaid\n\n\n## License\n\nThis Docker Image build receipt and all it's accompanying configuration and script files (source code) are licensed\nunder [The MIT License](LICENSE.md) if not mentioned otherwise within the respective file.\n\n---\n\nSPDX-License-Identifier: MIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpytooling%2Fmiktex","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpytooling%2Fmiktex","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpytooling%2Fmiktex/lists"}