Skip to content

Commit

Permalink
Use different font list and exposures for "lat" language training
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanfb committed Jan 4, 2016
1 parent add1ed1 commit 5b40277
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion training/language-specific.sh
Expand Up @@ -69,6 +69,35 @@ LATIN_FONTS=(
"DejaVu Sans Ultra-Light" \
)

# List of fonts for printed/neo-Latin ('lat' language code, different from Latin script)
NEOLATIN_FONTS=(
"GFS Bodoni" \
"GFS Bodoni Bold" \
"GFS Bodoni Italic" \
"GFS Bodoni Bold Italic" \
"GFS Didot" \
"GFS Didot Bold" \
"GFS Didot Italic" \
"GFS Didot Bold Italic" \
"Cardo" \
"Cardo Bold" \
"Cardo Italic" \
"Wyld" \
"Wyld Italic" \
"EB Garamond" \
"EB Garamond Italic" \
"IM FELL DW Pica PRO" \
"IM FELL English PRO" \
"IM FELL Double Pica PRO" \
"IM FELL French Canon PRO" \
"IM FELL Great Primer PRO" \
"IM FELL DW Pica PRO Italic" \
"IM FELL English PRO Italic" \
"IM FELL Double Pica PRO Italic" \
"IM FELL French Canon PRO Italic" \
"IM FELL Great Primer PRO Italic" \
)

EARLY_LATIN_FONTS=(
"${FRAKTUR_FONTS[@]}" \
"${LATIN_FONTS[@]}" \
Expand Down Expand Up @@ -853,6 +882,9 @@ set_lang_specific_parameters() {
FILTER_ARGUMENTS="--make_early_language_variant=ita"
TEXT2IMAGE_EXTRA_ARGS=" --ligatures" # Add ligatures when supported.
test -z "$FONTS" && FONTS=( "${EARLY_LATIN_FONTS[@]}" );;
lat )
test -z "$EXPOSURES" && EXPOSURES="-3 -2 -1 0 1 2 3"
test -z "$FONTS" && FONTS=( "${NEOLATIN_FONTS[@]}" ) ;;
spa_old )
TEXT_CORPUS="${FLAGS_webtext_prefix}/spa.corpus.txt"
# Make long-s substitutions for Early Spanish text
Expand Down Expand Up @@ -893,7 +925,6 @@ set_lang_specific_parameters() {
isl ) ;;
ita ) ;;
jav ) ;;
lat ) ;;
lav ) ;;
lit ) ;;
mlt ) ;;
Expand Down

0 comments on commit 5b40277

Please sign in to comment.