You can report bugs and request features using the issues page.
We love code contributions. You can easily work on the code if you have a GitHub account (get one). For that, please fork the repository, work on the code, and submit a pull request.
We base on reitzig's TeXLive Docker Images, which are small.
They require each new package listed in Texlivefile
.
Thus, if you add a new LaTeX package, please also add it into that file.
You can have a full bash
environment to experiment by using following command (assuming you are on Windows and checked out the repository at c:\git-repositories\LNI
):
docker run -it --rm -v c:\git-repositories\LNI:/work/src reitzig/texlive-base:2023.1 work bash
After cd /work/src
, you are in the directory hosting lni.dtx
and all other files.
You can check successful generation of lni.cls
based on lni.dtx
using following command:
docker run --rm -v c:\git-repositories\LNI:/work/src reitzig/texlive-base:2023.1 work
⚠ Running that command overwrites lni.cls
(based on lni.dtx
), so be careful. ⚠
We have a GitHub workflow running, which checks the complete build using that Docker image.
Take a look at GitHub's excellent overview on the GitHub flow. The Feature Branch Workflow forms the basis of this kind of development.
In other words:
-
Fork the project
-
Clone the repo:
git clone [email protected]:your-username/LNI.git
-
Create a new branch
patch
(or another speaking name)git checkout -b patch
-
Make your changes.
-
Commit your changes. Thereby, try to write a good commit message.
-
Push your changes (to your repository)
-
At this point you're waiting on us. We like to at least comment on pull requests as soon as possible. We may suggest some changes or improvements or alternatives.