{"id":26063910,"url":"https://github.com/cvdlab/larlib-literate","last_synced_at":"2026-05-20T16:41:01.922Z","repository":{"id":144865969,"uuid":"85584215","full_name":"cvdlab/larlib-literate","owner":"cvdlab","description":"Literate programming approach for LAR in Julia, source of https://github.com/cvdlab/LARLIB.jl","archived":false,"fork":false,"pushed_at":"2018-03-10T15:44:29.000Z","size":5397,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-08T17:58:14.691Z","etag":null,"topics":["algebraic-geometry","algebraic-topology","julia","julia-library","literate-programming"],"latest_commit_sha":null,"homepage":"","language":"TeX","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/cvdlab.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":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-03-20T14:05:59.000Z","updated_at":"2017-12-05T09:11:28.000Z","dependencies_parsed_at":null,"dependency_job_id":"22793145-91e8-4eaf-9fe0-8ebc6aa9d51b","html_url":"https://github.com/cvdlab/larlib-literate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cvdlab/larlib-literate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvdlab%2Flarlib-literate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvdlab%2Flarlib-literate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvdlab%2Flarlib-literate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvdlab%2Flarlib-literate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cvdlab","download_url":"https://codeload.github.com/cvdlab/larlib-literate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cvdlab%2Flarlib-literate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33267140,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-20T15:12:43.734Z","status":"ssl_error","status_checked_at":"2026-05-20T15:12:42.300Z","response_time":356,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["algebraic-geometry","algebraic-topology","julia","julia-library","literate-programming"],"created_at":"2025-03-08T17:57:40.158Z","updated_at":"2026-05-20T16:41:01.917Z","avatar_url":"https://github.com/cvdlab.png","language":"TeX","funding_links":[],"categories":[],"sub_categories":[],"readme":"# larlib-literate\nLiterate programming approach (with [nuweb](http://nuweb.sourceforge.net/)) for LAR in Julia. This is the development repo for the [LARLIB.jl package](https://github.com/cvdlab/LARLIB.jl). \nIf you are looking only for the LARLIB.jl package, this is not the right place.\n\n### How to contribute\n\nHere a quick start for the people who contribute to a literate programming project for the first time:\n\n1. Fork this repo\n\n2. Put your Julia code inside a LaTEX file called `ch_\u003cname\u003e.tex` in the `src/pkg/tex/` folder. The barebone structure of this file must be: \n```\n\\chapter{\u003cfancy name\u003e}\n\\label{ch:\u003cname\u003e}\n\n@O lib/jl/\u003cname\u003e.jl\n@{\u003cJulia code\u003e\n@}\n\n@O test/jl/\u003cname\u003e.jl\n@{using Base.Test\nusing LARLIB\n\u003cJulia unit tests\u003e\n@}\n```  \n(refer to `src/pkg/tex/ch_planar_arrangement.tex` for a well\nstructured LaTEX+nuweb file)\n\n3. Modify `src/pkg/tex/intro.tex` by appending to it a LaTEX chapter with the high-level description of the algorithm you implemented.\n\n4. Add the line `\\input{ch_\u003cname\u003e.tex}` right before `\\input{ch_utilities.tex}` inside `src/pkg/tex/book.tex`.\n\n5. Add the line `include(\"./\u003cname\u003e.jl\")` anywhere inside the `@O lib/jl/LARLIB.jl` nuweb macro defined at the beginning of `src/pkg/tex/ch_larlib.tex`.\n\n6. Add the line `include(\"./\u003cname\u003e.jl\")` anywhere inside the `@O test/jl/runtests.jl` nuweb macro defined at the bottom of `src/pkg/tex/ch_larlib.tex`.\n\n7. Do a pull request. If it gets accepted, we will take care of the insertion of your contribution inside the [LARLIB.jl package repo](https://github.com/cvdlab/LARLIB.jl).\n\n\n### Makefile Usage\n\n`make all` generates Julia scripts and pdf docs of LARLIB and its test units.  \n`make lib_code` generates only the scripts and the tests.  \n`make lib_pdf` generates the pdf docs and the scripts and tests.\n\n### Docker\n\nYou can use the previous build commands prepending `docker-` so that, e.g. `make all` becomes `make docker-all`, to use a docker image that contains everything to perform the building.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcvdlab%2Flarlib-literate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcvdlab%2Flarlib-literate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcvdlab%2Flarlib-literate/lists"}