annotate docs/_latex/my-doc-fonts.sty @ 298:0052d12ec437

Update to latest Sphinx customizations
author Franz Glasner <fzglas.hg@dom66.de>
date Tue, 02 Jun 2026 12:33:54 +0200
parents 1b0e58f60f73
children 11f4f4d2ec03
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
1 % -*- coding: utf-8 -*-
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
2 % SPDX-FileCopyrightText: © 2026 Franz Glasner
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
3 % SPDX-License-Identifier: BSD-3-Clause OR MIT
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
4 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
5 % Some font hacks for my Sphinx PDF documents.
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
6 % Needs a LaTeX environment with a working `fontspec' package.
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
7 %
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
8 % Options:
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
9 % - nomath: Disable math support completely
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
10 % - noglobalunicodemath: Do not load unicode-math globally but only when
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
11 % really needed
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
12 % - fonts=<FONT>: Use font pairing named <FONT>. See the list below.
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
13 %
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
14 \NeedsTeXFormat{LaTeX2e}
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
15 \ProvidesPackage{my-doc-fonts}[%
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
16 2026/06/02 rv:c7ae4cfc2c5c (Franz Glasner) Fonts for Sphinx generated PDFs]
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
17 \RequirePackage{xkeyval}
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
18 \RequirePackage{fontspec}
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
19 \IfFileExists{xcolor.sty}{%
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
20 % Should Sphinx load xcolor with its dvipsnames and svgnames options?
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
21 \RequirePackage{xcolor}
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
22 }{%
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
23 \RequirePackage{color}
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
24 }
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
25
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
26 \newif\if@mdf@mono@dejavusansmono\@mdf@mono@dejavusansmonofalse
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
27 \newif\if@mdf@mono@cmmono\@mdf@mono@cmmonofalse
222
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
28 \newif\if@mdf@mono@robotomono\@mdf@mono@robotomonofalse
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
29 \newif\if@mdf@mono@sscode\@mdf@mono@sscodefalse
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
30 \newif\if@mdf@mono@inconsolata\@mdf@mono@inconsolatafalse
239
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
31 \newif\if@mdf@mono@libertinusmono\@mdf@mono@libertinusmonofalse
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
32 \newif\if@mdf@mono@hackmono\@mdf@mono@hackmonofalse
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
33 \newif\if@mdf@mono@firamono\@mdf@mono@firamonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
34 \newif\if@mdf@mono@firamonomedium\@mdf@mono@firamonomediumfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
35 \newif\if@mdf@mono@gomono\@mdf@mono@gomonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
36 \newif\if@mdf@augment@cmutypewritertext\@mdf@augment@cmutypewritertextfalse
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
37 \newif\if@mdf@augment@libertinusmono\@mdf@augment@libertinusmonofalse
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
38 \newif\if@mdf@augment@ibmplexmono\@mdf@augment@ibmplexmonofalse
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
39 \newif\if@mdf@augment@redhatmono\@mdf@augment@redhatmonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
40 \newif\if@mdf@augment@cascadiacode\@mdf@augment@cascadiacodefalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
41 \newif\if@mdf@augment@jetbrainsmono\@mdf@augment@jetbrainsmonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
42 \newif\if@mdf@augment@firamono\@mdf@augment@firamonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
43 \newif\if@mdf@augment@gomono\@mdf@augment@gomonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
44
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
45 \newif\if@mdf@GlobalUnicodeMath\@mdf@GlobalUnicodeMathtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
46 \DeclareOptionX{noglobalunicodemath}{\@mdf@GlobalUnicodeMathfalse}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
47
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
48 \newif\if@mdf@UseUnicodeMath\@mdf@UseUnicodeMathtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
49 \DeclareOptionX{nomath}{\@mdf@UseUnicodeMathfalse}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
50
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
51 \newif\if@mdf@NeedUprightUnicodeMath\@mdf@NeedUprightUnicodeMathfalse
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
52
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
53 \newif\if@mdf@WithDejaVuSansMono
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
54 \newif\if@mdf@WithCM
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
55 \newif\if@mdf@WithIBMPlex
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
56 \newif\if@mdf@WithIBMPlexDejaVuSansMono
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
57 \newif\if@mdf@WithAdobeSourcePro
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
58 \newif\if@mdf@WithSpectral
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
59 \newif\if@mdf@WithCharter
221
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
60 \newif\if@mdf@WithLibertinus
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
61 \newif\if@mdf@WithGaramond
232
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
62 \newif\if@mdf@WithTufte
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
63 \newif\if@mdf@WithTufteHack
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
64 \newif\if@mdf@WithTufteFiraMono
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
65 \newif\if@mdf@WithPalatino
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
66 \newif\if@mdf@WithPalatinoKB
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
67 \newif\if@mdf@WithPalatinoRosario
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
68 \newif\if@mdf@WithCrimson
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
69 \newif\if@mdf@WithCrimsonCabin
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
70 \newif\if@mdf@WithDejaVu
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
71 \newif\if@mdf@WithMerriweather
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
72 \newif\if@mdf@WithLiterata
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
73 \newif\if@mdf@WithLiterataFiraMono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
74 \newif\if@mdf@WithLiterataRobotoMono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
75 \newif\if@mdf@WithVollkorn
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
76 \newif\if@mdf@WithErewhon
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
77 \newif\if@mdf@WithGentium
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
78 \newif\if@mdf@WithZillaSlab
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
79 \newif\if@mdf@WithAleo
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
80 \newif\if@mdf@WithLora
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
81 \newif\if@mdf@WithStix
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
82 \newif\if@mdf@WithBaskerville
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
83
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
84 % A key compatible with options processing as option "fonts" but choices.
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
85 \define@choicekey*{my-doc-fonts.sty}{fonts}[\val\nr]{%
229
29826707b7da Comment
Franz Glasner <fzglas.hg@dom66.de>
parents: 228
diff changeset
86 % do not change anything: just deactivate the default "dejavusansmono"
29826707b7da Comment
Franz Glasner <fzglas.hg@dom66.de>
parents: 228
diff changeset
87 default,
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
88 % almost no augmentation needed: all characters available
227
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
89 dejavusansmono, % use DejaVu Sans Mono as monospaced font
228
e363dc537be5 Comment
Franz Glasner <fzglas.hg@dom66.de>
parents: 227
diff changeset
90 % the fonts below are augmented for missing characters
227
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
91 cm, % assume CM fonts and just fix missing characters
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
92 ibmplex, plex, % use the IBM Plex family (incl. Math)
230
c54b5ffd41d7 FIX: Comment for plex-dejavusansmono
Franz Glasner <fzglas.hg@dom66.de>
parents: 229
diff changeset
93 plex-dejavusansmono, % use IBM Plex Serif/Sans and DejaVu Sans Mono
227
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
94 adobesourcepro, adobesource, % Use Adobe Source Serif/Sans/Mono
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
95 spectral, % use Spectral, Source Sans Pro and Source Code Pro
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
96 charter, % use XCharter (with XCharter Math), Lato and Inconsolata
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
97 libertinus, % use Libertinus family (incl. Math)
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
98 garamond, % EB Garamond (with Math), Libre Franklin and Inconsolata
232
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
99 tufte, % Tufte fonts: ETbb (with Math), GilliusADFNo2, DejaVu Sans Mono
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
100 tufte-hack, % Tufte variant: ETbb (with Math), GilliusADFNo2, Hack
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
101 tufte-firamono, % Tufte variant: ETbb (with Math), GilliusADFNo2, Fira Mono
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
102 palatino, % Palatino, Inter and Source Code Pro
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
103 palatino-kb, % Palatino, Lato and Inconsolata (original KB-Admin style)
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
104 palatino-rosario,% Palatino, Rosario and CMU Typewriter Text (Asana Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
105 crimson, % Crimson Pro, (Intel) Clear Sans and Roboto Mono (Erewhon Math)
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
106 crimson-cabin, % Crimson Pro, Cabin and Source Code Pro (Erewhon Math)
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
107 dejavu, % All DejaVu fonts (Serif, Sans, Mono)
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
108 merriweather, % Merriweather, Merriweather Sans, Hack (Concrete Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
109 literata, % Literata, Inter, IBM Plex Mono (Concrete Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
110 literata-firamono, % Literata, Inter, Fira Mono Medium (Concrete Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
111 literata-robotomono, % Literata, Cabin, Roboto Mono (Concrete Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
112 vollkorn, % Vollkorn, Jost, Red Hat Mono (STIX 2 Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
113 erewhon, utopia, % Erewhon, Rosario, XXX, (Erewhon Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
114 gentium, % Gentium, Alegreya Sans, JetBrains Mono, (Euler Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
115 zillaslab, % Zilla Slab, Metropolis, IBM Plex Mono Text, (Concrete Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
116 aleo, % Aleo, Lato, IBM Plex Mono Text, (Euler Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
117 lora, % Lora, Libre Franklin, Go Mono, (Asana Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
118 stix, % STIX 2 Text, Inter, CMU Typewriter Text, (STIX 2 Math)
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
119 baskerville, % Libre Baskerville, Metropolis Medium, CMU Typewriter Text, (Euler Math)
227
0fb4e7c34b10 Comment the options
Franz Glasner <fzglas.hg@dom66.de>
parents: 226
diff changeset
120 }{%
219
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
121 % Not used for now : store the normalized option value (global and expanded)
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
122 \xdef\@mdf@fonts{\val}%
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
123 % Reset all option related font selection flags
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
124 \@mdf@NeedUprightUnicodeMathfalse
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
125 \@mdf@WithDejaVuSansMonofalse
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
126 \@mdf@WithCMfalse
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
127 \@mdf@WithIBMPlexfalse
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
128 \@mdf@WithIBMPlexDejaVuSansMonofalse
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
129 \@mdf@WithAdobeSourceProfalse
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
130 \@mdf@WithSpectralfalse
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
131 \@mdf@WithCharterfalse
221
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
132 \@mdf@WithLibertinusfalse
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
133 \@mdf@WithGaramondfalse
232
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
134 \@mdf@WithTuftefalse
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
135 \@mdf@WithTufteHackfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
136 \@mdf@WithTufteFiraMonofalse
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
137 \@mdf@WithPalatinofalse
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
138 \@mdf@WithPalatinoKBfalse
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
139 \@mdf@WithPalatinoRosariofalse
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
140 \@mdf@WithCrimsonfalse
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
141 \@mdf@WithCrimsonCabinfalse
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
142 \@mdf@WithDejaVufalse
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
143 \@mdf@WithMerriweatherfalse
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
144 \@mdf@WithLiteratafalse
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
145 \@mdf@WithLiterataFiraMonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
146 \@mdf@WithLiterataRobotoMonofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
147 \@mdf@WithVollkornfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
148 \@mdf@WithErewhonfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
149 \@mdf@WithGentiumfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
150 \@mdf@WithZillaSlabfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
151 \@mdf@WithAleofalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
152 \@mdf@WithLorafalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
153 \@mdf@WithStixfalse
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
154 \@mdf@WithBaskervillefalse
219
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
155 % Now set the needed font selection flag
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
156 \ifcase\nr\relax
226
90bbece6fae8 Implement an option for my-doc-fonts.sty to not change anything.
Franz Glasner <fzglas.hg@dom66.de>
parents: 225
diff changeset
157 \relax
90bbece6fae8 Implement an option for my-doc-fonts.sty to not change anything.
Franz Glasner <fzglas.hg@dom66.de>
parents: 225
diff changeset
158 \or
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
159 \@mdf@WithDejaVuSansMonotrue
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
160 \or
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
161 \@mdf@WithCMtrue
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
162 \or
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
163 \@mdf@WithIBMPlextrue
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
164 \or
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
165 \@mdf@WithIBMPlextrue
219
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
166 % Normalize the stored string
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
167 \gdef\@mdf@fonts{ibmplex}
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
168 \or
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
169 \@mdf@WithIBMPlexDejaVuSansMonotrue
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
170 \or
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
171 \@mdf@WithAdobeSourceProtrue
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
172 \or
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
173 \@mdf@WithAdobeSourceProtrue
219
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
174 % Normalize the stored string
a7a6a75cd4b8 Normalize the stored "fonts" option when aliases are given
Franz Glasner <fzglas.hg@dom66.de>
parents: 218
diff changeset
175 \gdef\@mdf@fonts{adobesourcepro}
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
176 \or
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
177 \@mdf@WithSpectraltrue
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
178 \or
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
179 \@mdf@WithChartertrue
221
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
180 \or
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
181 \@mdf@WithLibertinustrue
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
182 \or
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
183 \@mdf@WithGaramondtrue
232
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
184 \or
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
185 \@mdf@WithTuftetrue
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
186 \or
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
187 \@mdf@WithTufteHacktrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
188 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
189 \@mdf@WithTufteFiraMonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
190 \or
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
191 \@mdf@WithPalatinotrue
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
192 \or
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
193 \@mdf@WithPalatinoKBtrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
194 \or
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
195 \@mdf@WithPalatinoRosariotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
196 \or
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
197 \@mdf@WithCrimsontrue
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
198 \or
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
199 \@mdf@WithCrimsonCabintrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
200 \or
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
201 \@mdf@WithDejaVutrue
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
202 \or
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
203 \@mdf@WithMerriweathertrue
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
204 \or
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
205 \@mdf@WithLiteratatrue
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
206 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
207 \@mdf@WithLiterataFiraMonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
208 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
209 \@mdf@WithLiterataRobotoMonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
210 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
211 \@mdf@WithVollkorntrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
212 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
213 \@mdf@WithErewhontrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
214 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
215 \@mdf@WithErewhontrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
216 % Normalize the stored string
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
217 \gdef\@mdf@fonts{erewhon}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
218 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
219 \@mdf@WithGentiumtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
220 \@mdf@NeedUprightUnicodeMathtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
221 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
222 \@mdf@WithZillaSlabtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
223 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
224 \@mdf@WithAleotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
225 \@mdf@NeedUprightUnicodeMathtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
226 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
227 \@mdf@WithLoratrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
228 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
229 \@mdf@WithStixtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
230 \or
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
231 \@mdf@WithBaskervilletrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
232 \@mdf@NeedUprightUnicodeMathtrue
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
233 \fi
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
234 }
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
235
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
236 %
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
237 % By default use the safe option dejavusansmono because is contains
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
238 % all characters without any hacks.
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
239 %
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
240 \ExecuteOptionsX{fonts=dejavusansmono}
214
ad57aaf87799 FIX: Do not process class-level options in my-doc-fonts.sty
Franz Glasner <fzglas.hg@dom66.de>
parents: 205
diff changeset
241 \ProcessOptionsX\relax
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
242
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
243 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
244 \if@mdf@GlobalUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
245 \if@mdf@NeedUprightUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
246 \RequirePackage[math-style=upright]{unicode-math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
247 \else
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
248 \RequirePackage{unicode-math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
249 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
250 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
251 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
252
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
253 \if@mdf@WithDejaVuSansMono
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
254 % default but with DejaVu Sans Mono as monospaced font
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
255 %\RequirePackage[DefaultFeatures={Scale=0.92},mono=false]{plex-otf}
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
256 %\RequirePackage[mono=true,serif=false,sans=false,math=false]{dejavu-otf} % all symbols are available
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
257 \@mdf@mono@dejavusansmonotrue
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
258 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
259
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
260 \if@mdf@WithCM
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
261 \@mdf@mono@cmmonotrue
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
262 \fi
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
263
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
264 \if@mdf@WithIBMPlex
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
265 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
266 \RequirePackage[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
267 DefaultFeatures={Scale=0.92},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
268 RMSCfont={},% disable default SC font which uses TeX Gyre Termes
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
269 RM={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
270 %SmallCapsFont=XCharter-Roman,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
271 SmallCapsFont=SourceSerifPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
272 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
273 %BoldFeatures={SmallCapsFont=XCharter-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
274 BoldFeatures={SmallCapsFont=SourceSerifPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
275 %ItalicFeatures={SmallCapsFont=XCharter-Italic},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
276 ItalicFeatures={SmallCapsFont=SourceSerifPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
277 },
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
278 SSSCfont={},% disable default SC font which uses TeX Gyre Heros
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
279 SS={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
280 SmallCapsFont=SourceSansPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
281 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
282 BoldFeatures={SmallCapsFont=SourceSansPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
283 ItalicFeatures={SmallCapsFont=SourceSansPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
284 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
285 math=true]{plex-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
286 \else
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
287 \RequirePackage[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
288 DefaultFeatures={Scale=0.92},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
289 RMSCfont={},% disable default SC font which uses TeX Gyre Termes
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
290 RM={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
291 SmallCapsFont=SourceSerifPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
292 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
293 BoldFeatures={SmallCapsFont=SourceSerifPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
294 ItalicFeatures={SmallCapsFont=SourceSerifPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
295 },
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
296 SSSCfont={},% disable default SC font which uses TeX Gyre Heros
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
297 SS={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
298 SmallCapsFont=SourceSansPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
299 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
300 BoldFeatures={SmallCapsFont=SourceSansPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
301 ItalicFeatures={SmallCapsFont=SourceSansPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
302 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
303 math=false]{plex-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
304 \fi
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
305 \@mdf@augment@ibmplexmonotrue
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
306 \fi
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
307
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
308 \if@mdf@WithIBMPlexDejaVuSansMono
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
309 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
310 \RequirePackage[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
311 DefaultFeatures={Scale=0.92},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
312 RMSCfont={},% disable default SC font which uses TeX Gyre Termes
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
313 RM={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
314 SmallCapsFont=SourceSerifPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
315 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
316 BoldFeatures={SmallCapsFont=SourceSerifPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
317 ItalicFeatures={SmallCapsFont=SourceSerifPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
318 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
319 SSSCfont={},% disable default SC font which uses TeX Gyre Heros
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
320 SS={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
321 SmallCapsFont=SourceSansPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
322 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
323 BoldFeatures={SmallCapsFont=SourceSansPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
324 ItalicFeatures={SmallCapsFont=SourceSansPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
325 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
326 mono=false]{plex-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
327 \else
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
328 \RequirePackage[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
329 DefaultFeatures={Scale=0.92},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
330 RMSCfont={},% disable default SC font which uses TeX Gyre Termes
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
331 RM={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
332 SmallCapsFont=SourceSerifPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
333 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
334 BoldFeatures={SmallCapsFont=SourceSerifPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
335 ItalicFeatures={SmallCapsFont=SourceSerifPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
336 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
337 SSSCfont={},% disable default SC font which uses TeX Gyre Heros
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
338 SS={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
339 SmallCapsFont=SourceSansPro-Regular,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
340 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
341 BoldFeatures={SmallCapsFont=SourceSansPro-Bold},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
342 ItalicFeatures={SmallCapsFont=SourceSansPro-RegularIt},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
343 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
344 mono=false,%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
345 math=false]{plex-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
346 \fi
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
347 \@mdf@mono@dejavusansmonotrue
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
348 \fi
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
349
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
350 \if@mdf@WithAdobeSourcePro
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
351 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
191
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
352 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
353 \setmainfont{Source Serif Pro}[
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
354 UprightFont = *,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
355 BoldFont = * Bold,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
356 ItalicFont = * Italic,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
357 BoldItalicFont = * Bold Italic,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
358 ]
203
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
359 \setsansfont{Source Sans Pro}[
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
360 UprightFont = *,
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
361 BoldFont = * Bold,
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
362 ItalicFont = * Italic,
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
363 BoldItalicFont = * Bold Italic,
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
364 ]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
365 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
366 \defaultfontfeatures{}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
367 \setmathfont{XCharter Math}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
368 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
369 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
370 \fi
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
371 \@mdf@mono@sscodetrue
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
372 \fi
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
373
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
374 \if@mdf@WithSpectral
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
375 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
376 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
377 \setmainfont{Spectral}[
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
378 UprightFont = * Regular,
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
379 BoldFont = * Bold,
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
380 ItalicFont = * Italic,
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
381 BoldItalicFont = * Bold Italic,
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
382 ]
191
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
383 \setsansfont{Source Sans Pro}[
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
384 UprightFont = *,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
385 BoldFont = * Bold,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
386 ItalicFont = * Italic,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
387 BoldItalicFont = * Bold Italic,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
388 ]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
389 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
390 \setmathfont{STIX Two Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
391 \fi
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
392 \@mdf@mono@sscodetrue
203
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
393 \fi
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
394
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
395 \if@mdf@WithCharter
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
396 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
397 \RequirePackage{xcharter-otf}% ALWAYS loads also XCharter Math
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
398 \defaultfontfeatures{}% Reset from package
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
399 \setsansfont{Lato}[
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
400 UprightFont = * Regular,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
401 BoldFont = * Bold,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
402 ItalicFont = * Italic,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
403 BoldItalicFont = * Bold Italic,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
404 Scale = MatchLowercase,
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
405 Numbers = {Lining, Tabular},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
406 Ligatures = TeX,
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
407 ]
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
408 \@mdf@mono@inconsolatatrue
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
409 \fi
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
410
221
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
411 \if@mdf@WithLibertinus
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
412 \RequirePackage{newunicodechar}
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
413 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
414 \RequirePackage[lining,tabular]{libertinus-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
415 \defaultfontfeatures{}% Reset from package
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
416 \setmathfont{Asana Math}[range={"2713,"2AB7,"22D0},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
417 \setmathfont{Libertinus Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
418 \else
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
419 \RequirePackage[lining,tabular,nomath]{libertinus-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
420 \fi
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
421 \@mdf@augment@libertinusmonotrue
221
38e2d8ab4965 Implement a style that uses the Libertinus fonts
Franz Glasner <fzglas.hg@dom66.de>
parents: 220
diff changeset
422 \fi
203
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
423
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
424 \if@mdf@WithGaramond
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
425 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
426 \RequirePackage[lining,tabular]{ebgaramond}
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
427 \defaultfontfeatures{}% Reset from package
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
428 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
429 \setmathfont{Garamond-Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
430 \setmathfont{Asana Math}[range={"2713},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
431 \setmathfont{Garamond-Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
432 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
433 \setsansfont{Libre Franklin}[Scale=MatchLowercase,Ligatures=TeX,Numbers={Lining,Tabular}]
231
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
434 \@mdf@mono@inconsolatatrue
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
435 \fi
8f3a000c3be5 Allow the use of Garamond: EB Garamond, Libre Franklin and Inconsolata (with Garamond Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 230
diff changeset
436
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
437 \if@mdf@WithTufteHack
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
438 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
439 \defaultfontfeatures{Numbers={Lining,Tabular},Ligatures=TeX}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
440 \setmainfont{ETbb}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
441 \setsansfont{GilliusADFNo2}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
442 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
443 \setmathfont{Libertinus Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
444 \setmathfont{Asana Math}[range={"2713,"2AB7,"22D0},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
445 \setmathfont{Libertinus Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
446 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
447 \@mdf@mono@hackmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
448 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
449
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
450 \if@mdf@WithTufteFiraMono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
451 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
232
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
452 \defaultfontfeatures{Numbers={Lining,Tabular},Ligatures=TeX}
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
453 \setmainfont{ETbb}
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
454 \setsansfont{GilliusADFNo2}[Scale=MatchLowercase]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
455 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
456 \setmathfont{Libertinus Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
457 \setmathfont{Asana Math}[range={"2713,"2AB7,"22D0},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
458 \setmathfont{Libertinus Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
459 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
460 \@mdf@mono@firamonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
461 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
462
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
463 \if@mdf@WithTufte
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
464 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
465 \defaultfontfeatures{Numbers={Lining,Tabular},Ligatures=TeX}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
466 \setmainfont{ETbb}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
467 \setsansfont{GilliusADFNo2}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
468 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
469 \setmathfont{Libertinus Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
470 \setmathfont{Asana Math}[range={"2713,"2AB7,"22D0},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
471 \setmathfont{Libertinus Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
472 \fi
232
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
473 \@mdf@mono@dejavusansmonotrue
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
474 \fi
97d66960ea69 A style variant with Tufte fonts: ETbb, GilliusADFNo2 and DejaVu Sans Mono (incl. Libertinus Math)
Franz Glasner <fzglas.hg@dom66.de>
parents: 231
diff changeset
475
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
476 \if@mdf@WithPalatino
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
477 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
478 \linespread{1.06}
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
479 \defaultfontfeatures{Numbers={Lining,Tabular},Ligatures=TeX}
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
480 \setmainfont{TeXGyrePagellaX}
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
481 \setsansfont{Inter}[Scale=MatchLowercase]
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
482 %\setsansfont{Rosario}[Scale=MatchLowercase,ScaleAgain=1.013]
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
483 %\setmathfont{Asana Math}[Scale=MatchLowercase]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
484 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
485 \setmathfont{TeX Gyre Pagella Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
486 \setmathfont{Asana Math}[range={"2AB7},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
487 \setmathfont{TeX Gyre Pagella Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
488 \fi
239
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
489 %\@mdf@mono@sscodetrue
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
490 \@mdf@mono@libertinusmonotrue
234
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
491 \fi
b797e4c0799a A font style option using Palatino (with Math), Inter and Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 232
diff changeset
492
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
493 \if@mdf@WithPalatinoKB
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
494 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
495 \linespread{1.06}
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
496 \defaultfontfeatures{Numbers={Lining,Tabular},Ligatures=TeX}
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
497 \setmainfont{TeXGyrePagellaX}
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
498 \setsansfont{Lato}[%
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
499 UprightFont = * Regular,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
500 BoldFont = * Bold,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
501 ItalicFont = * Italic,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
502 BoldItalicFont = * Bold Italic,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
503 Scale=MatchLowercase]
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
504 %\setsansfont{Rosario}[Scale=MatchLowercase,ScaleAgain=1.013]
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
505 %\setmathfont{Asana Math}[Scale=MatchLowercase]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
506 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
507 \setmathfont{TeX Gyre Pagella Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
508 \setmathfont{Asana Math}[range={"2AB7},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
509 \setmathfont{TeX Gyre Pagella Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
510 \fi
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
511 \@mdf@mono@inconsolatatrue
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
512 \fi
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
513
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
514 \if@mdf@WithPalatinoRosario
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
515 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
516 \linespread{1.06}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
517 \defaultfontfeatures{Numbers={Lining,Tabular},Ligatures=TeX}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
518 \setmainfont{TeXGyrePagellaX}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
519 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
520 \setsansfont{Rosario}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
521 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
522 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
523 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
524 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
525 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
526 \setmonofont{CMU Typewriter Text}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
527 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
528 \setmathfont{Asana Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
529 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
530 \@mdf@augment@cmutypewritertexttrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
531 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
532
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
533 \if@mdf@WithCrimson
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
534 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
535 \defaultfontfeatures{Ligatures=TeX, Numbers={Lining,Tabular}}
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
536 \setmainfont{Crimson Pro}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
537 SmallCapsFont = Erewhon Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
538 SmallCapsFeatures = {Letters = SmallCaps, Scale = MatchLowercase},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
539 BoldFeatures = {SmallCapsFont = Erewhon Bold},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
540 ItalicFeatures = {SmallCapsFont = Erewhon Italic},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
541 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
542 %\setsansfont{Open Sans}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
543 \setsansfont{Clear Sans}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
544 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
545 \defaultfontfeatures{}% Erewhon Math needs this here!
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
546 \setmathfont{Erewhon Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
547 \fi
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
548 %\@mdf@mono@sscodetrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
549 %\@mdf@mono@inconsolatatrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
550 \@mdf@mono@robotomonotrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
551 \fi
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
552
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
553 \if@mdf@WithCrimsonCabin
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
554 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
555 \defaultfontfeatures{Ligatures=TeX, Numbers={Lining,Tabular}}
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
556 \setmainfont{Crimson Pro}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
557 SmallCapsFont = Erewhon Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
558 SmallCapsFeatures = {Letters=SmallCaps, Scale=MatchLowercase},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
559 BoldFeatures = {SmallCapsFont = Erewhon Bold},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
560 ItalicFeatures = {SmallCapsFont = Erewhon Italic},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
561 ]
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
562 \setsansfont{Cabin}[Scale=MatchLowercase]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
563 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
564 \defaultfontfeatures{}% Erewhon Math needs this here!
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
565 \setmathfont{Erewhon Math}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
566 \fi
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
567 %\@mdf@mono@sscodetrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
568 \@mdf@mono@inconsolatatrue
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
569 \fi
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
570
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
571 \if@mdf@WithDejaVu
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
572 \RequirePackage{newunicodechar}
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
573 % automatically applied with Scale=MatchLowercase,...
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
574 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
575 \RequirePackage[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
576 RM={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
577 Scale = 0.92,% as in dejavu-otf
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
578 SmallCapsFont = {XCharter-Roman.otf},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
579 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.12},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
580 ItalicFeatures = {SmallCapsFont = {XCharter-Italic.otf}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
581 BoldFeatures = {SmallCapsFont = {XCharter-Bold.otf}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
582 BoldItalicFeatures = {SmallCapsFont = {XCharter-BoldItalic.otf}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
583 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
584 SS={Scale = 0.92},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
585 mono=true,serif=true,sans=true,math=true]{dejavu-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
586 \setmathfont{XCharter Math}[range={"2713,"2AB7},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
587 \setmathfont{DejaVu Math TeX Gyre}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
588 %\setmathfont{DejaVu Math TeX Gyre}[range={},version=normal]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
589 %\setmathfont{DejaVu Math TeX Gyre}[range={},FakeBold=3,version=bold]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
590 \else
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
591 \RequirePackage[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
592 RM={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
593 Scale = 0.92,% as in dejavu-otf
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
594 SmallCapsFont = {XCharter-Roman.otf},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
595 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.12}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
596 ItalicFeatures = {SmallCapsFont = {XCharter-Italic.otf}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
597 BoldFeatures = {SmallCapsFont = {XCharter-Bold.otf}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
598 BoldItalicFeatures = {SmallCapsFont = {XCharter-BoldItalic.otf}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
599 },%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
600 SS={Scale = 0.92},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
601 mono=true,serif=true,sans=true,math=false]{dejavu-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
602 \fi
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
603 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
604 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
605 % Try to fix for missing \mathrm:
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
606 % https://tex.stackexchange.com/questions/669382/latex-error-math-alphabet-identifier-mathrm-is-undefined-in-math-version
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
607 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
608 % DOES NOT WORK!
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
609 %\mathversion{normal}\let\mathrm\symup
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
610 % THIS WORKS (see also unicode-math.pdf Section 4.4.3 Operator font):
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
611 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
612 \setoperatorfont\symup
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
613 \fi
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
614 \fi
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
615
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
616 \if@mdf@WithMerriweather
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
617 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
618 \linespread{1.06}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
619 \defaultfontfeatures{%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
620 Scale = 0.92,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
621 Ligatures = TeX,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
622 Numbers = {Lining,Tabular},
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
623 Extension = .otf,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
624 }
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
625 \setmainfont{Merriweather}[%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
626 UprightFont = *-Regular ,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
627 ItalicFont = *-Italic ,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
628 BoldFont = *-Bold ,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
629 BoldItalicFont = *-BoldItalic
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
630 ]
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
631 \setsansfont{MerriweatherSans}[%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
632 UprightFont = *-Regular ,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
633 ItalicFont = *-Italic ,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
634 BoldFont = *-Bold ,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
635 BoldItalicFont = *-BoldItalic
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
636 ]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
637 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
638 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
639 \RequirePackage[no-text]{concmath-otf}% for concmath-otf
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
640 \fi
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
641 \@mdf@mono@hackmonotrue
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
642 \fi
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
643
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
644 \if@mdf@WithLiterata
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
645 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
646 \defaultfontfeatures{%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
647 Ligatures = TeX,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
648 Numbers = {Lining,Tabular},
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
649 }
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
650 \setmainfont{Literata}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
651 \setsansfont{Inter}[Scale=MatchLowercase]
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
652 \setmonofont{IBMPlexMono}[%
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
653 Scale = MatchLowercase,
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
654 Extension = .otf,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
655 UprightFont= *-Regular,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
656 BoldFont = *-Bold,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
657 ItalicFont = *-Italic,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
658 BoldItalicFont = *-BoldItalic,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
659 SlantedFont = *-Italic,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
660 ]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
661 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
662 \defaultfontfeatures{Scale=MatchLowercase}% for concmath-otf and Plex Mono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
663 \RequirePackage[no-text]{concmath-otf}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
664 \fi
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
665 \@mdf@augment@ibmplexmonotrue
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
666 \fi
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
667
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
668 \if@mdf@WithLiterataFiraMono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
669 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
670 \defaultfontfeatures{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
671 Ligatures = TeX,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
672 Numbers = {Lining,Tabular},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
673 }
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
674 \setmainfont{Literata}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
675 \defaultfontfeatures{Scale=MatchLowercase, Ligatures=TeX}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
676 \setsansfont{Inter}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
677 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
678 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
679 \RequirePackage[no-text]{concmath-otf}% for concmath-otf
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
680 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
681 \@mdf@mono@firamonomediumtrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
682 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
683
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
684 \if@mdf@WithLiterataRobotoMono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
685 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
686 \defaultfontfeatures{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
687 Ligatures = TeX,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
688 Numbers = {Lining,Tabular},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
689 }
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
690 \setmainfont{Literata}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
691 \setsansfont{Cabin}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
692 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
693 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
694 \RequirePackage[no-text]{concmath-otf}% for concmath-otf
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
695 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
696 \@mdf@mono@robotomonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
697 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
698
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
699 \if@mdf@WithVollkorn
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
700 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
701 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
702 \setmainfont{Vollkorn}[
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
703 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
704 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
705 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
706 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
707 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
708 \setsansfont{Jost}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
709 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
710 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
711 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
712 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
713 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
714 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
715 \setmonofont{CascadiaMono}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
716 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
717 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
718 \setmathfont{STIX Two Math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
719 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
720 \@mdf@augment@cascadiacodetrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
721 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
722
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
723 \if@mdf@WithErewhon
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
724 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
725 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
726 \setmainfont{Erewhon}[
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
727 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
728 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
729 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
730 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
731 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
732 \setsansfont{Rosario}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
733 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
734 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
735 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
736 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
737 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
738 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
739 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
740 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
741 \setmathfont{Erewhon Math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
742 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
743 \@mdf@mono@hackmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
744 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
745
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
746 \if@mdf@WithGentium
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
747 \if@mdf@UseUnicodeMath\RequirePackage[math-style=upright]{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
748 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
749 \setmainfont{Gentium}[
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
750 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
751 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
752 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
753 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
754 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
755 \setsansfont{Alegreya Sans}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
756 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
757 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
758 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
759 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
760 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
761 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
762 \setmonofont{JetBrains Mono}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
763 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
764 \RequirePackage[Scale=MatchLowercase]{euler-math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
765 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
766 \setmathfont{XCharter Math}[range={"03F1,"1D71A}]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
767 \setmathfont{Euler Math}[range={}]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
768 %\setmathfont{Euler Math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
769 %\renewcommand{\varrho}{\rho}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
770 %\renewcommand{\rho}{\mbfsansrho}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
771 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
772 \@mdf@augment@jetbrainsmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
773 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
774
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
775 \if@mdf@WithZillaSlab
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
776 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
777 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
778 \setmainfont{Zilla Slab}[
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
779 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
780 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
781 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
782 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
783 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
784 \setsansfont{Metropolis}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
785 Scale=MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
786 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
787 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
788 ItalicFont = * Regular Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
789 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
790 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
791 % \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
792 % \setmonofont{JetBrains Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
793 % Ligatures = TeX
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
794 % ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
795 \setmonofont{IBMPlexMonoText}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
796 Scale=MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
797 Extension = .otf,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
798 UprightFont= IBMPlexMono-Text,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
799 BoldFont = IBMPlexMono-Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
800 ItalicFont = IBMPlexMono-TextItalic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
801 BoldItalicFont = IBMPlexMono-BoldItalic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
802 SlantedFont = IBMPlexMono-TextItalic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
803 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
804 \@mdf@augment@ibmplexmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
805
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
806 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
807 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
808 \RequirePackage[no-text]{concmath-otf}% for concmath-otf
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
809 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
810 %\@mdf@augment@jetbrainsmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
811 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
812
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
813 \if@mdf@WithAleo
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
814 \if@mdf@UseUnicodeMath\RequirePackage[math-style=upright]{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
815 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
816 \setmainfont{Aleo}[
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
817 Extension = .ttf,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
818 UprightFont = {Aleo-VariableFont_wght} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
819 UprightFeatures = {Instance = Regular} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
820 ItalicFont = {Aleo-Italic-VariableFont_wght} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
821 ItalicFeatures = {Instance = Italic} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
822 BoldFont = {Aleo-VariableFont_wght} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
823 BoldFeatures = {Instance = Bold} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
824 BoldItalicFont = {Aleo-Italic-VariableFont_wght} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
825 BoldItalicFeatures = {Instance = {Bold Italic}} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
826 SmallCapsFont = {ZillaSlab-Medium.otf} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
827 SmallCapsFeatures = {Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.1} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
828 ItalicFeatures = {SmallCapsFont = {ZillaSlab-MediumItalic.otf}} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
829 BoldFeatures = {SmallCapsFont = {ZillaSlab-Bold.otf}} ,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
830 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
831 \setsansfont{Lato}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
832 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
833 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
834 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
835 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
836 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
837 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
838 \setmonofont{IBMPlexMonoText}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
839 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
840 Extension = .otf,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
841 UprightFont= IBMPlexMono-Text,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
842 BoldFont = IBMPlexMono-Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
843 ItalicFont = IBMPlexMono-TextItalic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
844 BoldItalicFont = IBMPlexMono-BoldItalic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
845 SlantedFont = IBMPlexMono-TextItalic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
846 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
847 \@mdf@augment@ibmplexmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
848
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
849 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
850 \defaultfontfeatures{}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
851 \RequirePackage[Scale=MatchLowercase]{euler-math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
852 \setmathfont{XCharter Math}[range={"03F1,"1D71A},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
853 \setmathfont{Euler Math}[range={},Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
854 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
855 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
856
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
857 \if@mdf@WithLora
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
858 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
859 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
860 \linespread{1.02}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
861 \setmainfont{Lora}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
862 Scale = 0.98,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
863 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
864 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
865 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
866 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
867 SmallCapsFont = {STIX Two Text},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
868 SmallCapsFeatures={Letters=SmallCaps, Scale=MatchLowercase, ScaleAgain=1.05},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
869 BoldFeatures={SmallCapsFont={STIX Two Text Bold}},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
870 ItalicFeatures={SmallCapsFont={STIX Two Text Italic}},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
871 BoldItalicFeatures={SmallCapsFont={STIX Two Text Bold Italic}},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
872 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
873 \setsansfont{Libre Franklin}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
874 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
875 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
876 \setmathfont{Asana Math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
877 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
878 %\@mdf@mono@libertinusmonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
879 \@mdf@mono@gomonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
880 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
881
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
882 \if@mdf@WithBaskerville
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
883 \if@mdf@UseUnicodeMath\RequirePackage[math-style=upright]{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
884 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
885 \linespread{1.02}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
886 \setmainfont{Libre Baskerville}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
887 Scale=0.92,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
888 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
889 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
890 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
891 %BoldItalicFont = * Bold Italic, % no bold italic font for Baskerville
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
892 SmallCapsFont = {Erewhon Regular},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
893 SmallCapsFeatures={%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
894 Letters = SmallCaps,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
895 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
896 ScaleAgain=1.16
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
897 },
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
898 BoldFeatures={SmallCapsFont={Erewhon Bold}},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
899 ItalicFeatures={SmallCapsFont={Erewhon Italic}},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
900 BoldItalicFeatures={SmallCapsFont={Erewhon Bold Italic}},
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
901 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
902 \setsansfont{Metropolis}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
903 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
904 UprightFont= * Medium,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
905 ItalicFont = * Medium Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
906 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
907 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
908 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
909 \setmonofont{CMU Typewriter Text}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
910 Scale = MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
911 ScaleAgain = 0.98,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
912 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
913 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
914 \defaultfontfeatures{}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
915 \RequirePackage[Scale=MatchLowercase]{euler-math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
916 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
917 \setmathfont{XCharter Math}[range={"03F1,"1D71A}]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
918 \setmathfont{Euler Math}[range={}]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
919 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
920 \@mdf@augment@cmutypewritertexttrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
921 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
922
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
923 \if@mdf@WithStix
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
924 \if@mdf@UseUnicodeMath\RequirePackage{unicode-math}\fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
925 \defaultfontfeatures{Ligatures=TeX,Numbers={Lining,Tabular}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
926 \setmainfont{STIX Two Text}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
927 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
928 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
929 ItalicFont = * Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
930 BoldItalicFont = * Bold Italic,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
931 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
932 \setsansfont{Inter}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
933 \setmonofont{CMU Typewriter Text}[Scale=MatchLowercase]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
934 \if@mdf@UseUnicodeMath
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
935 \defaultfontfeatures{Scale=MatchLowercase}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
936 \setmathfont{STIX Two Math}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
937 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
938 \@mdf@augment@cmutypewritertexttrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
939 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
940
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
941 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
942 % MONO
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
943 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
944
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
945 % Used for most
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
946 \defaultfontfeatures{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
947 Scale=MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
948 Ligatures=TeX,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
949 Numbers={Lining,Tabular}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
950 }
203
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
951
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
952 \if@mdf@mono@dejavusansmono
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
953 \RequirePackage{newunicodechar}
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
954 % automatically applied with Scale=MatchLowercase,...
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
955 \defaultfontfeatures{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
956 Ligatures=TeX,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
957 Numbers={Lining,Tabular}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
958 }
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
959 \RequirePackage[mono=true,serif=false,sans=false,math=false]{dejavu-otf} % almost all symbols are available
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
960 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
961 \fi
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
962
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
963 \if@mdf@mono@cmmono
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
964 \RequirePackage{newunicodechar}
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
965 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
966 UprightFont = *,
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
967 BoldFont = * Bold,
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
968 ItalicFont = * Oblique,
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
969 BoldItalicFont = * Bold Oblique,
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
970 ]
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
971 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
972 UprightFont = *,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
973 BoldFont = * Bold,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
974 ItalicFont = * Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
975 BoldItalicFont = * Bold Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
976 ]
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
977 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
978 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
979 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
980 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
981 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
982 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
983 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
984 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
985 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
986 \newunicodechar{}{{\DejaVuSansMono }}% U+25AA
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
987 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
988 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
989 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
990 \newunicodechar{}{{\DejaVuSansMono }}% U+2260
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
991 \newunicodechar{}{{\DejaVuSansMono }}% U+2264
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
992 \newunicodechar{}{{\DejaVuSansMono }}% U+2265
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
993 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
994 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
995 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
996 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
997 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
998 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
999 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1000 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1001 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1002 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1003 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1004 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1005 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1006 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
225
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
1007 \PassOptionsToPackage{%
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
1008 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
1009 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
eb3d0ae3143b Augment CM fonts with missing symbols
Franz Glasner <fzglas.hg@dom66.de>
parents: 223
diff changeset
1010 {sphinx}
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1011 \fi
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1012
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1013 \if@mdf@mono@sscode
203
ede8b44f6faf Refactor the PDF font style: select only the mono font by internal flag
Franz Glasner <fzglas.hg@dom66.de>
parents: 196
diff changeset
1014 \RequirePackage{newunicodechar}
191
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1015 \setmonofont{Source Code Pro}[
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1016 UprightFont = *,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1017 BoldFont = * Bold,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1018 ItalicFont = * Italic,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1019 BoldItalicFont = * Bold Italic,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1020 ]
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1021 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1022 UprightFont = *,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1023 BoldFont = * Bold,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1024 ItalicFont = * Oblique,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1025 BoldItalicFont = * Bold Oblique,
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1026 ]
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1027 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1028 UprightFont = *,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1029 BoldFont = * Bold,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1030 ItalicFont = * Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1031 BoldItalicFont = * Bold Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1032 ]
191
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1033 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1034 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1035 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1036 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1037 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1038 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1039 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1040 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
1041 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1042 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1043 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1044 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1045 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1046 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1047 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1048 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1049 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1050 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1051 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1052 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1053 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1054 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1055 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1056 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
191
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1057 \PassOptionsToPackage{%
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1058 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1059 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1060 {sphinx}
c10b2092c48f Also make a PDF style variant using Adobe Source Serif/Sans/Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 189
diff changeset
1061 \fi
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
1062
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1063 \if@mdf@mono@inconsolata
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1064 \RequirePackage{newunicodechar}
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1065 \setmonofont{Inconsolata LGC Nerd Font Mono}[%
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1066 UprightFont = *,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1067 BoldFont = * Bold,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1068 ItalicFont = * Italic,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1069 BoldItalicFont = * Bold Italic,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1070 ]
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1071 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1072 UprightFont = *,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1073 BoldFont = * Bold,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1074 ItalicFont = * Oblique,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1075 BoldItalicFont = * Bold Oblique,
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1076 ]
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1077 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1078 UprightFont = *,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1079 BoldFont = * Bold,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1080 ItalicFont = * Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1081 BoldItalicFont = * Bold Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1082 ]
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1083 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1084 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1085 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1086 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1087 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1088 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1089 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1090 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1091 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1092 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1093 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1094 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1095 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1096 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1097 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1098 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1099 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1100 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1101 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1102 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1103 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1104 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1105
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1106 %\RequirePackage{pifont}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1107 %\newunicodechar{}{\ding{51}}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1108
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1109 %\newunicodechar{}{{\DejaVuSansMono }}% U+2713
204
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1110 \fi
afecfdcfd288 A new style "charter" for PDFs with "XCharter", "Lato" and "Inconsolata".
Franz Glasner <fzglas.hg@dom66.de>
parents: 203
diff changeset
1111
222
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1112 \if@mdf@mono@robotomono
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1113 \RequirePackage{newunicodechar}
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1114 \setmonofont{Roboto Mono}[%
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1115 UprightFont = *,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1116 BoldFont = * Bold,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1117 ItalicFont = * Italic,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1118 BoldItalicFont = * Bold Italic,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1119 ]
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1120 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1121 UprightFont = *,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1122 BoldFont = * Bold,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1123 ItalicFont = * Oblique,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1124 BoldItalicFont = * Bold Oblique,
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1125 ]
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1126 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1127 UprightFont = *,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1128 BoldFont = * Bold,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1129 ItalicFont = * Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1130 BoldItalicFont = * Bold Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1131 ]
222
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1132 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1133 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
222
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1134 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1135 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1136 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1137 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1138 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1139 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1140 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1141 \newunicodechar{}{{\DejaVuSansMono }}% U+25AA
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1142 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1143 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1144 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1145 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1146 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1147 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1148 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1149 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1150 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1151 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1152 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1153 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1154 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1155 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1156 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1157 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1158 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1159 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
222
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1160 \PassOptionsToPackage{%
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1161 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1162 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1163 {sphinx}
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1164 \fi
be0cca3df1eb Allow the font style "Roboto Mono"
Franz Glasner <fzglas.hg@dom66.de>
parents: 221
diff changeset
1165
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1166 \if@mdf@mono@hackmono
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1167 \RequirePackage{newunicodechar}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1168 \setmonofont{Hack}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1169 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1170 UprightFont = *,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1171 BoldFont = * Bold,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1172 ItalicFont = * Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1173 BoldItalicFont = * Bold Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1174 ]
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1175 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1176 UprightFont = *,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1177 BoldFont = * Bold,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1178 ItalicFont = * Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1179 BoldItalicFont = * Bold Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1180 ]
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1181 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1182 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1183 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1184 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1185 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1186 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1187 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1188 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1189 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1190 \newunicodechar{}{{\DejaVuSansMono }}% U+2713
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1191 \PassOptionsToPackage{%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1192 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1193 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1194 {sphinx}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1195 \fi
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1196
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1197 \if@mdf@mono@firamono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1198 \setmonofont{Fira Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1199 UprightFont = * Regular,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1200 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1201 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1202 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1203 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1204 \@mdf@augment@firamonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1205 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1206
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1207 \if@mdf@mono@firamonomedium
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1208 \setmonofont{Fira Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1209 UprightFont = * Medium,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1210 ItalicFont = * Medium Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1211 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1212 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1213 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1214 \@mdf@augment@firamonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1215 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1216
239
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1217 \if@mdf@mono@libertinusmono
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1218 \defaultfontfeatures{}
239
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1219 % This is stolen from libertinus-otf.sty!
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1220 \setmonofont{LibertinusMono}[%
242
0737faace808 A style variant with "Crimson Pro", "Cabin", "Source Code Pro" and "Erewhon Math"
Franz Glasner <fzglas.hg@dom66.de>
parents: 240
diff changeset
1221 Ligatures = TeX,
239
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1222 Numbers = {Lining, Tabular},
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1223 Scale = MatchLowercase,
240
e18c4bec7889 Do not stretch the Libertinus Mono font with 0.9 but with 0.94 for Palatino
Franz Glasner <fzglas.hg@dom66.de>
parents: 239
diff changeset
1224 FakeStretch = 0.94,
239
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1225 UprightFont = *-Regular,
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1226 ItalicFont = *-Regular,
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1227 ItalicFeatures = {FakeSlant=0.2},
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1228 SlantedFont = *-Regular,
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1229 SlantedFeatures= {FakeSlant=0.2},
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1230 BoldFont = *-Regular,
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1231 BoldFeatures = {RawFeature={embolden=3}},
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1232 BoldItalicFont = *-Regular,
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1233 BoldItalicFeatures={FakeSlant=0.2,RawFeature={embolden=3}},
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1234 Extension = .otf,
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1235 ]
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1236 \@mdf@augment@libertinusmonotrue
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1237 \fi
e3baa7e72af3 Use "Libertinus Mono" with Palatino instead of Source Code Pro
Franz Glasner <fzglas.hg@dom66.de>
parents: 238
diff changeset
1238
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1239 \if@mdf@mono@gomono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1240 \setmonofont{Go Mono}[ScaleAgain = 0.95]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1241 \@mdf@augment@gomonotrue
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1242 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1243
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1244 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1245 % AUGMENT
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1246 %
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1247
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1248 % Used for all below
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1249 \defaultfontfeatures{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1250 Scale=MatchLowercase,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1251 Ligatures=TeX,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1252 Numbers={Lining,Tabular}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1253 }
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1254
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1255 \if@mdf@augment@ibmplexmono
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1256 \RequirePackage{newunicodechar}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1257 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1258 UprightFont = *,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1259 BoldFont = * Bold,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1260 ItalicFont = * Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1261 BoldItalicFont = * Bold Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1262 ]
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1263 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1264 UprightFont = *,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1265 BoldFont = * Bold,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1266 ItalicFont = * Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1267 BoldItalicFont = * Bold Oblique,
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1268 ]
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1269 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1270 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
280
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1271 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1272 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1273 \newunicodechar{}{{\DejaVuSansMono }}% U+25AA
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1274 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1275 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1276 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1277 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1278 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1279 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1280 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1281 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1282 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1283 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1284 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1285 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1286 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1287 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1288 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1289 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1290 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1291 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1292 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1293 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1294 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1295 %\newunicodechar{^^^^2423}{{\DejaVuSansMono^^^^2423}}% U+2423
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1296 %\newunicodechar{}{\textvisiblespace}% U+2423
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1297 %\catcode`^^^^2423\active\protected\def^^^^2423{\textvisiblespace}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1298
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1299 \PassOptionsToPackage{%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1300 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1301 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1302 {sphinx}
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1303 \fi
1b0e58f60f73 Update to latest my-doc-XXX.sty for PDF builds
Franz Glasner <fzglas.hg@dom66.de>
parents: 262
diff changeset
1304
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1305 \if@mdf@augment@libertinusmono
238
b60d719f7cde FIX: Package newunicodechar is required for augmenting
Franz Glasner <fzglas.hg@dom66.de>
parents: 236
diff changeset
1306 \RequirePackage{newunicodechar}
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1307 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1308 UprightFont = *,
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1309 BoldFont = * Bold,
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1310 ItalicFont = * Oblique,
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1311 BoldItalicFont = * Bold Oblique,
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1312 ]
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1313 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1314 UprightFont = *,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1315 BoldFont = * Bold,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1316 ItalicFont = * Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1317 BoldItalicFont = * Bold Oblique,
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1318 ]
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1319 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1320 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1321 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1322 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1323 \newunicodechar{}{{\DejaVuSansMono }}% U+25AA
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1324 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1325 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1326 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1327 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1328 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1329 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1330 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1331 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1332 \newunicodechar{}{{\DejaVuSansMono }}% U+2260
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1333 \newunicodechar{}{{\DejaVuSansMono }}% U+2264
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1334 \newunicodechar{}{{\DejaVuSansMono }}% U+2265
262
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1335 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1336 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1337 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1338 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1339 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1340 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1341 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1342 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1343 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1344 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1345 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1346 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1347 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1348 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
27fd802338c6 Update to my-doc-fonts.sty v0.5
Franz Glasner <fzglas.hg@dom66.de>
parents: 243
diff changeset
1349 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1350 \newunicodechar{}{{\DejaVuSansMono }}% U+2713
236
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1351 %\newunicodechar{^^^^2423}{{\DejaVuSansMono^^^^2423}}% U+2423
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1352 %\newunicodechar{}{\textvisiblespace}% U+2423
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1353 %\catcode`^^^^2423\active\protected\def^^^^2423{\textvisiblespace}
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1354
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1355 \PassOptionsToPackage{%
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1356 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1357 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1358 {sphinx}
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1359 \fi
28639bddddd0 Make the use of "Libertinus Mono" more flexible by adding a flag that just augments it.
Franz Glasner <fzglas.hg@dom66.de>
parents: 235
diff changeset
1360
298
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1361 \if@mdf@augment@redhatmono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1362 \RequirePackage{newunicodechar}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1363 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1364 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1365 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1366 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1367 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1368 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1369 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1370 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1371 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1372 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1373 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1374 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1375 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1376 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1377 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1378 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1379 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1380 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1381 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1382 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1383 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1384 \newunicodechar{}{{\DejaVuSansMono }}% U+25AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1385 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1386 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1387 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1388 % \newunicodechar{}{{\DejaVuSansMono }}% U+2260
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1389 \newunicodechar{}{{\DejaVuSansMono }}% U+2264
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1390 \newunicodechar{}{{\DejaVuSansMono }}% U+2265
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1391 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1392 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1393 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1394 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1395 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1396 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1397 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1398 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1399 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1400 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1401 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1402 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1403 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1404 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1405 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1406 \PassOptionsToPackage{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1407 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1408 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1409 {sphinx}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1410 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1411
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1412 \if@mdf@augment@cascadiacode
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1413 \RequirePackage{newunicodechar}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1414 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1415 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1416 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1417 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1418 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1419 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1420 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1421 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1422 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1423 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1424 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1425 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1426 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1427 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1428 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1429 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1430 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1431 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1432 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1433 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1434 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1435 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1436 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1437 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1438 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1439 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1440 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1441 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1442 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1443 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1444 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1445 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1446 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1447 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1448 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1449 \PassOptionsToPackage{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1450 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1451 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1452 {sphinx}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1453 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1454
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1455 \if@mdf@augment@jetbrainsmono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1456 \RequirePackage{newunicodechar}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1457 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1458 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1459 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1460 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1461 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1462 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1463 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1464 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1465 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1466 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1467 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1468 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1469 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1470 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1471 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1472 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1473 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1474 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1475 % \PassOptionsToPackage{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1476 % verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1477 % verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1478 % {sphinx}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1479 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1480
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1481 \if@mdf@augment@firamono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1482 \RequirePackage{newunicodechar}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1483 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1484 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1485 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1486 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1487 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1488 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1489 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1490 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1491 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1492 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1493 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1494 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1495 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1496 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1497 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1498 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1499 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1500 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1501 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1502 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1503 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1504 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1505 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1506 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1507 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1508 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1509 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1510 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1511 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1512 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1513 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1514 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1515 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1516 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1517 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1518 \newunicodechar{}{{\DejaVuSansMono }}% U+2713
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1519
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1520 \PassOptionsToPackage{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1521 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1522 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1523 {sphinx}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1524 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1525
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1526 \if@mdf@augment@cmutypewritertext
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1527 \RequirePackage{newunicodechar}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1528 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1529 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1530 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1531 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1532 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1533 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1534 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1535 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1536 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1537 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1538 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1539 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1540 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1541 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1542 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1543 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1544 \newunicodechar{}{{\DejaVuSansMono }}% U+25AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1545 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1546 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1547 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1548 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1549 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1550 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1551 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1552 \newunicodechar{}{{\DejaVuSansMono }}% U+2260
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1553 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1554 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1555 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1556 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1557 \newunicodechar{}{{\DejaVuSansMono }}% U+2264
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1558 \newunicodechar{}{{\DejaVuSansMono }}% U+2265
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1559 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1560 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1561 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1562 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1563 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1564 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1565 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1566 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1567 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1568 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1569 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1570 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1571 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1572
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1573 \if@mdf@augment@gomono
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1574 \RequirePackage{newunicodechar}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1575 \newfontfamily\DejaVuSansMono{DejaVu Sans Mono}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1576 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1577 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1578 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1579 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1580 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1581 \newfontfamily\DejaVuSansCondensed{DejaVu Sans Condensed}[%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1582 UprightFont = *,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1583 BoldFont = * Bold,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1584 ItalicFont = * Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1585 BoldItalicFont = * Bold Oblique,
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1586 ]
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1587 \newunicodechar{}{{\DejaVuSansMono }}% U+25B7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1588 \newunicodechar{}{{\DejaVuSansMono }}% U+25B9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1589 \newunicodechar{}{{\DejaVuSansMono }}% U+2236
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1590 \newunicodechar{}{{\DejaVuSansMono }}% U+25C6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1591 \newunicodechar{}{{\DejaVuSansMono }}% U+27F5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1592 \newunicodechar{}{{\DejaVuSansMono }}% U+27F6
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1593 \newunicodechar{}{{\DejaVuSansMono }}% U+27F7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1594 \newunicodechar{}{{\DejaVuSansMono }}% U+21D2
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1595 \newunicodechar{}{{\DejaVuSansMono }}% U+21D4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1596 \newunicodechar{}{{\DejaVuSansMono }}% U+2208
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1597 \newunicodechar{}{{\DejaVuSansMono }}% U+220C
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1598 \newunicodechar{}{{\DejaVuSansMono }}% U+2260
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1599 \newunicodechar{}{{\DejaVuSansMono }}% U+225F
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1600 \newunicodechar{}{{\DejaVuSansMono }}% U+2423
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1601 \newunicodechar{}{{\DejaVuSansMono }}% U+21AA
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1602 \newunicodechar{}{{\DejaVuSansMono }}% U+21A9
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1603 \newunicodechar{}{{\DejaVuSansMono }}% U+2264
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1604 \newunicodechar{}{{\DejaVuSansMono }}% U+2265
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1605 \newunicodechar{}{{\DejaVuSansMono }}% U+2259
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1606 \newunicodechar{}{{\DejaVuSansMono }}% U+21E7
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1607 \newunicodechar{}{{\DejaVuSansMono }}% U+2303
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1608 \newunicodechar{}{{\DejaVuSansMono }}% U+2388
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1609 \newunicodechar{}{{\DejaVuSansMono }}% U+2325
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1610 \newunicodechar{}{{\DejaVuSansCondensed }}% U+2387
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1611 \newunicodechar{}{{\DejaVuSansMono }}% U+2318
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1612 \newunicodechar{}{{\DejaVuSansMono }}% U+23CF
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1613 \newunicodechar{}{{\DejaVuSansMono }}% U+232B
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1614 \newunicodechar{}{{\DejaVuSansMono }}% U+2326
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1615 \newunicodechar{}{{\DejaVuSansMono }}% U+21E5
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1616 \newunicodechar{}{{\DejaVuSansMono }}% U+21E4
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1617
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1618 \PassOptionsToPackage{%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1619 verbatimvisiblespace={\textcolor{red}{{\DejaVuSansMono^^^^2423}}},%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1620 verbatimcontinued={\textcolor{red}{{\DejaVuSansMono^^^^21aa}}}}%
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1621 {sphinx}
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1622 \fi
0052d12ec437 Update to latest Sphinx customizations
Franz Glasner <fzglas.hg@dom66.de>
parents: 280
diff changeset
1623
196
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
1624 \defaultfontfeatures{}
d57cf1bb96d6 A new PDF style using "Spectral" with Source Sans/Code
Franz Glasner <fzglas.hg@dom66.de>
parents: 191
diff changeset
1625
218
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1626 \def\testmdf{
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1627 Normalized: \@mdf@fonts\newline
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1628 }
5114d49a8eab A new interface for my-doc-fonts.sty and a new implementation of option processing.
Franz Glasner <fzglas.hg@dom66.de>
parents: 215
diff changeset
1629
181
dcbc66f851eb A style file for (Lua)LaTeX that loads the required fonts.
Franz Glasner <fzglas.hg@dom66.de>
parents:
diff changeset
1630 \endinput