From 7b050bcc9a301bba02c1325cddb4f0f6c5789b23 Mon Sep 17 00:00:00 2001 From: Louis Burke Date: Sat, 10 May 2025 17:23:08 -0400 Subject: [PATCH] Moved l4.svg to l4logo.svg --- .gitignore | 2 ++ Makefile | 5 ++++- README.md | 11 +++++++++++ l4.svg => l4logo.svg | 0 4 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 README.md rename l4.svg => l4logo.svg (100%) diff --git a/.gitignore b/.gitignore index 2b55478..c1cf26c 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,5 @@ *.log *.out *.sty +*.png +*.idx diff --git a/Makefile b/Makefile index 124952c..d891d49 100644 --- a/Makefile +++ b/Makefile @@ -4,8 +4,11 @@ PWD = $(shell pwd) VERS = $(shell ltxfileinfo -v $(NAME).dtx|sed -e 's/^v//') LOCAL = $(shell kpsewhich --var-value TEXMFLOCAL) UTREE = $(shell kpsewhich --var-value TEXMFHOME) -all: $(NAME).pdf +all: $(NAME).pdf $(NAME).png test -e README.txt && mv README.txt README || exit 0 +$(NAME).png: $(NAME).svg + inkscape -w 1024 -h 1024 $(NAME).svg -o $(NAME).png + magick xc:\#3057E1 $(NAME).png -gravity Center -geometry 1024x1024 -composite $(NAME).png $(NAME).dtx: $(NAME).pre ./pre2dtx.awk < $(NAME).pre > $(NAME).dtx $(NAME).pdf: $(NAME).dtx diff --git a/README.md b/README.md new file mode 100644 index 0000000..3a8ef28 --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +| +-------:| ----------------------------------------------------------------- + l4logo:| L4 Logo + Author:| Louis A. Burke + E-mail:| lburke@labprogramming.net +License:| Released under the LaTeX Project Public License v1.3c or later + See:| http://www.latex-project.org/lppl.txt + +Short description: +This package is used to render the L4 logo as a tikz picture. It was created by +modifying the output of svg2tikz. diff --git a/l4.svg b/l4logo.svg similarity index 100% rename from l4.svg rename to l4logo.svg