From b9372c89cac00c7e5afa075e0a722c5c81697844 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 3 Aug 2024 21:01:30 +0200 Subject: fix(templates/latex/letter): Also expose `init.local` --- common/inits/latex/init.local | 28 ++++++++++++++++++++++++++++ templates/latex/academia/init.local | 29 +---------------------------- templates/latex/letter/init.local | 1 + 3 files changed, 30 insertions(+), 28 deletions(-) create mode 100755 common/inits/latex/init.local mode change 100755 => 120000 templates/latex/academia/init.local create mode 120000 templates/latex/letter/init.local diff --git a/common/inits/latex/init.local b/common/inits/latex/init.local new file mode 100755 index 0000000..ae57756 --- /dev/null +++ b/common/inits/latex/init.local @@ -0,0 +1,28 @@ +#!/usr/bin/env sh + +prompt LANGUAGE "The language to use in the latex documents" "en_GB" + +bable_language="" +case "$LANGUAGE" in +"en_GB") + bable_language="british" + ;; +en_*) + bable_language="english" + ;; +de_DE | de_*) + bable_language="ngerman" + ;; + +*) + echo "'$LANGUAGE' is not yet recognized by the init.local script! Please open an issue." 1>&2 + echo "set 'BABLE_LANGUAGE' to 'NOT_YET_RECOGNIZED_PLEASE_REPLACE' to help you find instances of the variable use." 1>&2 + bable_language="NOT_YET_RECOGNIZED_PLEASE_REPLACE" + ;; +esac + +prompt BABLE_LANGUAGE "The language to use for the bable package" "$bable_language" "dont_ask" +prompt DATE_TIME_LANGUAGE "The language to use for the datetime2 package" "$(echo "$LANGUAGE" | sed 's/_/-/g')" "dont_ask" +prompt SIUNITX_LANGUAGE "The language to use for the siunitx package" "$(echo "$LANGUAGE" | sed 's/\(\w\w\).*/\U\1/')" "dont_ask" + +# vim: ft=sh diff --git a/templates/latex/academia/init.local b/templates/latex/academia/init.local deleted file mode 100755 index ae57756..0000000 --- a/templates/latex/academia/init.local +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env sh - -prompt LANGUAGE "The language to use in the latex documents" "en_GB" - -bable_language="" -case "$LANGUAGE" in -"en_GB") - bable_language="british" - ;; -en_*) - bable_language="english" - ;; -de_DE | de_*) - bable_language="ngerman" - ;; - -*) - echo "'$LANGUAGE' is not yet recognized by the init.local script! Please open an issue." 1>&2 - echo "set 'BABLE_LANGUAGE' to 'NOT_YET_RECOGNIZED_PLEASE_REPLACE' to help you find instances of the variable use." 1>&2 - bable_language="NOT_YET_RECOGNIZED_PLEASE_REPLACE" - ;; -esac - -prompt BABLE_LANGUAGE "The language to use for the bable package" "$bable_language" "dont_ask" -prompt DATE_TIME_LANGUAGE "The language to use for the datetime2 package" "$(echo "$LANGUAGE" | sed 's/_/-/g')" "dont_ask" -prompt SIUNITX_LANGUAGE "The language to use for the siunitx package" "$(echo "$LANGUAGE" | sed 's/\(\w\w\).*/\U\1/')" "dont_ask" - -# vim: ft=sh diff --git a/templates/latex/academia/init.local b/templates/latex/academia/init.local new file mode 120000 index 0000000..e1f9d58 --- /dev/null +++ b/templates/latex/academia/init.local @@ -0,0 +1 @@ +../../../common/inits/latex/init.local \ No newline at end of file diff --git a/templates/latex/letter/init.local b/templates/latex/letter/init.local new file mode 120000 index 0000000..e1f9d58 --- /dev/null +++ b/templates/latex/letter/init.local @@ -0,0 +1 @@ +../../../common/inits/latex/init.local \ No newline at end of file -- cgit 1.4.1