From 629bb898769c8580db340078a8296fe551035a79 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 3 Aug 2024 13:07:12 +0200 Subject: refactor(templates/latex): Declare as an academia template --- templates/latex/academia/scripts/extract_text_from_all.sh | 8 ++++++++ templates/latex/academia/scripts/renew_copyright_header.sh | 1 + 2 files changed, 9 insertions(+) create mode 100755 templates/latex/academia/scripts/extract_text_from_all.sh create mode 120000 templates/latex/academia/scripts/renew_copyright_header.sh (limited to 'templates/latex/academia/scripts') diff --git a/templates/latex/academia/scripts/extract_text_from_all.sh b/templates/latex/academia/scripts/extract_text_from_all.sh new file mode 100755 index 0000000..11b2ac4 --- /dev/null +++ b/templates/latex/academia/scripts/extract_text_from_all.sh @@ -0,0 +1,8 @@ +#! /usr/bin/env sh + +grep 'INPUT ./' ./build/main.fls | uniq | sed 's/INPUT //' | while read -r file; do + if ! [ "$(basename "$file")" = preamble.tex ] && ! [ "$(basename "$file")" = gymnasium.png ]; then + printf "\n%% Filename: %s\n" "$file" + grep -v '^\s*%' "$file" + fi +done diff --git a/templates/latex/academia/scripts/renew_copyright_header.sh b/templates/latex/academia/scripts/renew_copyright_header.sh new file mode 120000 index 0000000..bafc9f4 --- /dev/null +++ b/templates/latex/academia/scripts/renew_copyright_header.sh @@ -0,0 +1 @@ +../../../common/scripts/renew_copyright_header.sh \ No newline at end of file -- cgit 1.4.1