{"id":16499381,"url":"https://github.com/tpapp/miter.jl","last_synced_at":"2026-01-05T16:14:03.671Z","repository":{"id":66832029,"uuid":"575473514","full_name":"tpapp/Miter.jl","owner":"tpapp","description":"A Julia plotting package using the PGF Basic Layer Core.","archived":false,"fork":false,"pushed_at":"2025-07-24T11:04:57.000Z","size":3520,"stargazers_count":4,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-12T09:55:25.098Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tpapp.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-07T15:38:30.000Z","updated_at":"2025-05-27T15:38:00.000Z","dependencies_parsed_at":"2024-02-19T12:57:44.685Z","dependency_job_id":"e2f28a79-bdac-4ff2-8cfa-4fe347a7ab6f","html_url":"https://github.com/tpapp/Miter.jl","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/tpapp/Miter.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tpapp%2FMiter.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tpapp%2FMiter.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tpapp%2FMiter.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tpapp%2FMiter.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tpapp","download_url":"https://codeload.github.com/tpapp/Miter.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tpapp%2FMiter.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286079811,"owners_count":27282121,"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-11-26T02:00:06.075Z","response_time":193,"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":[],"created_at":"2024-10-11T14:52:22.934Z","updated_at":"2026-01-05T16:14:03.662Z","avatar_url":"https://github.com/tpapp.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Miter.jl\n\n![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)\n[![build](https://github.com/tpapp/Miter.jl/workflows/CI/badge.svg)](https://github.com/tpapp/Miter.jl/actions?query=workflow%3ACI)\n[![codecov](https://codecov.io/github/tpapp/Miter.jl/branch/master/graph/badge.svg?token=7HeB2iNJz4)](https://codecov.io/github/tpapp/Miter.jl)\n[![Documentation](https://img.shields.io/badge/docs-stable-blue.svg)](https://tpapp.github.io/Miter.jl/stable)\n[![Documentation](https://img.shields.io/badge/docs-master-blue.svg)](https://tpapp.github.io/Miter.jl/dev)\n\nA Julia plotting package using LaTeX/PGF for text (including equations) and Cairo for everything else.\n\n**Very experimental, each commit may break something, don't use in production code.**\n\n# Overview\n\nThis is (yet another) plotting package for [Julia](https://julialang.org/). It produces plots by rendering vector graphics using [Cairo][cairo], then overlaying them with text (including equations) in LaTeX, using [PGF][pgf]. Compilation happens in a single pass for all text.\n\nCheck out the [gallery][gallery] for examples.\n\nIt can output plots as `pdf`, `svg`, `tex` (standalone file) and `tikz` (for embedding in LaTeX documents). The comparative advantage of this package lies in its close integration with LaTeX: you can use LaTeX expressions for text, eg various text labels, and the resulting plots blend seamlessly with your LaTeX document.\n\nA closely related package is [PGFPlotsX.jl](https://github.com/KristofferC/PGFPlotsX.jl). The table below compares them.\n\n| PGFPlotsX.jl                                             | Miter.jl                                                                                           |\n|----------------------------------------------------------|----------------------------------------------------------------------------------------------------|\n| uses `pgfplots`                                          | uses Cairo (for vector graphics) + PGF (for text/equations)                                        |\n| options and syntax can match `pgfplots` closely          | not related to `pgfplots` in any way, uses only Julia syntax                                       |\n| units passed as text strings                             | uses units like [`mm`, `inch`, `pt` defined in this package][lengths]                              |\n| colors need to be expanded to text strings in some cases | uses [ColorTypes.jl](https://github.com/JuliaGraphics/ColorTypes.jl) for colors                    |\n| needs a local LaTeX installation, `pdf2svg`, etc         | uses [Tectonic][tectonic] and [Cairo][cairo] binaries from `jll`s                                  |\n| strings passed through as is                             | special chars in strings (`#`, `$`, ...) escaped automatically, use [`lx\"...\"`][strings] for LaTeX |\n\n[gallery]: https://tpapp.github.io/Miter.jl/stable/gallery\n[strings]: https://tpapp.github.io/Miter.jl/stable/building_blocks#Strings-and-LaTeX\n[tectonic]: https://tectonic-typesetting.github.io/en-US/\n[cairo]: https://www.cairographics.org\n[lengths]: https://tpapp.github.io/Miter.jl/stable/building_blocks#Length-units\n[pgf]: https://tikz.dev/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftpapp%2Fmiter.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftpapp%2Fmiter.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftpapp%2Fmiter.jl/lists"}