From 0a70d70baa508b895ebf78f1252aff9871a7629d Mon Sep 17 00:00:00 2001 From: Christophe Garion <tofgarion@runbox.com> Date: Wed, 25 Oct 2023 20:26:14 +0200 Subject: [PATCH] [README] add README.md --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..329592c --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# Tof's config for some LaTeX packages + +## Content + +This project contains some LaTeX style files to configure packages or +define new commands: + +- `my-algo.sty` contains some french keywords like Entrées etc for the + [algorithm2e](https://www.ctan.org/pkg/algorithm2e "Link to CTAN + algorithm2e page") package. +- `my-env.sty` contains some environments, mainly to emphasize content + in lab sessions texts for instance. +- `my-listings.sty` contains custom languages definition for the + [listings](https://www.ctan.org/pkg/listings "Link to CTAN listings + page") package. It also contains a command to use overlays to + highlight source code in [Beamer](https://www.ctan.org/pkg/beamer + "Link to CTAN Beamer page"). +- `my-symbols.sty` contains some symbols definition. +- `my-theorems.sty` contains new theorem environments. +- `my-tikz.sty` contains new [TikZ](https://www.ctan.org/pkg/pgf "Link + to CTAN TikZ page") commands to create E/R diagrams, charts etc. + +## Installing + +To install the files, execute + +```bash +make install +``` + +This should install the files in your local TeXMF directory +(`.local/share/texmf` by default on Linux). + +The `hooks` repository contains a simple hook to be linked to +`.git/hooks/post-commit` for instance to install the files when you +commit changes. -- GitLab