├── .gitignore ├── .htaccess ├── OpenSans-Bold.ttf ├── OpenSans-Regular.ttf ├── README.md ├── access-test.php ├── css └── default.css ├── epub.css ├── font-list ├── gittobook.png ├── images └── gittobook.png ├── meta.yaml ├── templates ├── bak.body.html ├── body-with-author.htm ├── body.html ├── default.html ├── test.latex └── test3.latex └── test.php /.gitignore: -------------------------------------------------------------------------------- 1 | *.epub 2 | -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- 1 | doh 2 | -------------------------------------------------------------------------------- /OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/git-to-book-docs/067f7fa2bc9212dca23f5b596b74da76c689b043/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/git-to-book-docs/067f7fa2bc9212dca23f5b596b74da76c689b043/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Git to Book Documentation 2 | 3 | ## Very quick start and demo. 4 | 5 | Login to [https://gittobook.org](https://gittobook.org), and add a repo with some markdown files ending in `.md` or `.markdown`. Then ` 6 | HTML`, `Epub`, and `MOBI` versions will be created, which then can be downloaded. 7 | 8 | ## less quicker start 9 | 10 | **Gittobook** (git-to-book) is an easy way to write to multiple formats using markdown. It transforms a git repository containing markdown files into Epub, Mobi, and PDF. These formats are often formats used to create books - online ebooks or for books for print. 11 | 12 | It is basically a bridge between **pandoc** ([http://pandoc.org](http://pandoc.org)) and **git**. Pandoc is used to generate the different output formats, and git repositories are used to store the written markdown files, and assets, such as templates, CSS, fonts, and images. The aim is to enable people to use git when writing large text documents, which has to be transformed into different formats. 13 | 14 | There is a online version, which you can log into. This can be found on [http://gittobook.org](http://gittobook.org). The online version will export to Epub, Mobi, PDF and HTML, but with some restrictions in templates and options. 15 | 16 | When you add a new git repo URL to the system, gittobook will checkout the repo, and look for any markdown files (`.md`). It will always checkout the `default` branch - this is often `master`, but does not have to be. The markdown files found are then collected into one document, which is transformed using pandoc. 17 | 18 | You can browse this documentation on the github.com repository location ([https://github.com/diversen/git-to-book-docs](https://github.com/diversen/git-to-book-docs)) or on the gittobook.org website location ([http://gittobook.org/books/47/git-to-book-docs](http://gittobook.org/books/47/git-to-book-docs)). This is the repo used to generate the git-to-book-docs. You can also fork it and suggest edits. This document is just a simple `README.md`. 19 | 20 | If you work on a larger book you can just add some directories to keep you content better organised. The file structure is parsed so that any directories are first examined for markdown files, which should end on the `.md` or `.markdown` extension. The way a directory is listed resembles the way [http://github.com](http://github.com) displays files, when looking at a repository online. This means directories are displayed first, and then files. In order to keep you files in the right order you can add e.g. `01-`, `02-` etc. in front of directories and documents, as this will give you the sorting you want. 21 | 22 | Images are inserted as normal. Just remember to have the correct path to the image: 23 | 24 | e.g: 25 | 26 | ![gittobook image](images/gittobook.png "Gittobook logo") 27 | 28 | Becomes: 29 | 30 | ![gittobook image](images/gittobook.png "Gittobook logo") 31 | 32 | 33 | ## Pandoc config / meta.yaml 34 | 35 | The gittobook will prepend a `meta.yaml` file if one is found (for adding meta data to the document - such as author, title, cover-image, build commands, etc). In the `meta.yaml` you can specify title, author, and other meta info used with pandoc. This is quite a simple `meta.yaml`. 36 | 37 | ~~~yaml 38 | --- 39 | title: 'Git to book documentation' 40 | Subtitle: > 41 | A simple way to generate 42 | PDF, EPUB, MOBI, HTML, 43 | using Markdown and git repositories. 44 | Output formats are generated using Pandoc. 45 | subject: Gittobook documentation 46 | author: 47 | - Dennis Bæk Iversen 48 | keywords: ebooks, pandoc, pdf, html 49 | rights: Creative Commons Non-Commercial Share Alike 3.0 50 | language: en-US 51 | lang: en 52 | cover-image: images/cover.jpg 53 | tags: [pandoc, pdf, epub, mobi creation] 54 | ... 55 | ~~~ 56 | 57 | If there is not found any meta.yaml, then the books will be built with some default options. Title becomes and author is extracted from the git-repo, e.g. the title of this document becomes `Git to book docs` and the author is set to `diversen`. If there is no `cover-image` (for Epubs and Mobi files), then the system will generate a default cover image. 58 | 59 | You can also specify build commands used, when pandoc executes the command. You can see an example here: [https://github.com/diversen/git-to-book-docs/blob/master/meta.yaml](https://github.com/diversen/git-to-book-docs/blob/master/meta.yaml). You will see that the `format-arguments` are specific to gittobook, otherwise it is a standard pandoc `.yaml file`. The `format-arguments` are the command line options given to pandoc. You can also add files to `ignore-files`, e.g. `README.md`. 60 | 61 | If there is no `format-arguments` then some default `format-arguments` will be used. 62 | 63 | ## Pandoc options 64 | 65 | The following pandoc options are allowed in the online version. If you build the software youself all options are allowed. Note: These descriptions are taken from pandoc documentation. 66 | 67 | Produce typographically correct output, converting straight quotes to curly quotes: 68 | 69 | -S 70 | --smart 71 | 72 | Specify the base level for headers (defaults to 1) 73 | 74 | --base-header-level=[1-6] 75 | 76 | Produce output with an appropriate header and footer. 77 | 78 | -s 79 | --standalone 80 | 81 | Include an automatically generated table of contents 82 | 83 | --toc 84 | 85 | Specify the number of section levels to include in the table of contents. The default is 3 86 | 87 | --toc-depth=[1-6] 88 | 89 | Syntax highlight filter: Options are pygments (the default), kate, monochrome, espresso, zenburn, haddock, and tango. 90 | 91 | --highlight-style=[string] 92 | 93 | Produce a standalone HTML file with no external dependencies, images and css will be embeded. 94 | 95 | --self-contained 96 | 97 | Produce HTML5 instead of HTML4. 98 | 99 | --html5 100 | 101 | Treat top-level headers as chapters in LaTeX, ConTeXt, and DocBook output. 102 | 103 | --chapters 104 | 105 | Number section headings in LaTeX, ConTeXt, HTML, or EPUB output. 106 | 107 | -N 108 | --number-sections 109 | 110 | Use the specified CSS file to style the EPUB 111 | 112 | --epub-stylesheet 113 | 114 | Headers level in epub files. 115 | 116 | --epub-chapter-level=[1-6] 117 | 118 | Embed a epub font 119 | 120 | --epub-embed-font=[path/to/font] 121 | 122 | Pandoc variables. 123 | 124 | -V=variable 125 | 126 | Allowed subset of variables: 127 | 128 | geometry:margin 129 | documentclass 130 | lang 131 | 132 | Vairable example: 133 | 134 | -V sansfont=Arial -V fontsize=12pt -V version=1.10 135 | 136 | ## Fonts 137 | 138 | When using pandoc for transformation of e.g. chinese you will need to change your font in order to get a readable result. Here are a list of fonts on the server. If you install local you will usually be able to get a font list with the command `fc-list`. 139 | 140 | This is the fonts on the server: 141 | 142 | 143 | 144 | In order to use e.g. chinese you will se that a chinese font exists: `WenQuanYi Micro Hei Mono` is the font name. Found on line 529. 145 | 146 | In your meta tag you should add something like the following. 147 | 148 | format-arguments: 149 | pdf: > 150 | -V mainfont='WenQuanYi Micro Hei Mono' 151 | -V sansfont='WenQuanYi Micro Hei Mono' 152 | -V monofont='WenQuanYi Micro Hei Mono' 153 | 154 | ## Useful Resources 155 | 156 | Template variables 157 | 158 | [http://johnmacfarlane.net/pandoc/README.html#templates](http://johnmacfarlane.net/pandoc/README.html#templates) 159 | 160 | The pandoc markdown. 161 | 162 | [http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html](http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html) 163 | 164 | Math LaTex: 165 | 166 | [http://en.wikibooks.org/wiki/LaTeX/Mathematics](http://en.wikibooks.org/wiki/LaTeX/Mathematics) 167 | 168 | This: 169 | 170 | $$ 171 | \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. 172 | $$ 173 | 174 | renders: 175 | 176 | $$ 177 | \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. 178 | $$ 179 | 180 | 181 | Some other Pandoc templates: 182 | 183 | [https://github.com/jgm/pandoc/wiki/User-contributed-templates](https://github.com/jgm/pandoc/wiki/User-contributed-templates) 184 | 185 | # Install local 186 | 187 | ## Requirements: 188 | 189 | * Apache2 190 | * php5 >= 5.5 191 | * mysql-server 192 | * pandoc 193 | * texlive-full (for PDF support) 194 | * extra fonts - sudo apt-get install msttcorefonts 195 | * kindlegen (for Mobi support) 196 | 197 | ## Build 198 | 199 | The source code can be found on: [https://github.com/diversen/php-git-to-book](https://github.com/diversen/php-git-to-book). 200 | 201 | First clone the base system into e.g. yoursite: 202 | 203 | git clone https://github.com/diversen/php-git-to-book example.com 204 | 205 | Enter the base system: 206 | 207 | cd yoursite 208 | 209 | Install dependencies. May take some time: 210 | 211 | composer update 212 | 213 | Enable apache2 host: 214 | 215 | // you will need to be root 216 | sudo ./coscli.sh apache2 --en example.com 217 | 218 | Run install command: 219 | 220 | ./coscli.sh prompt-install --install 221 | 222 | You will be asked about DB configuration, and version to install. Use a `tag` or `master`. After writing the `config/config.ini` file the system will install all the profile modules from git repos. At last the system will prompt you for a super user. Enter an email and password 223 | 224 | Set correct perms for public files after install (e.g. upload folder) 225 | 226 | // you will need to be root user as we change 227 | // the perms to be www-data 228 | sudo ./coscli.sh file --chmod-system 229 | 230 | We use a extra public directory, which you will need to add manual: 231 | 232 | mkdir htdocs/books 233 | 234 | Set correct ownership: 235 | 236 | sudo chown www-data:www-data htdocs/books 237 | 238 | Go to http://example.com and log in and add a repo. 239 | 240 | ## System config 241 | 242 | If you make the above install, then the system is multi user by default. But you can make a few configuration changes in order to change this. This shows the default `gitbook.ini` file which is located in `modules/gitbook`. 243 | 244 | ~~~ini 245 | ; who can use it 246 | ; user is a user which has signed up - 247 | ; admin is created in the install proces 248 | gitbook_allow = 'user' 249 | ; who is allowed to use the all options in meta.yaml 250 | ; insert unescaped inline HTML for e.g. videos 251 | gitbook_allow_ext = 'admin' 252 | ; for 'gitbook_allow' only these formats works 253 | gitbook_exports = 'epub,html,pdf' 254 | ; assets allowed for 'gitbook_allow' 255 | gitbook_allow_assets = 'css,jpeg,jpg,png,gif' 256 | ~~~ 257 | 258 | -------------------------------------------------------------------------------- /access-test.php: -------------------------------------------------------------------------------- 1 | ul { 438 | visibility: visible; 439 | } 440 | 441 | -------------------------------------------------------------------------------- /epub.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: OpenSans; 3 | font-style: normal; 4 | font-weight: normal; 5 | font-size: 90%; 6 | src:url("OpenSans-Regular.ttf"); 7 | } 8 | 9 | body { 10 | margin: 5%; 11 | text-align: justify; 12 | font-size: medium; 13 | font-family: "OpenSans"; 14 | font-size: 80%; 15 | } 16 | 17 | code { font-family: monospace; } 18 | h1 { text-align: left; } 19 | h2 { text-align: left; } 20 | h3 { text-align: left; } 21 | h4 { text-align: left; } 22 | h5 { text-align: left; } 23 | h6 { text-align: left; } 24 | h1.title { } 25 | h2.author { } 26 | h3.date { } 27 | ol.toc { padding: 0; margin-left: 1em; } 28 | ol.toc li { list-style-type: none; margin: 0; padding: 0; } 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /font-list: -------------------------------------------------------------------------------- 1 | /usr/share/fonts/truetype/msttcorefonts/comicbd.ttf: Comic Sans MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 2 | /usr/share/fonts/truetype/droid/DroidSansHebrew-Regular.ttf: Droid Sans Hebrew:style=Regular 3 | /usr/share/fonts/opentype/fonts-hosny-amiri/amiri-quran.ttf: Amiri Quran:style=Regular,عادي 4 | /usr/share/fonts/truetype/tlwg/TlwgTypo-Bold.ttf: Tlwg Typo:style=Bold 5 | /usr/share/fonts/truetype/adf/AccanthisADFStd-Regular.otf: Accanthis ADF Std:style=Regular 6 | /usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-oblique.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Oblique,Italic 7 | /usr/share/fonts/truetype/dejavu/DejaVuSerif-Bold.ttf: DejaVu Serif:style=Bold 8 | /usr/share/fonts/truetype/lato/Lato-Bol.ttf: Lato:style=Bold 9 | /usr/share/texmf/fonts/opentype/public/lm/lmmono10-italic.otf: Latin Modern Mono,LM Mono 10:style=10 Italic,Italic 10 | /usr/share/fonts/truetype/adf/GilliusADFNo2Cd-Italic.otf: Gillius ADF No2 Cd:style=Italic 11 | /usr/share/fonts/truetype/dejavu/DejaVuSansMono.ttf: DejaVu Sans Mono:style=Book 12 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique 13 | /usr/share/fonts/truetype/padauk/Padauk.ttf: Padauk,ပိတောက်:style=Regular 14 | /usr/share/fonts/type1/texlive-fonts-recommended/putb8a.pfb: Utopia:style=Bold 15 | /usr/share/fonts/truetype/msttcorefonts/comic.ttf: Comic Sans MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 16 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique 17 | /usr/share/fonts/opentype/fonts-hosny-amiri/amiri-regular.ttf: Amiri:style=Regular,عادي 18 | /usr/share/fonts/truetype/tlwg/Umpush.ttf: Umpush:style=Book 19 | /usr/share/fonts/truetype/adf/GilliusADFNo2-Regular.otf: Gillius ADF No2:style=Regular 20 | /usr/share/fonts/opentype/stix/STIXIntegralsUp-Bold.otf: STIXIntegralsUp:style=Bold 21 | /usr/share/fonts/opentype/stix/STIXIntegralsUpD-Regular.otf: STIXIntegralsUpD:style=Regular 22 | /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique 23 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrebonum-bold.otf: TeX Gyre Bonum:style=Bold 24 | /usr/share/texmf/fonts/opentype/public/lm/lmroman10-bold.otf: Latin Modern Roman,LM Roman 10:style=10 Bold,Bold 25 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-BoldItalic.ttf: DejaVu Serif:style=Bold Italic 26 | /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_bn.ttf: Lohit Bengali:style=Regular 27 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvb8a.pfb: Nimbus Sans L:style=Bold 28 | /usr/share/texmf/fonts/opentype/public/lm/lmroman7-italic.otf: Latin Modern Roman,LM Roman 7:style=7 Italic,Italic 29 | /usr/share/fonts/X11/Type1/c0649bt_.pfb: Bitstream Charter:style=Italic 30 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrecursor-italic.otf: TeX Gyre Cursor:style=Italic 31 | /usr/share/fonts/truetype/artemisia/GFSArtemisiaBoldIt.otf: GFS Artemisia:style=Bold Italic 32 | /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman.ttf: Times New Roman:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta 33 | /usr/share/fonts/truetype/freefont/FreeSansBold.ttf: FreeSans:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,Krepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट 34 | /usr/share/fonts/truetype/freefont/FreeSans.ttf: FreeSans:style=Regular,нормален,Normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Medio,Gemiddeld,Odmiana Zwykła,Обычный,Normálne,menengah,прямій,Navadno,vidējs,normalusis,vừa,Arrunta,सामान्य 35 | /usr/share/fonts/truetype/msttcorefonts/courbi.ttf: Courier New:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 36 | /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Italic.ttf: Liberation Sans Narrow:style=Italic 37 | /usr/share/fonts/truetype/comfortaa/Comfortaa-Regular.ttf: Comfortaa:style=Regular 38 | /usr/share/fonts/truetype/complutum/GFSPolyglot.otf: GFS Complutum:style=Regular 39 | /usr/share/fonts/truetype/msttcorefonts/Courier_New_Italic.ttf: Courier New:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana 40 | /usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-BoldItalic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic 41 | /usr/share/fonts/truetype/msttcorefonts/Verdana_Italic.ttf: Verdana:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana 42 | /usr/share/fonts/opentype/fonts-hosny-amiri/amiri-boldslanted.ttf: Amiri:style=Bold Slanted,عريض مائل 43 | /usr/share/fonts/truetype/dejavu/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight 44 | /usr/share/fonts/truetype/msttcorefonts/Arial_Italic.ttf: Arial:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana 45 | /usr/share/fonts/truetype/adf/GilliusADFNo2-BoldItalic.otf: Gillius ADF No2:style=Bold Italic 46 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyretermes-italic.otf: TeX Gyre Termes:style=Italic 47 | /usr/share/fonts/type1/gsfonts/n021024l.pfb: Nimbus Roman No9 L:style=Medium Italic 48 | /usr/share/fonts/truetype/kacst/KacstFarsi.ttf: KacstFarsi:style=Medium 49 | /usr/share/fonts/truetype/dejavu/DejaVuSans.ttf: DejaVu Sans:style=Book 50 | /usr/share/texmf/fonts/opentype/public/lm/lmroman12-bold.otf: Latin Modern Roman,LM Roman 12:style=12 Bold,Bold 51 | /usr/share/fonts/truetype/msttcorefonts/ariblk.ttf: Arial Black:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 52 | /usr/share/fonts/truetype/msttcorefonts/Arial.ttf: Arial:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta 53 | /usr/share/fonts/X11/Type1/c0419bt_.pfb: Courier 10 Pitch:style=Regular 54 | /usr/share/fonts/opentype/stix/STIXNonUnicode-BoldItalic.otf: STIXNonUnicode:style=Bold Italic 55 | /usr/share/fonts/type1/texlive-fonts-recommended/utmb8a.pfb: Nimbus Roman No9 L:style=Medium 56 | /usr/share/fonts/opentype/stix/STIXSizeTwoSym-Bold.otf: STIXSizeTwoSym:style=Bold 57 | /usr/share/fonts/opentype/stix/STIXVariants-Bold.otf: STIXVariants:style=Bold 58 | /usr/share/fonts/truetype/msttcorefonts/couri.ttf: Courier New:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana 59 | /usr/share/fonts/opentype/fonts-hosny-amiri/amiri-slanted.ttf: Amiri:style=Slanted,مائل 60 | /usr/share/fonts/type1/texlive-fonts-recommended/putri8a.pfb: Utopia:style=Italic 61 | /usr/share/fonts/truetype/lyx/msbm10.ttf: msbm10:style=Regular 62 | /usr/share/fonts/truetype/droid/DroidSans.ttf: Droid Sans:style=Regular 63 | /usr/share/fonts/truetype/freefont/FreeSerifBoldItalic.ttf: FreeSerif:style=Bold Italic,получерен курсивен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros cursiv,Обычный Курсив,Tučná kurzíva,Fet Kursiv,ตัวเอียงหนา,Kalın İtalik,huruf tebal kursif,жирний курсив,Polkrepko Pežeče,treknais kursīvs,pusjuodis kursyvas,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा 64 | /usr/share/fonts/opentype/stix/STIXIntegralsSm-Bold.otf: STIXIntegralsSm:style=Bold 65 | /usr/share/fonts/opentype/ipafont-mincho/ipam.ttf: IPAMincho,IPA明朝:style=Regular 66 | /usr/share/fonts/truetype/adf/GilliusADFNo2Cd-BoldItalic.otf: Gillius ADF No2 Cd:style=Bold Italic 67 | /usr/share/fonts/truetype/droid/DroidSerif-Bold.ttf: Droid Serif:style=Bold 68 | /usr/share/fonts/truetype/droid/DroidSansMono.ttf: Droid Sans Mono:style=Regular 69 | /usr/share/texmf/fonts/opentype/public/lm/lmmonocaps10-regular.otf: Latin Modern Mono Caps,LM Mono Caps 10:style=10 Regular,Regular 70 | /usr/share/texmf/fonts/opentype/public/lm/lmsans10-boldoblique.otf: Latin Modern Sans,LM Sans 10:style=10 Bold Oblique,Bold Italic 71 | /usr/share/fonts/truetype/adf/AccanthisADFStd-Bold.otf: Accanthis ADF Std:style=Bold 72 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreadventor-bold.otf: TeX Gyre Adventor:style=Bold 73 | /usr/share/fonts/truetype/kacst/mry_KacstQurn.ttf: mry_KacstQurn:style=Regular 74 | /usr/share/fonts/truetype/kacst-one/KacstOne-Bold.ttf: KacstOne:style=Bold 75 | /usr/share/fonts/type1/gsfonts/n021004l.pfb: Nimbus Roman No9 L:style=Medium 76 | /usr/share/fonts/truetype/freefont/FreeMonoBoldOblique.ttf: FreeMono:style=Bold Oblique,получерен наклонен,Negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,Lodi etzana,धृष्ट-तिरछा 77 | /usr/share/fonts/truetype/lato/Lato-Bla.ttf: Lato,Lato Black:style=Black,Regular 78 | /usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf: Liberation Sans:style=Regular 79 | /usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book 80 | /usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Italic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic 81 | /usr/share/fonts/truetype/msttcorefonts/Georgia_Bold.ttf: Georgia:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 82 | /usr/share/fonts/type1/gsfonts/p052023l.pfb: URW Palladio L:style=Italic 83 | /usr/share/fonts/type1/gsfonts/n022003l.pfb: Nimbus Mono L:style=Regular 84 | /usr/share/fonts/truetype/liberation/LiberationMono-BoldItalic.ttf: Liberation Mono:style=Bold Italic 85 | /usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-bold.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Bold,Bold 86 | /usr/share/fonts/truetype/comfortaa/Comfortaa-Light.ttf: Comfortaa:style=Light 87 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvro8a.pfb: Nimbus Sans L:style=Regular Italic 88 | /usr/share/fonts/truetype/tlwg/Loma-Oblique.ttf: Loma:style=Oblique 89 | /usr/share/fonts/type1/texlive-fonts-recommended/ubkdi8a.pfb: URW Bookman L:style=Demi Bold Italic 90 | /usr/share/fonts/truetype/ttf-indic-fonts-core/gargi.ttf: gargi:style=Medium 91 | /usr/share/fonts/opentype/stix/STIXNonUnicode-Italic.otf: STIXNonUnicode:style=Italic 92 | /usr/share/fonts/truetype/tlwg/Norasi-BoldOblique.ttf: Norasi:style=BoldOblique 93 | /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-R.ttf: Ubuntu Mono:style=Regular 94 | /usr/share/fonts/truetype/liberation/LiberationSerif-Italic.ttf: Liberation Serif:style=Italic 95 | /usr/share/fonts/type1/gsfonts/z003034l.pfb: URW Chancery L:style=Medium Italic 96 | /usr/share/fonts/truetype/wqy/wqy-microhei.ttc: WenQuanYi Micro Hei,文泉驛微米黑,文泉驿微米黑:style=Regular 97 | /usr/share/fonts/X11/Type1/c0633bt_.pfb: Bitstream Charter:style=Bold Italic 98 | /usr/share/fonts/truetype/kacst/KacstDigital.ttf: KacstDigital:style=Medium 99 | /usr/share/fonts/truetype/tlwg/TlwgTypo-Oblique.ttf: Tlwg Typo:style=Oblique 100 | /usr/share/fonts/X11/Type1/c0648bt_.pfb: Bitstream Charter:style=Regular 101 | /usr/share/fonts/truetype/droid/DroidNaskh-Bold.ttf: Droid Arabic Naskh:style=Bold 102 | /usr/share/fonts/truetype/tlwg/Purisa-BoldOblique.ttf: Purisa:style=BoldOblique 103 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-regular.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 Regular,Regular 104 | /usr/share/fonts/truetype/kacst/KacstPen.ttf: KacstPen:style=Medium 105 | /usr/share/fonts/truetype/liberation/LiberationMono-Bold.ttf: Liberation Mono:style=Bold 106 | /usr/share/fonts/truetype/msttcorefonts/Courier_New.ttf: Courier New:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta 107 | /usr/share/fonts/truetype/tlwg/TlwgTypo.ttf: Tlwg Typo:style=Medium 108 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_RB.otf: Linux Libertine O:style=Bold 109 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed,Book 110 | /usr/share/fonts/truetype/lyx/rsfs10.ttf: rsfs10:style=Roman 111 | /usr/share/fonts/truetype/lyx/eufm10.ttf: eufm10:style=Regular 112 | /usr/share/fonts/truetype/tlwg/Kinnari-Italic.ttf: Kinnari:style=Italic 113 | /usr/share/fonts/truetype/tlwg/Purisa.ttf: Purisa:style=Medium 114 | /usr/share/fonts/truetype/nanum/NanumBarunGothic.ttf: NanumBarunGothic,나눔바른고딕:style=Regular 115 | /usr/share/fonts/type1/texlive-fonts-recommended/ubkd8a.pfb: URW Bookman L:style=Demi Bold 116 | /usr/share/fonts/truetype/gentium/GenAI102.ttf: GentiumAlt:style=Italic 117 | /usr/share/fonts/truetype/gentium-basic/GenBkBasBI.ttf: Gentium Book Basic:style=Bold Italic 118 | /usr/share/fonts/opentype/freefont/FreeSansBold.otf: FreeSans:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,Krepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट 119 | /usr/share/texmf/fonts/opentype/public/lm/lmromandunh10-oblique.otf: Latin Modern Roman Dunhill,LM Roman Dunhill 10:style=10 Oblique,Italic 120 | /usr/share/fonts/truetype/msttcorefonts/trebucit.ttf: Trebuchet MS:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana 121 | /usr/share/fonts/truetype/lyx/wasy10.ttf: wasy10:style=Normal 122 | /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold_Italic.ttf: Trebuchet MS:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 123 | /usr/share/fonts/truetype/msttcorefonts/arialbd.ttf: Arial:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia 124 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_RZI.otf: Linux Libertine O:style=Semibold Italic 125 | /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold.ttf: Verdana:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 126 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrepagella-bolditalic.otf: TeX Gyre Pagella:style=Bold Italic 127 | /usr/share/texmf/fonts/opentype/public/lm/lmsansdemicond10-oblique.otf: Latin Modern Sans Demi Cond,LM Sans Demi Cond 10:style=10 Oblique,Italic 128 | /usr/share/fonts/type1/gsfonts/c059013l.pfb: Century Schoolbook L:style=Roman 129 | /usr/share/fonts/truetype/adf/AccanthisADFStd-BoldItalic.otf: Accanthis ADF Std:style=Bold Italic 130 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheros-regular.otf: TeX Gyre Heros:style=Regular 131 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_I.otf: Linux Libertine Initials O:style=Initials 132 | /usr/share/fonts/truetype/tlwg/Sawasdee-BoldOblique.ttf: Sawasdee:style=BoldOblique 133 | /usr/share/fonts/truetype/msttcorefonts/georgiab.ttf: Georgia:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 134 | /usr/share/texmf/fonts/opentype/public/lm/lmroman10-bolditalic.otf: Latin Modern Roman,LM Roman 10:style=10 Bold Italic,Bold Italic 135 | /usr/share/texmf/fonts/opentype/public/lm-math/latinmodernmath-regular.otf: Latin Modern Math:style=Regular 136 | /usr/share/fonts/truetype/lato/Lato-RegIta.ttf: Lato:style=Italic 137 | /usr/share/fonts/opentype/freefont/FreeSerifBoldItalic.otf: FreeSerif:style=Bold Italic,получерен курсивен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros cursiv,Обычный Курсив,Tučná kurzíva,Fet Kursiv,ตัวเอียงหนา,Kalın İtalik,huruf tebal kursif,жирний курсив,Polkrepko Pežeče,treknais kursīvs,pusjuodis kursyvas,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा 138 | /usr/share/fonts/type1/texlive-fonts-recommended/uagdo8a.pfb: URW Gothic L:style=Demi Oblique 139 | /usr/share/fonts/truetype/adf/GilliusADFNo2Cd-Bold.otf: Gillius ADF No2 Cd:style=Bold 140 | /usr/share/fonts/type1/texlive-fonts-recommended/uplbi8a.pfb: URW Palladio L:style=Bold Italic 141 | /usr/share/fonts/truetype/tlwg/Kinnari-Oblique.ttf: Kinnari:style=Oblique 142 | /usr/share/fonts/truetype/adf/GilliusADF-BoldItalic.otf: Gillius ADF:style=Bold Italic 143 | /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_ta.ttf: Lohit Tamil:style=Regular 144 | /usr/share/fonts/opentype/font-awesome/FontAwesome.otf: FontAwesome:style=Regular 145 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_R.otf: Linux Libertine O:style=Regular 146 | /usr/share/fonts/opentype/stix/STIXIntegralsD-Regular.otf: STIXIntegralsD:style=Regular 147 | /usr/share/fonts/truetype/droid/DroidSansJapanese.ttf: Droid Sans Japanese:style=Regular 148 | /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Regular.ttf: Liberation Sans Narrow:style=Regular 149 | /usr/share/fonts/truetype/junicode/Junicode-BoldItalic.ttf: Junicode:style=Bold Italic 150 | /usr/share/fonts/truetype/msttcorefonts/Georgia_Bold_Italic.ttf: Georgia:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 151 | /usr/share/fonts/opentype/mathjax/MathJax_Typewriter-Regular.otf: MathJax_Typewriter:style=Regular 152 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed-BoldItalic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold Italic,Bold Italic 153 | /usr/share/fonts/truetype/adf/GilliusADFCd-Regular.otf: Gillius ADF Cd:style=Regular 154 | /usr/share/texmf/fonts/opentype/public/lm/lmromancaps10-oblique.otf: Latin Modern Roman Caps,LM Roman Caps 10:style=10 Oblique,Italic 155 | /usr/share/fonts/truetype/tlwg/Umpush-Oblique.ttf: Umpush:style=Oblique 156 | /usr/share/fonts/type1/texlive-fonts-recommended/pcrb8a.pfb: Courier:style=Bold 157 | /usr/share/texmf/fonts/opentype/public/tex-gyre-math/texgyrepagella-math.otf: TG Pagella Math:style=Regular 158 | /usr/share/texmf/fonts/opentype/public/tex-gyre-math/texgyretermes-math.otf: TG Termes Math:style=Regular 159 | /usr/share/fonts/type1/gsfonts/d050000l.pfb: Dingbats:style=Regular 160 | /usr/share/fonts/truetype/dejavu/DejaVuSerif-BoldItalic.ttf: DejaVu Serif:style=Bold Italic 161 | /usr/share/fonts/truetype/tlwg/Sawasdee-Bold.ttf: Sawasdee:style=Bold 162 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheroscn-bolditalic.otf: TeX Gyre Heros Cn:style=Bold Italic 163 | /usr/share/fonts/type1/texlive-fonts-recommended/uplb8a.pfb: URW Palladio L:style=Bold 164 | /usr/share/fonts/truetype/kacst/KacstScreen.ttf: KacstScreen:style=Medium,KacstScreen 165 | /usr/share/fonts/opentype/mathjax/MathJax_Fraktur-Bold.otf: MathJax_Fraktur:style=Bold 166 | /usr/share/fonts/opentype/lobstertwo/LobsterTwo-Regular.otf: Lobster Two:style=Regular 167 | /usr/share/fonts/truetype/kacst/KacstArt.ttf: KacstArt:style=Medium 168 | /usr/share/fonts/opentype/stix/STIXSizeThreeSym-Bold.otf: STIXSizeThreeSym:style=Bold 169 | /usr/share/fonts/type1/gsfonts/n021023l.pfb: Nimbus Roman No9 L:style=Regular Italic 170 | /usr/share/fonts/type1/texlive-fonts-recommended/uncb8a.pfb: Century Schoolbook L:style=Bold 171 | /usr/share/fonts/opentype/stix/STIXIntegralsD-Bold.otf: STIXIntegralsD:style=Bold 172 | /usr/share/texmf/fonts/opentype/public/lm/lmsans12-oblique.otf: Latin Modern Sans,LM Sans 12:style=12 Oblique,Italic 173 | /usr/share/fonts/X11/Type1/c0611bt_.pfb: Courier 10 Pitch:style=Bold Italic 174 | /usr/share/fonts/truetype/tlwg/TlwgMono.ttf: TlwgMono:style=Medium 175 | /usr/share/fonts/opentype/cabin/Cabin-Regular.otf: Cabin:style=Regular 176 | /usr/share/fonts/opentype/stix/STIXIntegralsUpD-Bold.otf: STIXIntegralsUpD:style=Bold 177 | /usr/share/fonts/truetype/tlwg/Umpush-BoldOblique.ttf: Umpush:style=BoldOblique 178 | /usr/share/fonts/type1/texlive-fonts-recommended/putr8a.pfb: Utopia:style=Regular 179 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo2-Italic.otf: Accanthis ADF Std No2:style=Italic 180 | /usr/share/fonts/opentype/stix/STIXNonUnicode-Regular.otf: STIXNonUnicode:style=Regular 181 | /usr/share/texmf/fonts/opentype/public/lm/lmmonocaps10-oblique.otf: Latin Modern Mono Caps,LM Mono Caps 10:style=10 Oblique,Italic 182 | /usr/share/fonts/truetype/droid/DroidSans-Bold.ttf: Droid Sans:style=Bold 183 | /usr/share/fonts/truetype/msttcorefonts/trebuc.ttf: Trebuchet MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 184 | /usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-boldoblique.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Bold Oblique,Italic 185 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_M.otf: Linux Libertine Mono O:style=Mono 186 | /usr/share/fonts/type1/texlive-fonts-recommended/uncri8a.pfb: Century Schoolbook L:style=Italic 187 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrecursor-bold.otf: TeX Gyre Cursor:style=Bold 188 | /usr/share/fonts/truetype/neohellenic/GFSNeohellenicBoldIt.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Bold Italic 189 | /usr/share/fonts/type1/texlive-fonts-recommended/ucrbo8a.pfb: Nimbus Mono L:style=Bold Oblique 190 | /usr/share/fonts/type1/gsfonts/n019063l.pfb: Nimbus Sans L:style=Regular Condensed Italic 191 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed-Bold.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold 192 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreschola-regular.otf: TeX Gyre Schola:style=Regular 193 | /usr/share/fonts/truetype/tlwg/TlwgTypewriter-BoldOblique.ttf: TlwgTypewriter:style=BoldOblique 194 | /usr/share/fonts/truetype/adf/GilliusADF-Bold.otf: Gillius ADF:style=Bold 195 | /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Oblique.ttf: DejaVu Sans Mono:style=Oblique 196 | /usr/share/fonts/truetype/nanum/NanumGothic.ttf: NanumGothic,나눔고딕:style=Regular 197 | /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Italic.ttf: Times New Roman:style=Italic,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana 198 | /usr/share/fonts/truetype/dejavu/DejaVuSerifCondensed-Bold.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Bold,Bold 199 | /usr/share/fonts/truetype/msttcorefonts/georgiaz.ttf: Georgia:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 200 | /usr/share/fonts/truetype/adf/GilliusADFCd-Bold.otf: Gillius ADF Cd:style=Bold 201 | /usr/share/fonts/truetype/adf/AccanthisADFStd-Italic.otf: Accanthis ADF Std:style=Italic 202 | /usr/share/fonts/truetype/dejavu/DejaVuSans-Bold.ttf: DejaVu Sans:style=Bold 203 | /usr/share/fonts/opentype/mathjax/MathJax_Math-Italic.otf: MathJax_Math:style=Italic 204 | /usr/share/texmf/fonts/opentype/public/lm/lmmono9-regular.otf: Latin Modern Mono,LM Mono 9:style=9 Regular,Regular 205 | /usr/share/fonts/truetype/tlwg/TlwgMono-Oblique.ttf: TlwgMono:style=Oblique 206 | /usr/share/fonts/truetype/lato/Lato-BlaIta.ttf: Lato,Lato Black:style=Black Italic,Italic 207 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreadventor-italic.otf: TeX Gyre Adventor:style=Italic 208 | /usr/share/fonts/opentype/cabin/Cabin-SemiBold.otf: Cabin:style=SemiBold 209 | /usr/share/fonts/truetype/liberation/LiberationSerif-Bold.ttf: Liberation Serif:style=Bold 210 | /usr/share/fonts/truetype/padauk/Padauk-bold.ttf: Padauk,ပိတောက်:style=Bold,စာလုံးမဲ 211 | /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS.ttf: Comic Sans MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 212 | /usr/share/fonts/truetype/dejavu/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique 213 | /usr/share/fonts/truetype/droid/DroidSansArmenian.ttf: Droid Sans Armenian:style=Regular 214 | /usr/share/fonts/truetype/ttf-punjabi-fonts/Saab.ttf: Saab:style=Regular 215 | /usr/share/fonts/truetype/tlwg/Purisa-Bold.ttf: Purisa:style=Bold 216 | /usr/share/fonts/truetype/msttcorefonts/Georgia_Italic.ttf: Georgia:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana 217 | /usr/share/fonts/truetype/artemisia/GFSArtemisiaIt.otf: GFS Artemisia:style=Italic 218 | /usr/share/fonts/opentype/ipaexfont-gothic/ipaexg.ttf: IPAexGothic,IPAexゴシック:style=Regular 219 | /usr/share/fonts/type1/gsfonts/a010013l.pfb: URW Gothic L:style=Book 220 | /usr/share/fonts/opentype/stix/STIXNonUnicode-Bold.otf: STIXNonUnicode:style=Bold 221 | /usr/share/fonts/truetype/adf/GilliusADFCd-Italic.otf: Gillius ADF Cd:style=Italic 222 | /usr/share/fonts/opentype/stix/STIXIntegralsUp-Regular.otf: STIXIntegralsUp:style=Regular 223 | /usr/share/texmf/fonts/opentype/public/lm/lmsans8-oblique.otf: Latin Modern Sans,LM Sans 8:style=8 Oblique,Italic 224 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Kedage-n.ttf: Kedage:style=Normal 225 | /usr/share/fonts/truetype/olga/GFSOlga.otf: GFS Olga:style=Regular 226 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-ExtraLight.ttf: DejaVu Sans,DejaVu Sans Light:style=ExtraLight 227 | /usr/share/fonts/truetype/tlwg/Waree-Oblique.ttf: Waree:style=Oblique 228 | /usr/share/fonts/truetype/ttf-khmeros-core/KhmerOS.ttf: Khmer OS:style=Regular 229 | /usr/share/fonts/opentype/fonts-hosny-amiri/amiri-bold.ttf: Amiri:style=Bold,عريض 230 | /usr/share/fonts/opentype/mathjax/MathJax_Main-Regular.otf: MathJax_Main:style=Regular 231 | /usr/share/fonts/truetype/msttcorefonts/Arial_Bold_Italic.ttf: Arial:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana 232 | /usr/share/texmf/fonts/opentype/public/lm/lmmono8-regular.otf: Latin Modern Mono,LM Mono 8:style=8 Regular,Regular 233 | /usr/share/fonts/opentype/cantarell/Cantarell-Bold.otf: Cantarell:style=Bold 234 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoprop10-regular.otf: Latin Modern Mono Prop,LM Mono Prop 10:style=10 Regular,Regular 235 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyretermes-bolditalic.otf: TeX Gyre Termes:style=Bold Italic 236 | /usr/share/fonts/truetype/liberation/LiberationMono-Regular.ttf: Liberation Mono:style=Regular 237 | /usr/share/fonts/truetype/asana-math/Asana-Math.otf: Asana Math:style=Regular 238 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheroscn-italic.otf: TeX Gyre Heros Cn:style=Italic 239 | /usr/share/fonts/opentype/stix/STIXIntegralsUpSm-Bold.otf: STIXIntegralsUpSm:style=Bold 240 | /usr/share/fonts/opentype/mathjax/MathJax_Fraktur-Regular.otf: MathJax_Fraktur:style=Regular 241 | /usr/share/fonts/truetype/tlwg/TlwgTypist.ttf: Tlwg Typist:style=Medium 242 | /usr/share/fonts/opentype/mathjax/MathJax_Caligraphic-Bold.otf: MathJax_Caligraphic:style=Bold 243 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Rachana_04.ttf: Rachana:style=Regular 244 | /usr/share/fonts/truetype/gentium/GenI102.ttf: Gentium:style=Italic 245 | /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrowBold.ttf: Mukti Narrow,মুক্তি পাতনা:style=Regular,Bold 246 | /usr/share/texmf/fonts/opentype/public/lm/lmsans9-oblique.otf: Latin Modern Sans,LM Sans 9:style=9 Oblique,Italic 247 | /usr/share/fonts/truetype/msttcorefonts/timesbd.ttf: Times New Roman:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiona,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia 248 | /usr/share/fonts/truetype/msttcorefonts/Webdings.ttf: Webdings:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 249 | /usr/share/fonts/opentype/ipafont-gothic/ipagp.ttf: IPAPGothic,IPA Pゴシック:style=Regular 250 | /usr/share/fonts/opentype/mathjax/MathJax_Caligraphic-Regular.otf: MathJax_Caligraphic:style=Regular 251 | /usr/share/fonts/truetype/tlwg/Garuda-Bold.ttf: Garuda:style=Bold 252 | /usr/share/fonts/type1/gsfonts/n019064l.pfb: Nimbus Sans L:style=Bold Condensed Italic 253 | /usr/share/fonts/truetype/liberation/LiberationSans-Italic.ttf: Liberation Sans:style=Italic 254 | /usr/share/fonts/truetype/gentium-basic/GenBasB.ttf: Gentium Basic:style=Bold 255 | /usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-bold.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Bold,Bold 256 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-BoldOblique.ttf: DejaVu Sans Mono:style=Bold Oblique 257 | /usr/share/texmf/fonts/opentype/public/lm/lmsansdemicond10-regular.otf: Latin Modern Sans Demi Cond,LM Sans Demi Cond 10:style=10 Regular,Regular 258 | /usr/share/fonts/type1/texlive-fonts-recommended/bchb8a.pfb: Bitstream Charter:style=Bold 259 | /usr/share/fonts/truetype/tlwg/TlwgTypist-BoldOblique.ttf: Tlwg Typist:style=BoldOblique 260 | /usr/share/fonts/truetype/tlwg/TlwgTypist-Oblique.ttf: Tlwg Typist:style=Oblique 261 | /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique 262 | /usr/share/fonts/truetype/lato/Lato-Reg.ttf: Lato:style=Regular 263 | /usr/share/fonts/truetype/adf/GilliusADF-Italic.otf: Gillius ADF:style=Italic 264 | /usr/share/fonts/opentype/stix/STIXGeneral-Bold.otf: STIXGeneral:style=Bold 265 | /usr/share/fonts/truetype/droid/DroidSansFallbackFull.ttf: Droid Sans Fallback:style=Regular 266 | /usr/share/fonts/truetype/fonts-japanese-gothic.ttf: TakaoPGothic,Takao Pゴシック:style=Regular 267 | /usr/share/fonts/type1/texlive-fonts-recommended/ucrr8a.pfb: Nimbus Mono L:style=Regular 268 | /usr/share/texmf/fonts/opentype/public/lm/lmsans10-oblique.otf: Latin Modern Sans,LM Sans 10:style=10 Oblique,Italic 269 | /usr/share/fonts/truetype/adf/GilliusADFCd-BoldItalic.otf: Gillius ADF Cd:style=Bold Italic 270 | /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_gu.ttf: Lohit Gujarati:style=Regular 271 | /usr/share/fonts/type1/gsfonts/p052004l.pfb: URW Palladio L:style=Bold 272 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-RI.ttf: Ubuntu:style=Italic 273 | /usr/share/texmf/fonts/opentype/public/lm/lmroman8-italic.otf: Latin Modern Roman,LM Roman 8:style=8 Italic,Italic 274 | /usr/share/fonts/truetype/gentium-basic/GenBkBasR.ttf: Gentium Book Basic:style=Regular 275 | /usr/share/fonts/truetype/ttf-khmeros-core/KhmerOSsys.ttf: Khmer OS System:style=Regular 276 | /usr/share/fonts/truetype/tlwg/Loma-BoldOblique.ttf: Loma:style=BoldOblique 277 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Rekha.ttf: Rekha:style=Medium 278 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo3-Italic.otf: Accanthis ADF Std No3:style=Italic 279 | /usr/share/fonts/truetype/msttcorefonts/Verdana.ttf: Verdana:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 280 | /usr/share/texmf/fonts/opentype/public/lm/lmromanunsl10-regular.otf: Latin Modern Roman Unslanted,LM Roman Unslanted 10:style=10 Regular,Regular 281 | /usr/share/fonts/truetype/lato/Lato-LigIta.ttf: Lato,Lato Light:style=Light Italic,Italic 282 | /usr/share/fonts/opentype/cabin/Cabin-Italic.otf: Cabin:style=Italic 283 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-boldoblique.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 BoldOblique,Bold Italic 284 | /usr/share/fonts/truetype/nanum/NanumBarunGothicBold.ttf: NanumBarunGothic,나눔바른고딕:style=Bold 285 | /usr/share/fonts/type1/texlive-fonts-recommended/ucrb8a.pfb: Nimbus Mono L:style=Bold 286 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheroscn-bold.otf: TeX Gyre Heros Cn:style=Bold 287 | /usr/share/fonts/opentype/stix/STIXVariants-Regular.otf: STIXVariants:style=Regular 288 | /usr/share/fonts/truetype/junicode/Junicode-Italic.ttf: Junicode:style=Italic 289 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrebonum-bolditalic.otf: TeX Gyre Bonum:style=Bold Italic 290 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Oblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Oblique,Oblique 291 | /usr/share/fonts/truetype/gentium-basic/GenBasI.ttf: Gentium Basic:style=Italic 292 | /usr/share/fonts/truetype/tlwg/TlwgMono-BoldOblique.ttf: TlwgMono:style=BoldOblique 293 | /usr/share/fonts/truetype/liberation/LiberationSerif-BoldItalic.ttf: Liberation Serif:style=Bold Italic 294 | /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book 295 | /usr/share/fonts/truetype/gentium-basic/GenBasBI.ttf: Gentium Basic:style=Bold Italic 296 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo3-BoldItalic.otf: Accanthis ADF Std No3:style=Bold Italic 297 | /usr/share/fonts/opentype/stix/STIXGeneral-Regular.otf: STIXGeneral:style=Regular 298 | /usr/share/fonts/type1/texlive-fonts-recommended/utmri8a.pfb: Nimbus Roman No9 L:style=Regular Italic 299 | /usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Bold.otf: MathJax_SansSerif:style=Bold 300 | /usr/share/fonts/truetype/freefont/FreeSerif.ttf: FreeSerif:style=Regular,нормален,normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Normale,Gemiddeld,odmiana zwykła,Обычный,Normálne,ปกติ,menengah,прямій,Navadno,vidējs,normalusis,عادی,vừa,Arrunta,सामान्य 301 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrecursor-bolditalic.otf: TeX Gyre Cursor:style=Bold Italic 302 | /usr/share/fonts/type1/gsfonts/n022023l.pfb: Nimbus Mono L:style=Regular Oblique 303 | /usr/share/fonts/truetype/abyssinica/AbyssinicaSIL-R.ttf: Abyssinica SIL:style=Regular 304 | /usr/share/fonts/truetype/freefont/FreeMonoOblique.ttf: FreeMono:style=Oblique,наклонен,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा 305 | /usr/share/fonts/truetype/msttcorefonts/Georgia.ttf: Georgia:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 306 | /usr/share/fonts/opentype/stix/STIXSizeTwoSym-Regular.otf: STIXSizeTwoSym:style=Regular 307 | /usr/share/texmf/fonts/opentype/public/lm/lmroman17-regular.otf: Latin Modern Roman,LM Roman 17:style=17 Regular,Regular 308 | /usr/share/fonts/truetype/tlwg/Norasi-Bold.ttf: Norasi:style=Bold 309 | /usr/share/texmf/fonts/opentype/public/lm/lmromanslant8-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 8:style=8 Regular,Regular 310 | /usr/share/fonts/truetype/lyx/cmex10.ttf: cmex10:style=Regular 311 | /usr/share/fonts/truetype/msttcorefonts/trebucbd.ttf: Trebuchet MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 312 | /usr/share/fonts/truetype/tlwg/Sawasdee-Oblique.ttf: Sawasdee:style=Oblique 313 | /usr/share/fonts/truetype/tlwg/Kinnari-Bold.ttf: Kinnari:style=Bold 314 | /usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-regular.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Regular,Regular 315 | /usr/share/fonts/truetype/tlwg/TlwgMono-Bold.ttf: TlwgMono:style=Bold 316 | /usr/share/fonts/opentype/freefont/FreeMono.otf: FreeMono:style=Regular,нормален,normal,obyčejné,Standard,µεσαία,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,menengah,прямій,navadno,vidējs,normalusis,thường,Arrunta,सामान्य 317 | /usr/share/fonts/truetype/droid/DroidSerif-Italic.ttf: Droid Serif:style=Italic 318 | /usr/share/fonts/truetype/msttcorefonts/cour.ttf: Courier New:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta 319 | /usr/share/fonts/opentype/linux-libertine/LinBiolinum_R.otf: Linux Biolinum O:style=Regular 320 | /usr/share/texmf/fonts/opentype/public/lm/lmromancaps10-regular.otf: Latin Modern Roman Caps,LM Roman Caps 10:style=10 Regular,Regular 321 | /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Italic.ttf: Trebuchet MS:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana 322 | /usr/share/fonts/opentype/linux-libertine/LinBiolinum_RI.otf: Linux Biolinum O:style=Italic 323 | /usr/share/fonts/truetype/droid/DroidSerif-BoldItalic.ttf: Droid Serif:style=Bold Italic 324 | /usr/share/fonts/type1/gsfonts/a010015l.pfb: URW Gothic L:style=Demi 325 | /usr/share/fonts/truetype/tlwg/Umpush-Light.ttf: Umpush:style=Light 326 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreadventor-bolditalic.otf: TeX Gyre Adventor:style=Bold Italic 327 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-R.ttf: Ubuntu:style=Regular 328 | /usr/share/fonts/truetype/dejavu/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold 329 | /usr/share/fonts/truetype/liberation/LiberationSansNarrow-BoldItalic.ttf: Liberation Sans Narrow:style=Bold Italic 330 | /usr/share/fonts/opentype/freefont/FreeSansBoldOblique.otf: FreeSans:style=Bold Oblique,получерен наклонен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονη Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Обычный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा 331 | /usr/share/texmf/fonts/opentype/public/lm/lmromandemi10-regular.otf: Latin Modern Roman Demi,LM Roman Demi 10:style=10 Regular,Regular 332 | /usr/share/texmf/fonts/opentype/public/lm/lmmono10-regular.otf: Latin Modern Mono,LM Mono 10:style=10 Regular,Regular 333 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansMono-Oblique.ttf: DejaVu Sans Mono:style=Oblique 334 | /usr/share/fonts/truetype/dejavu/DejaVuSansMono-Bold.ttf: DejaVu Sans Mono:style=Bold 335 | /usr/share/fonts/truetype/freefont/FreeSansBoldOblique.ttf: FreeSans:style=Bold Oblique,получерен наклонен,negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονη Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Обычный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,nghiêng đậm,Lodi etzana,धृष्ट-तिरछा 336 | /usr/share/fonts/truetype/tlwg/Garuda-Oblique.ttf: Garuda:style=Oblique 337 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-C.ttf: Ubuntu Condensed:style=Regular 338 | /usr/share/fonts/opentype/ipaexfont-mincho/ipaexm.ttf: IPAexMincho,IPAex明朝:style=Regular 339 | /usr/share/fonts/type1/gsfonts/n019043l.pfb: Nimbus Sans L:style=Regular Condensed 340 | /usr/share/fonts/truetype/droid/DroidSerif-Regular.ttf: Droid Serif:style=Regular 341 | /usr/share/fonts/truetype/dejavu/DejaVuSans-Oblique.ttf: DejaVu Sans:style=Oblique 342 | /usr/share/texmf/fonts/opentype/public/lm/lmromandunh10-regular.otf: Latin Modern Roman Dunhill,LM Roman Dunhill 10:style=10 Regular,Regular 343 | /usr/share/fonts/truetype/kacst/KacstDecorative.ttf: KacstDecorative:style=Medium 344 | /usr/share/fonts/truetype/sinhala/lklug.ttf: LKLUG:style=Regular 345 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreschola-bolditalic.otf: TeX Gyre Schola:style=Bold Italic 346 | /usr/share/fonts/opentype/cantarell/Cantarell-Regular.otf: Cantarell:style=Regular 347 | /usr/share/fonts/truetype/msttcorefonts/georgiai.ttf: Georgia:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana 348 | /usr/share/texmf/fonts/opentype/public/lm/lmsans12-regular.otf: Latin Modern Sans,LM Sans 12:style=12 Regular,Regular 349 | /usr/share/fonts/truetype/neohellenic/GFSNeohellenicIt.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Italic 350 | /usr/share/texmf/fonts/opentype/public/lm/lmromanslant9-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 9:style=9 Regular,Regular 351 | /usr/share/fonts/type1/gsfonts/n019044l.pfb: Nimbus Sans L:style=Bold Condensed 352 | /usr/share/fonts/truetype/lato/Lato-Hai.ttf: Lato,Lato Hairline:style=Hairline,Regular 353 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo2-Regular.otf: Accanthis ADF Std No2:style=Regular 354 | /usr/share/fonts/opentype/ipafont-mincho/ipamp.ttf: IPAPMincho,IPA P明朝:style=Regular 355 | /usr/share/fonts/truetype/tlwg/Norasi.ttf: Norasi:style=Regular 356 | /usr/share/fonts/opentype/freefont/FreeMonoOblique.otf: FreeMono:style=Oblique,наклонен,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा 357 | /usr/share/fonts/opentype/ipafont-gothic/ipag.ttf: IPAGothic,IPAゴシック:style=Regular 358 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoprop10-oblique.otf: Latin Modern Mono Prop,LM Mono Prop 10:style=10 Oblique,Italic 359 | /usr/share/fonts/type1/texlive-fonts-recommended/uzdr.pfb: Dingbats:style=Regular 360 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo3-Regular.otf: Accanthis ADF Std No3:style=Regular 361 | /usr/share/fonts/opentype/mathjax/MathJax_Size4-Regular.otf: MathJax_Size4:style=Regular 362 | /usr/share/fonts/opentype/freefont/FreeMonoBold.otf: FreeMono:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,polkrepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट 363 | /usr/share/fonts/truetype/fonts-japanese-mincho.ttf: IPAexMincho,IPAex明朝:style=Regular 364 | /usr/share/fonts/type1/gsfonts/a010033l.pfb: URW Gothic L:style=Book Oblique 365 | /usr/share/fonts/opentype/cabin/Cabin-SemiBoldItalic.otf: Cabin:style=SemiBold Italic 366 | /usr/share/fonts/truetype/lao/Phetsarath_OT.ttf: Phetsarath OT:style=Regular 367 | /usr/share/texmf/fonts/opentype/public/lm/lmmono12-regular.otf: Latin Modern Mono,LM Mono 12:style=12 Regular,Regular 368 | /usr/share/fonts/type1/texlive-fonts-recommended/pcrr8a.pfb: Courier:style=Regular 369 | /usr/share/fonts/truetype/tlwg/TlwgTypist-Bold.ttf: Tlwg Typist:style=Bold 370 | /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Bold.ttf: TlwgTypewriter:style=Bold 371 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Pothana2000.ttf: Pothana2000:style=Regular,Pothana2000 372 | /usr/share/fonts/opentype/mathjax/MathJax_Size2-Regular.otf: MathJax_Size2:style=Regular 373 | /usr/share/fonts/type1/texlive-fonts-recommended/putbi8a.pfb: Utopia:style=Bold Italic 374 | /usr/share/texmf/fonts/opentype/public/lm/lmsans10-bold.otf: Latin Modern Sans,LM Sans 10:style=10 Bold,Bold 375 | /usr/share/texmf/fonts/opentype/public/lm/lmromanslant10-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 10:style=10 Regular,Regular 376 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrepagella-italic.otf: TeX Gyre Pagella:style=Italic 377 | /usr/share/fonts/truetype/tlwg/Sawasdee.ttf: Sawasdee:style=Regular 378 | /usr/share/fonts/truetype/lato/Lato-Lig.ttf: Lato,Lato Light:style=Light,Regular 379 | /usr/share/fonts/opentype/mathjax/MathJax_Main-Italic.otf: MathJax_Main:style=Italic 380 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrechorus-mediumitalic.otf: TeX Gyre Chorus:style=Regular 381 | /usr/share/fonts/type1/gsfonts/n021003l.pfb: Nimbus Roman No9 L:style=Regular 382 | /usr/share/fonts/opentype/stix/STIXSizeOneSym-Regular.otf: STIXSizeOneSym:style=Regular 383 | /usr/share/texmf/fonts/opentype/public/lm/lmsans8-regular.otf: Latin Modern Sans,LM Sans 8:style=8 Regular,Regular 384 | /usr/share/fonts/type1/gsfonts/s050000l.pfb: Standard Symbols L:style=Regular 385 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheros-bold.otf: TeX Gyre Heros:style=Bold 386 | /usr/share/texmf/fonts/opentype/public/lm/lmsans17-regular.otf: Latin Modern Sans,LM Sans 17:style=17 Regular,Regular 387 | /usr/share/fonts/opentype/mathjax/MathJax_Size3-Regular.otf: MathJax_Size3:style=Regular 388 | /usr/share/fonts/truetype/tlwg/TlwgTypo-BoldOblique.ttf: Tlwg Typo:style=BoldOblique 389 | /usr/share/fonts/opentype/mathjax/MathJax_Math-BoldItalic.otf: MathJax_Math:style=BoldItalic 390 | /usr/share/fonts/truetype/msttcorefonts/verdanai.ttf: Verdana:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,Etzana 391 | /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-B.ttf: Ubuntu Mono:style=Bold 392 | /usr/share/fonts/truetype/tlwg/Waree.ttf: Waree:style=Book 393 | /usr/share/fonts/truetype/padauk/Padauk-book.ttf: Padauk Book,ပိတောက်စာအုပ်:style=Regular 394 | /usr/share/fonts/opentype/mathjax/MathJax_AMS-Regular.otf: MathJax_AMS:style=Regular 395 | /usr/share/fonts/truetype/nanum/NanumGothicBold.ttf: NanumGothic,나눔고딕:style=Bold 396 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvr8ac.pfb: Nimbus Sans L:style=Regular Condensed 397 | /usr/share/fonts/woff/font-awesome/fontawesome-webfont.woff: FontAwesome:style=Regular 398 | /usr/share/fonts/truetype/liberation/LiberationMono-Italic.ttf: Liberation Mono:style=Italic 399 | /usr/share/fonts/truetype/liberation/LiberationSans-BoldItalic.ttf: Liberation Sans:style=Bold Italic 400 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_DR.otf: Linux Libertine Display O:style=Regular 401 | /usr/share/fonts/type1/gsfonts/b018035l.pfb: URW Bookman L:style=Demi Bold Italic 402 | /usr/share/fonts/type1/texlive-fonts-recommended/utmr8a.pfb: Nimbus Roman No9 L:style=Regular 403 | /usr/share/fonts/truetype/tlwg/Umpush-Bold.ttf: Umpush:style=Bold 404 | /usr/share/fonts/X11/Type1/c0632bt_.pfb: Bitstream Charter:style=Bold 405 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-MI.ttf: Ubuntu,Ubuntu Medium:style=Medium Italic,Bold Italic 406 | /usr/share/fonts/opentype/cabin/Cabin-BoldItalic.otf: Cabin:style=Bold Italic 407 | /usr/share/fonts/type1/texlive-fonts-recommended/bchbi8a.pfb: Bitstream Charter:style=Bold Italic 408 | /usr/share/texmf/fonts/opentype/public/lm/lmsans9-regular.otf: Latin Modern Sans,LM Sans 9:style=9 Regular,Regular 409 | /usr/share/fonts/truetype/tlwg/Loma.ttf: Loma:style=Book 410 | /usr/share/fonts/opentype/freefont/FreeMonoBoldOblique.otf: FreeMono:style=Bold Oblique,получерен наклонен,Negreta cursiva,tučné kurzíva,fed kursiv,Fett-Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,gros oblic,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,huruf tebal miring,жирний похилий,polkrepko ležeče,treknais slīpraksts,pusjuodis pasvirasis,Lodi etzana,धृष्ट-तिरछा 411 | /usr/share/fonts/truetype/adf/GilliusADFNo2-Italic.otf: Gillius ADF No2:style=Italic 412 | /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold_Italic.ttf: Times New Roman:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana 413 | /usr/share/fonts/type1/gsfonts/c059033l.pfb: Century Schoolbook L:style=Italic 414 | /usr/share/fonts/truetype/ttf-indic-fonts-core/lohit_hi.ttf: Lohit Devanagari:style=Regular 415 | /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS_Bold.ttf: Trebuchet MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 416 | /usr/share/fonts/X11/Type1/Symbol.pfb: Symbol:style=Regular 417 | /usr/share/fonts/X11/Type1/c0582bt_.pfb: Courier 10 Pitch:style=Italic 418 | /usr/share/fonts/opentype/mathjax/MathJax_Size1-Regular.otf: MathJax_Size1:style=Regular 419 | /usr/share/fonts/truetype/ttf-indic-fonts-core/MuktiNarrow.ttf: Mukti Narrow,মুক্তি:style=Regular 420 | /usr/share/fonts/type1/texlive-fonts-recommended/bchri8a.pfb: Bitstream Charter:style=Italic 421 | /usr/share/fonts/X11/Type1/c0583bt_.pfb: Courier 10 Pitch:style=Bold 422 | /usr/share/fonts/truetype/junicode/Junicode-Bold.ttf: Junicode:style=Bold 423 | /usr/share/fonts/type1/texlive-fonts-recommended/ubkl8a.pfb: URW Bookman L:style=Light 424 | /usr/share/texmf/fonts/opentype/public/lm/lmromanslant12-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 12:style=12 Regular,Regular 425 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrepagella-regular.otf: TeX Gyre Pagella:style=Regular 426 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvro8ac.pfb: Nimbus Sans L:style=Regular Condensed Italic 427 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-BoldOblique.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold Oblique,Bold Oblique 428 | /usr/share/fonts/type1/texlive-fonts-recommended/uagko8a.pfb: URW Gothic L:style=Book Oblique 429 | /usr/share/fonts/truetype/droid/DroidSansEthiopic-Regular.ttf: Droid Sans Ethiopic:style=Regular 430 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrecursor-regular.otf: TeX Gyre Cursor:style=Regular 431 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrebonum-regular.otf: TeX Gyre Bonum:style=Regular 432 | /usr/share/fonts/type1/texlive-fonts-recommended/usyr.pfb: Standard Symbols L:style=Regular 433 | /usr/share/texmf/fonts/opentype/public/lm/lmsans10-regular.otf: Latin Modern Sans,LM Sans 10:style=10 Regular,Regular 434 | /usr/share/fonts/truetype/msttcorefonts/arialbi.ttf: Arial:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana 435 | /usr/share/texmf/fonts/opentype/public/lm/lmroman10-regular.otf: Latin Modern Roman,LM Roman 10:style=10 Regular,Regular 436 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-LI.ttf: Ubuntu,Ubuntu Light:style=Light Italic,Italic 437 | /usr/share/fonts/truetype/tlwg/Norasi-Oblique.ttf: Norasi:style=Oblique 438 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerifCondensed-Italic.ttf: DejaVu Serif,DejaVu Serif Condensed:style=Condensed Italic,Italic 439 | /usr/share/fonts/type1/gsfonts/a010035l.pfb: URW Gothic L:style=Demi Oblique 440 | /usr/share/fonts/opentype/stix/STIXIntegralsSm-Regular.otf: STIXIntegralsSm:style=Regular 441 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo3-Bold.otf: Accanthis ADF Std No3:style=Bold 442 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Malige-b.ttf: Mallige:style=Bold 443 | /usr/share/fonts/truetype/freefont/FreeSerifBold.ttf: FreeSerif:style=Bold,получерен,negreta,tučné,fed,Fett,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Обычный,Fet,ตัวหนา,Kalın,huruf tebal,жирний,Polkrepko,treknraksts,pusjuodis,ضخیم,đậm,Lodia,धृष्ट 444 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoltcond10-oblique.otf: Latin Modern Mono Light Cond,LM Mono Light Cond 10:style=10 Oblique,Italic 445 | /usr/share/fonts/truetype/didot/GFSDidotBold.otf: GFS Didot,GFS Didot Rg:style=Bold 446 | /usr/share/texmf/fonts/opentype/public/lm/lmromandemi10-oblique.otf: Latin Modern Roman Demi,LM Roman Demi 10:style=10 Oblique,Italic 447 | /usr/share/texmf/fonts/opentype/public/lm/lmroman5-regular.otf: Latin Modern Roman,LM Roman 5:style=5 Regular,Regular 448 | /usr/share/fonts/truetype/tlwg/Loma-Bold.ttf: Loma:style=Bold 449 | /usr/share/fonts/truetype/msttcorefonts/courbd.ttf: Courier New:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia 450 | /usr/share/fonts/truetype/takao-gothic/TakaoPGothic.ttf: TakaoPGothic,Takao Pゴシック:style=Regular 451 | /usr/share/fonts/truetype/junicode/Junicode.ttf: Junicode:style=Regular 452 | /usr/share/fonts/truetype/didot/GFSDidotBoldItalic.otf: GFS Didot:style=Bold Italic 453 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo2-Bold.otf: Accanthis ADF Std No2:style=Bold 454 | /usr/share/fonts/opentype/stix/STIXGeneral-BoldItalic.otf: STIXGeneral:style=Bold Italic 455 | /usr/share/fonts/truetype/didot/GFSDidot.otf: GFS Didot:style=Regular 456 | /usr/share/fonts/truetype/liberation/LiberationSerif-Regular.ttf: Liberation Serif:style=Regular 457 | /usr/share/fonts/opentype/lobster/lobster.otf: Lobster Two:style=Bold Italic 458 | /usr/share/fonts/type1/texlive-fonts-recommended/uagk8a.pfb: URW Gothic L:style=Book 459 | /usr/share/fonts/opentype/stix/STIXSizeFourSym-Regular.otf: STIXSizeFourSym:style=Regular 460 | /usr/share/fonts/type1/texlive-fonts-recommended/uagd8a.pfb: URW Gothic L:style=Demi 461 | /usr/share/fonts/truetype/tlwg/Purisa-Oblique.ttf: Purisa:style=Oblique 462 | /usr/share/fonts/opentype/stix/STIXSizeFiveSym-Regular.otf: STIXSizeFiveSym:style=Regular 463 | /usr/share/fonts/truetype/didot/GFSDidotItalic.otf: GFS Didot:style=Italic 464 | /usr/share/fonts/truetype/kacst/KacstTitleL.ttf: KacstTitleL:style=Medium,Regular 465 | /usr/share/fonts/opentype/freefont/FreeSerifItalic.otf: FreeSerif:style=Italic,курсивен,cursiva,kurzíva,kursiv,Λειψίας,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,cursiv,Курсив,ตัวเอียง,İtalik,kursif,Ležeče,kursīvs,kursivas,nghiêng,Etzana,तिरछा 466 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-L.ttf: Ubuntu,Ubuntu Light:style=Light,Regular 467 | /usr/share/fonts/truetype/adf/GilliusADFNo2Cd-Regular.otf: Gillius ADF No2 Cd:style=Regular 468 | /usr/share/fonts/type1/mathml/Symbol.pfb: Symbol:style=Regular 469 | /usr/share/fonts/truetype/tlwg/Waree-BoldOblique.ttf: Waree:style=BoldOblique 470 | /usr/share/fonts/truetype/dejavu/DejaVuSerif-Italic.ttf: DejaVu Serif:style=Italic 471 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreadventor-regular.otf: TeX Gyre Adventor:style=Regular 472 | /usr/share/fonts/opentype/stix/STIXGeneral-Italic.otf: STIXGeneral:style=Italic 473 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrepagella-bold.otf: TeX Gyre Pagella:style=Bold 474 | /usr/share/fonts/truetype/porson/GFSPorson.otf: GFS Porson:style=Regular 475 | /usr/share/fonts/type1/texlive-fonts-recommended/uncr8a.pfb: Century Schoolbook L:style=Roman 476 | /usr/share/fonts/truetype/droid/DroidNaskh-Regular.ttf: Droid Arabic Naskh:style=Regular 477 | /usr/share/fonts/truetype/lato/Lato-BolIta.ttf: Lato:style=Bold Italic 478 | /usr/share/fonts/truetype/gentium-basic/GenBasR.ttf: Gentium Basic:style=Regular 479 | /usr/share/texmf/fonts/opentype/public/lm/lmroman6-regular.otf: Latin Modern Roman,LM Roman 6:style=6 Regular,Regular 480 | /usr/share/fonts/truetype/didot-classic/GFSDidotClassic.otf: GFS Didot Classic:style=Regular 481 | /usr/share/texmf/fonts/opentype/public/lm/lmromanslant10-bold.otf: Latin Modern Roman Slanted,LM Roman Slanted 10:style=10 Bold,Bold 482 | /usr/share/fonts/truetype/tlwg/Garuda-BoldOblique.ttf: Garuda:style=BoldOblique 483 | /usr/share/fonts/truetype/comfortaa/Comfortaa-Bold.ttf: Comfortaa:style=Bold 484 | /usr/share/fonts/truetype/msttcorefonts/Impact.ttf: Impact:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 485 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Meera_04.ttf: Meera:style=Regular 486 | /usr/share/fonts/opentype/mathjax/MathJax_Math-Regular.otf: MathJax_Math:style=Regular 487 | /usr/share/fonts/truetype/artemisia/GFSArtemisiaBold.otf: GFS Artemisia:style=Bold 488 | /usr/share/fonts/truetype/ttf-punjabi-fonts/lohit_pa.ttf: Lohit Punjabi:style=Regular 489 | /usr/share/fonts/truetype/kacst-one/KacstOne.ttf: KacstOne:style=Regular 490 | /usr/share/fonts/truetype/tibetan-machine/TibetanMachineUni.ttf: Tibetan Machine Uni:style=Regular 491 | /usr/share/fonts/truetype/kacst/KacstLetter.ttf: KacstLetter:style=Medium 492 | /usr/share/fonts/truetype/msttcorefonts/verdanab.ttf: Verdana:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 493 | /usr/share/fonts/truetype/artemisia/GFSArtemisia.otf: GFS Artemisia:style=Regular 494 | /usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-boldoblique.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Bold Oblique,Bold Italic 495 | /usr/share/fonts/truetype/theokritos/GFSTheokritos.otf: GFS Theokritos:style=Regular 496 | /usr/share/fonts/type1/texlive-fonts-recommended/utmbi8a.pfb: Nimbus Roman No9 L:style=Medium Italic 497 | /usr/share/fonts/opentype/stix/STIXIntegralsUpSm-Regular.otf: STIXIntegralsUpSm:style=Regular 498 | /usr/share/fonts/opentype/freefont/FreeSerif.otf: FreeSerif:style=Regular,нормален,normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Normale,Gemiddeld,odmiana zwykła,Обычный,Normálne,ปกติ,menengah,прямій,Navadno,vidējs,normalusis,عادی,vừa,Arrunta,सामान्य 499 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvbo8a.pfb: Nimbus Sans L:style=Bold Italic 500 | /usr/share/fonts/truetype/adf/GilliusADF-Regular.otf: Gillius ADF:style=Regular 501 | /usr/share/texmf/fonts/opentype/public/lm/lmmonolt10-regular.otf: Latin Modern Mono Light,LM Mono Light 10:style=10 Regular,Regular 502 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvr8a.pfb: Nimbus Sans L:style=Regular 503 | /usr/share/fonts/truetype/ttf-indic-fonts-core/utkal.ttf: ori1Uni,utkal:style=Medium 504 | /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold.ttf: Courier New:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia 505 | /usr/share/texmf/fonts/opentype/public/lm/lmroman12-regular.otf: Latin Modern Roman,LM Roman 12:style=12 Regular,Regular 506 | /usr/share/fonts/truetype/tlwg/Norasi-Italic.ttf: Norasi:style=Italic 507 | /usr/share/fonts/type1/texlive-fonts-recommended/uplri8a.pfb: URW Palladio L:style=Italic 508 | /usr/share/fonts/truetype/droid/DroidSansHebrew-Bold.ttf: Droid Sans Hebrew:style=Bold 509 | /usr/share/fonts/truetype/tlwg/TlwgTypewriter.ttf: TlwgTypewriter:style=Medium 510 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSerif-Italic.ttf: DejaVu Serif:style=Italic 511 | /usr/share/fonts/type1/gsfonts/n019023l.pfb: Nimbus Sans L:style=Regular Italic 512 | /usr/share/fonts/truetype/openoffice/opens___.ttf: OpenSymbol:style=Regular 513 | /usr/share/fonts/truetype/msttcorefonts/verdanaz.ttf: Verdana:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 514 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-oblique.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 Oblique,Italic 515 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvbo8ac.pfb: Nimbus Sans L:style=Bold Condensed Italic 516 | /usr/share/fonts/type1/gsfonts/b018012l.pfb: URW Bookman L:style=Light 517 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Malige-n.ttf: Mallige:style=Normal 518 | /usr/share/fonts/truetype/neohellenic/GFSNeohellenic.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Regular 519 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheros-italic.otf: TeX Gyre Heros:style=Italic 520 | /usr/share/fonts/truetype/tlwg/Kinnari-BoldItalic.ttf: Kinnari:style=BoldItalic 521 | /usr/share/fonts/truetype/droid/DroidSansThai.ttf: Droid Sans Thai:style=Regular 522 | /usr/share/fonts/truetype/tlwg/TlwgTypewriter-Oblique.ttf: TlwgTypewriter:style=Oblique 523 | /usr/share/fonts/truetype/lato/Lato-HaiIta.ttf: Lato,Lato Hairline:style=Hairline Italic,Italic 524 | /usr/share/fonts/truetype/adf/GilliusADFNo2-Bold.otf: Gillius ADF No2:style=Bold 525 | /usr/share/fonts/type1/texlive-fonts-recommended/uplr8a.pfb: URW Palladio L:style=Roman 526 | /usr/share/fonts/truetype/gentium/GenAR102.ttf: GentiumAlt:style=Regular 527 | /usr/share/texmf/fonts/opentype/public/lm/lmroman7-regular.otf: Latin Modern Roman,LM Roman 7:style=7 Regular,Regular 528 | /usr/share/fonts/truetype/bodoni-classic/GFSBodoniClassic.otf: GFS BodoniClassic:style=Regular 529 | /usr/share/fonts/truetype/wqy/wqy-microhei.ttc: WenQuanYi Micro Hei Mono,文泉驛等寬微米黑,文泉驿等宽微米黑:style=Regular 530 | /usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf: Times New Roman:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiona,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia 531 | /usr/share/fonts/truetype/lyx/esint10.ttf: esint10:style=regular 532 | /usr/share/texmf/fonts/opentype/public/lm/lmroman8-bold.otf: Latin Modern Roman,LM Roman 8:style=8 Bold,Bold 533 | /usr/share/fonts/type1/gsfonts/c059016l.pfb: Century Schoolbook L:style=Bold 534 | /usr/share/fonts/type1/gsfonts/n022004l.pfb: Nimbus Mono L:style=Bold 535 | /usr/share/fonts/truetype/tlwg/Kinnari-BoldOblique.ttf: Kinnari:style=BoldOblique 536 | /usr/share/fonts/type1/texlive-fonts-recommended/uncbi8a.pfb: Century Schoolbook L:style=Bold Italic 537 | /usr/share/fonts/type1/gsfonts/n019024l.pfb: Nimbus Sans L:style=Bold Italic 538 | /usr/share/fonts/truetype/msttcorefonts/Verdana_Bold_Italic.ttf: Verdana:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 539 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreschola-italic.otf: TeX Gyre Schola:style=Italic 540 | /usr/share/fonts/truetype/adf/AccanthisADFStdNo2-BoldItalic.otf: Accanthis ADF Std No2:style=Bold Italic 541 | /usr/share/fonts/truetype/padauk/Padauk-bookbold.ttf: Padauk Book,ပိတောက်စာအုပ်:style=Bold,စာလုံးမဲ 542 | /usr/share/fonts/type1/gsfonts/b018032l.pfb: URW Bookman L:style=Light Italic 543 | /usr/share/fonts/type1/texlive-fonts-recommended/uhvb8ac.pfb: Nimbus Sans L:style=Bold Condensed 544 | /usr/share/fonts/type1/gsfonts/p052003l.pfb: URW Palladio L:style=Roman 545 | /usr/share/texmf/fonts/opentype/public/lm/lmroman9-bold.otf: Latin Modern Roman,LM Roman 9:style=9 Bold,Bold 546 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_RI.otf: Linux Libertine O:style=Italic 547 | /usr/share/fonts/truetype/liberation/LiberationSansNarrow-Bold.ttf: Liberation Sans Narrow:style=Bold 548 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheros-bolditalic.otf: TeX Gyre Heros:style=Bold Italic 549 | /usr/share/fonts/truetype/droid/DroidSansEthiopic-Bold.ttf: Droid Sans Ethiopic:style=Bold 550 | /usr/share/fonts/opentype/cabin/Cabin-Bold.otf: Cabin:style=Bold 551 | /usr/share/fonts/truetype/lyx/cmr10.ttf: cmr10:style=Regular 552 | /usr/share/texmf/fonts/opentype/public/lm/lmroman6-bold.otf: Latin Modern Roman,LM Roman 6:style=6 Bold,Bold 553 | /usr/share/fonts/type1/texlive-fonts-recommended/pcrro8a.pfb: Courier:style=Italic 554 | /usr/share/fonts/truetype/lyx/msam10.ttf: msam10:style=Regular 555 | /usr/share/fonts/truetype/liberation/LiberationSans-Bold.ttf: Liberation Sans:style=Bold 556 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreschola-bold.otf: TeX Gyre Schola:style=Bold 557 | /usr/share/fonts/opentype/lobstertwo/LobsterTwo-Italic.otf: Lobster Two:style=Italic 558 | /usr/share/fonts/truetype/freefont/FreeSerifItalic.ttf: FreeSerif:style=Italic,курсивен,cursiva,kurzíva,kursiv,Λειψίας,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,cursiv,Курсив,ตัวเอียง,İtalik,kursif,Ležeče,kursīvs,kursivas,nghiêng,Etzana,तिरछा 559 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Vemana.ttf: Vemana2000,Pothana2000:style=Regular,Pothana2000 560 | /usr/share/fonts/type1/texlive-fonts-recommended/bchr8a.pfb: Bitstream Charter:style=Regular 561 | /usr/share/texmf/fonts/opentype/public/lm/lmroman7-bold.otf: Latin Modern Roman,LM Roman 7:style=7 Bold,Bold 562 | /usr/share/fonts/truetype/msttcorefonts/Arial_Black.ttf: Arial Black:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 563 | /usr/share/fonts/truetype/droid/DroidSansGeorgian.ttf: Droid Sans Georgian:style=Regular 564 | /usr/share/fonts/type1/texlive-fonts-recommended/ucrro8a.pfb: Nimbus Mono L:style=Regular Oblique 565 | /usr/share/fonts/opentype/stix/STIXSizeThreeSym-Regular.otf: STIXSizeThreeSym:style=Regular 566 | /usr/share/fonts/truetype/freefont/FreeMono.ttf: FreeMono:style=Regular,нормален,normal,obyčejné,Standard,µεσαία,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,menengah,прямій,navadno,vidējs,normalusis,thường,Arrunta,सामान्य 567 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyreheroscn-regular.otf: TeX Gyre Heros Cn:style=Regular 568 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_RZ.otf: Linux Libertine O:style=Semibold 569 | /usr/share/fonts/type1/texlive-fonts-recommended/uzcmi8a.pfb: URW Chancery L:style=Medium Italic 570 | /usr/share/fonts/opentype/mathjax/MathJax_WinIE6-Regular.otf: MathJax_WinIE6:style=Regular 571 | /usr/share/fonts/truetype/msttcorefonts/Andale_Mono.ttf: Andale Mono:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 572 | /usr/share/fonts/type1/gsfonts/n019004l.pfb: Nimbus Sans L:style=Bold 573 | /usr/share/fonts/truetype/tlwg/Umpush-LightOblique.ttf: Umpush:style=LightOblique 574 | /usr/share/fonts/opentype/stix/STIXSizeFourSym-Bold.otf: STIXSizeFourSym:style=Bold 575 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyretermes-regular.otf: TeX Gyre Termes:style=Regular 576 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoproplt10-bold.otf: Latin Modern Mono Prop Light,LM Mono Prop Light 10:style=10 Bold,Bold 577 | /usr/share/texmf/fonts/opentype/public/lm/lmsansquot8-oblique.otf: Latin Modern Sans Quotation,LM Sans Quot 8:style=8 Oblique,Bold Italic 578 | /usr/share/fonts/truetype/font-awesome/fontawesome-webfont.ttf: FontAwesome:style=Regular 579 | /usr/share/fonts/truetype/msttcorefonts/trebucbi.ttf: Trebuchet MS:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 580 | /usr/share/fonts/truetype/msttcorefonts/timesi.ttf: Times New Roman:style=Italic,cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana 581 | /usr/share/fonts/type1/gsfonts/b018015l.pfb: URW Bookman L:style=Demi Bold 582 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-M.ttf: Ubuntu,Ubuntu Medium:style=Medium,Bold 583 | /usr/share/fonts/truetype/kacst/KacstBook.ttf: KacstBook:style=Medium 584 | /usr/share/fonts/opentype/mathjax/MathJax_Script-Regular.otf: MathJax_Script:style=Regular 585 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoltcond10-regular.otf: Latin Modern Mono Light Cond,LM Mono Light Cond 10:style=10 Regular,Regular 586 | /usr/share/fonts/type1/gsfonts/n022024l.pfb: Nimbus Mono L:style=Bold Oblique 587 | /usr/share/fonts/truetype/kacst/KacstPoster.ttf: KacstPoster:style=Medium 588 | /usr/share/texmf/fonts/opentype/public/lm/lmroman5-bold.otf: Latin Modern Roman,LM Roman 5:style=5 Bold,Bold 589 | /usr/share/fonts/truetype/msttcorefonts/andalemo.ttf: Andale Mono:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 590 | /usr/share/fonts/opentype/freefont/FreeSansOblique.otf: FreeSans:style=Oblique,наклонен,negreta cursiva,kurzíva,kursiv,Πλάγια,Cursiva,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,Ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा 591 | /usr/share/fonts/truetype/baskerville/GFSBaskerville.otf: GFS Baskerville:style=Regular 592 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-B.ttf: Ubuntu:style=Bold 593 | /usr/share/texmf/fonts/opentype/public/lm/lmroman8-regular.otf: Latin Modern Roman,LM Roman 8:style=8 Regular,Regular 594 | /usr/share/fonts/truetype/msttcorefonts/Arial_Bold.ttf: Arial:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,đậm,Lodia 595 | /usr/share/fonts/truetype/freefont/FreeSansOblique.ttf: FreeSans:style=Oblique,наклонен,negreta cursiva,kurzíva,kursiv,Πλάγια,Cursiva,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,kursywa,Itálico,oblic,Курсив,İtalik,huruf miring,похилий,Ležeče,slīpraksts,pasvirasis,nghiêng,Etzana,तिरछा 596 | /usr/share/fonts/opentype/mathjax/MathJax_Main-Bold.otf: MathJax_Main:style=Bold 597 | /usr/share/fonts/truetype/ubuntu-font-family/Ubuntu-BI.ttf: Ubuntu:style=Bold Italic 598 | /usr/share/fonts/truetype/gazis/GFSGazis.otf: GFS Gazis:style=Regular 599 | /usr/share/texmf/fonts/opentype/public/lm/lmroman9-italic.otf: Latin Modern Roman,LM Roman 9:style=9 Italic,Italic 600 | /usr/share/fonts/truetype/msttcorefonts/Courier_New_Bold_Italic.ttf: Courier New:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,Lodi etzana 601 | /usr/share/fonts/truetype/tlwg/Garuda.ttf: Garuda:style=Book 602 | /usr/share/fonts/truetype/msttcorefonts/timesbi.ttf: Times New Roman:style=Bold Italic,Negreta cursiva,tučné kurzíva,fed kursiv,Fett Kursiv,Έντονα Πλάγια,Negrita Cursiva,Lihavoitu Kursivoi,Gras Italique,Félkövér dőlt,Grassetto Corsivo,Vet Cursief,Halvfet Kursiv,Pogrubiona kursywa,Negrito Itálico,Полужирный Курсив,Tučná kurzíva,Fet Kursiv,Kalın İtalik,Krepko poševno,nghiêng đậm,Lodi etzana 603 | /usr/share/fonts/truetype/ttf-indic-fonts-core/Kedage-b.ttf: Kedage:style=Bold 604 | /usr/share/fonts/truetype/kacst/KacstQurn.ttf: KacstQurn:style=Medium,Regular 605 | /usr/share/fonts/opentype/stix/STIXSizeOneSym-Bold.otf: STIXSizeOneSym:style=Bold 606 | /usr/share/fonts/truetype/nanum/NanumMyeongjo.ttf: NanumMyeongjo,나눔명조:style=Regular 607 | /usr/share/fonts/opentype/linux-libertine/LinLibertine_RBI.otf: Linux Libertine O:style=Bold Italic 608 | /usr/share/fonts/opentype/linux-libertine/LinBiolinum_RB.otf: Linux Biolinum O:style=Bold 609 | /usr/share/fonts/opentype/linux-libertine/LinBiolinum_K.otf: Linux Biolinum Keyboard O:style=Regular 610 | /usr/share/fonts/truetype/solomos/GFSSolomos.otf: GFS Solomos:style=Regular 611 | /usr/share/fonts/opentype/freefont/FreeSans.otf: FreeSans:style=Regular,нормален,Normal,obyčejné,Mittel,µεσαία,Normaali,Normál,Medio,Gemiddeld,Odmiana Zwykła,Обычный,Normálne,menengah,прямій,Navadno,vidējs,normalusis,vừa,Arrunta,सामान्य 612 | /usr/share/fonts/truetype/nanum/NanumMyeongjoBold.ttf: NanumMyeongjo,나눔명조:style=Bold 613 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed-Bold.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed Bold,Bold 614 | /usr/share/fonts/truetype/kacst/KacstNaskh.ttf: KacstNaskh:style=Medium 615 | /usr/share/fonts/truetype/gentium/GenR102.ttf: Gentium:style=Regular 616 | /usr/share/fonts/truetype/neohellenic/GFSNeohellenicBold.otf: GFS Neohellenic,GFS Neohellenic Rg:style=Bold 617 | /usr/share/fonts/truetype/gentium-basic/GenBkBasB.ttf: Gentium Book Basic:style=Bold 618 | /usr/share/fonts/opentype/lobstertwo/LobsterTwo-Bold.otf: Lobster Two:style=Bold 619 | /usr/share/fonts/truetype/ttf-dejavu/DejaVuSansCondensed.ttf: DejaVu Sans,DejaVu Sans Condensed:style=Condensed,Book 620 | /usr/share/fonts/truetype/inconsolata/Inconsolata.otf: Inconsolata:style=Medium 621 | /usr/share/fonts/truetype/tlwg/Kinnari.ttf: Kinnari:style=Medium 622 | /usr/share/fonts/type1/gsfonts/c059036l.pfb: Century Schoolbook L:style=Bold Italic 623 | /usr/share/fonts/type1/gsfonts/p052024l.pfb: URW Palladio L:style=Bold Italic 624 | /usr/share/fonts/type1/texlive-fonts-recommended/ubkli8a.pfb: URW Bookman L:style=Light Italic 625 | /usr/share/texmf/fonts/opentype/public/lm/lmmonoslant10-regular.otf: Latin Modern Mono Slanted,LM Mono Slanted 10:style=10 Regular,Regular 626 | /usr/share/texmf/fonts/opentype/public/lm/lmromanslant17-regular.otf: Latin Modern Roman Slanted,LM Roman Slanted 17:style=17 Regular,Regular 627 | /usr/share/fonts/truetype/dejavu/DejaVuSerif.ttf: DejaVu Serif:style=Book 628 | /usr/share/texmf/fonts/opentype/public/lm/lmroman9-regular.otf: Latin Modern Roman,LM Roman 9:style=9 Regular,Regular 629 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyretermes-bold.otf: TeX Gyre Termes:style=Bold 630 | /usr/share/fonts/truetype/lyx/cmsy10.ttf: cmsy10:style=Regular 631 | /usr/share/fonts/truetype/freefont/FreeMonoBold.ttf: FreeMono:style=Bold,получерен,negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Полужирный,Fet,Kalın,huruf tebal,жирний,polkrepko,treknraksts,pusjuodis,đậm,Lodia,धृष्ट 632 | /usr/share/fonts/type1/texlive-fonts-recommended/pcrbo8a.pfb: Courier:style=Bold Italic 633 | /usr/share/fonts/truetype/lyx/cmmi10.ttf: cmmi10:style=Regular 634 | /usr/share/fonts/truetype/tlwg/Waree-Bold.ttf: Waree:style=Bold 635 | /usr/share/texmf/fonts/opentype/public/tex-gyre/texgyrebonum-italic.otf: TeX Gyre Bonum:style=Italic 636 | /usr/share/texmf/fonts/opentype/public/lm/lmroman10-italic.otf: Latin Modern Roman,LM Roman 10:style=10 Italic,Italic 637 | /usr/share/texmf/fonts/opentype/public/lm/lmroman12-italic.otf: Latin Modern Roman,LM Roman 12:style=12 Italic,Italic 638 | /usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Italic.otf: MathJax_SansSerif:style=Italic 639 | /usr/share/fonts/opentype/lobstertwo/LobsterTwo-BoldItalic.otf: Lobster Two:style=Bold Italic 640 | /usr/share/texmf/fonts/opentype/public/lm/lmsans17-oblique.otf: Latin Modern Sans,LM Sans 17:style=17 Oblique,Italic 641 | /usr/share/fonts/truetype/msttcorefonts/Comic_Sans_MS_Bold.ttf: Comic Sans MS:style=Bold,Negreta,tučné,fed,Fett,Έντονα,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,Полужирный,Fet,Kalın,Krepko,Lodia 642 | /usr/share/fonts/opentype/mathjax/MathJax_WinChrome-Regular.otf: MathJax_WinChrome:style=Regular 643 | /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-BI.ttf: Ubuntu Mono:style=Bold Italic 644 | /usr/share/fonts/truetype/gentium-basic/GenBkBasI.ttf: Gentium Book Basic:style=Italic 645 | /usr/share/fonts/truetype/kacst/KacstTitle.ttf: KacstTitle:style=Medium 646 | /usr/share/fonts/truetype/ubuntu-font-family/UbuntuMono-RI.ttf: Ubuntu Mono:style=Italic 647 | /usr/share/fonts/truetype/tlwg/Norasi-BoldItalic.ttf: Norasi:style=BoldItalic 648 | /usr/share/fonts/truetype/msttcorefonts/times.ttf: Times New Roman:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,thường,Arrunta 649 | /usr/share/fonts/truetype/msttcorefonts/Trebuchet_MS.ttf: Trebuchet MS:style=Regular,Normal,obyčejné,Standard,Κανονικά,Normaali,Normál,Normale,Standaard,Normalny,Обычный,Normálne,Navadno,Arrunta 650 | /usr/share/fonts/truetype/msttcorefonts/ariali.ttf: Arial:style=Italic,Cursiva,kurzíva,kursiv,Πλάγια,Kursivoitu,Italique,Dőlt,Corsivo,Cursief,Kursywa,Itálico,Курсив,İtalik,Poševno,nghiêng,Etzana 651 | /usr/share/fonts/opentype/freefont/FreeSerifBold.otf: FreeSerif:style=Bold,получерен,negreta,tučné,fed,Fett,Negrita,Lihavoitu,Gras,Félkövér,Grassetto,Vet,Halvfet,Pogrubiony,Negrito,gros,Обычный,Fet,ตัวหนา,Kalın,huruf tebal,жирний,Polkrepko,treknraksts,pusjuodis,ضخیم,đậm,Lodia,धृष्ट 652 | /usr/share/fonts/opentype/mathjax/MathJax_SansSerif-Regular.otf: MathJax_SansSerif:style=Regular 653 | /usr/share/fonts/opentype/cabin/Cabin-MediumItalic.otf: Cabin:style=Medium Italic 654 | /usr/share/fonts/truetype/dejavu/DejaVuSans-BoldOblique.ttf: DejaVu Sans:style=Bold Oblique 655 | /usr/share/fonts/opentype/cabin/Cabin-Medium.otf: Cabin:style=Medium 656 | /usr/share/fonts/truetype/kacst/KacstOffice.ttf: KacstOffice:style=Medium 657 | /usr/share/fonts/type1/gsfonts/n019003l.pfb: Nimbus Sans L:style=Regular 658 | -------------------------------------------------------------------------------- /gittobook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/git-to-book-docs/067f7fa2bc9212dca23f5b596b74da76c689b043/gittobook.png -------------------------------------------------------------------------------- /images/gittobook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/git-to-book-docs/067f7fa2bc9212dca23f5b596b74da76c689b043/images/gittobook.png -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | title: 'Git to book documentation' 3 | Subtitle: > 4 | A simple way to generate 5 | PDF, EPUB, MOBI, HTML, 6 | using Markdown and git repositories. 7 | Output formats are generated using Pandoc. 8 | subject: Gittobook documentation 9 | author: 10 | - Dennis Bæk Iversen 11 | keywords: ebooks, pandoc, pdf, html 12 | rights: Creative Commons Non-Commercial Share Alike 3.0 13 | language: en-US 14 | tags: [pandoc, pdf, epub, mobi creation] 15 | cover-image: "images/gittobook.png" 16 | lang: en 17 | # Note you will need quotes around dates 18 | date: '2015-01-27' 19 | stylesheet: epub.css 20 | # pandoc format arguments 21 | # because of security these options are limited 22 | format-arguments: 23 | pdf: > 24 | -S 25 | --toc 26 | --number-sections 27 | -V mainfont='Latin Modern Roman' 28 | -V sansfont='Times New Roman' 29 | -V monofont=Arial -V fontsize=12pt -V version=1.10 30 | html: -S --toc-depth=3 --chapters --number-sections --toc 31 | epub: -S --epub-embed-font=OpenSans-Regular.ttf --epub-chapter-level=3 --number-sections --toc 32 | mobi: ok 33 | ... 34 | -------------------------------------------------------------------------------- /templates/bak.body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | $if(quotes)$ 4 | 5 | $endif$ 6 | $if(highlighting-css)$ 7 | 10 | $endif$ 11 | $for(css)$ 12 | 13 | $endfor$ 14 | $if(math)$ 15 | $math$ 16 | $endif$ 17 | $for(header-includes)$ 18 | $header-includes$ 19 | $endfor$ 20 | 21 |
22 |

$title$

23 | $if(subtitle)$ 24 |

$subtitle$

25 | $endif$ 26 | $for(author)$ 27 |

$author$

28 | $endfor$ 29 | $if(date)$ 30 |

$date$

31 | $endif$ 32 |
33 | $for(include-before)$ 34 | $include-before$ 35 | $endfor$ 36 | $if(title)$ 37 | 38 | $endif$ 39 | $if(toc)$ 40 |
41 | $toc$ 42 |
43 | $endif$ 44 | $body$ 45 | $for(include-after)$ 46 | $include-after$ 47 | $endfor$ 48 | 49 | -------------------------------------------------------------------------------- /templates/body-with-author.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | $if(quotes)$ 4 | 5 | $endif$ 6 | $if(highlighting-css)$ 7 | 10 | $endif$ 11 | $for(css)$ 12 | 13 | $endfor$ 14 | $if(math)$ 15 | $math$ 16 | $endif$ 17 | $for(header-includes)$ 18 | $header-includes$ 19 | $endfor$ 20 |

$title$

21 | $if(subtitle)$ 22 |

$subtitle$

23 | $endif$ 24 | $for(author)$ 25 |

$author$

26 | $endfor$ 27 | $if(date)$ 28 |

$date$

29 | $endif$ 30 | $for(include-before)$ 31 | $include-before$ 32 | $endfor$ 33 | $if(title)$ 34 | 35 | $endif$ 36 | $if(toc)$ 37 |
38 | $toc$ 39 |
40 | $endif$ 41 | $body$ 42 | $for(include-after)$ 43 | $include-after$ 44 | $endfor$ 45 | 46 | -------------------------------------------------------------------------------- /templates/body.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | $if(quotes)$ 4 | 5 | $endif$ 6 | $if(highlighting-css)$ 7 | 10 | $endif$ 11 | $for(css)$ 12 | 13 | $endfor$ 14 | $if(math)$ 15 | $math$ 16 | $endif$ 17 | $for(header-includes)$ 18 | $header-includes$ 19 | $endfor$ 20 | 21 | $for(include-before)$ 22 | $include-before$ 23 | $endfor$ 24 | 25 | $if(toc)$ 26 |
27 | $toc$ 28 |
29 | $endif$ 30 | $body$ 31 | $for(include-after)$ 32 | $include-after$ 33 | $endfor$ 34 | 35 | -------------------------------------------------------------------------------- /templates/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | $for(author-meta)$ 8 | 9 | $endfor$ 10 | $if(description-meta)$ 11 | 12 | $endif$ 13 | $if(date-meta)$ 14 | 15 | $endif$ 16 | $if(title-prefix)$$title-prefix$ - $endif$$pagetitle$ 17 | 18 | $if(quotes)$ 19 | 20 | $endif$ 21 | $if(highlighting-css)$ 22 | 25 | $endif$ 26 | $for(css)$ 27 | 28 | $endfor$ 29 | $if(math)$ 30 | $math$ 31 | $endif$ 32 | $for(header-includes)$ 33 | $header-includes$ 34 | $endfor$ 35 | 36 | 37 |
38 |
39 |
40 |
41 |

$title$

42 | $if(subtitle)$ 43 |

$subtitle$

44 | $endif$ 45 | $for(author)$ 46 |

$author$

47 | $endfor$ 48 | $if(date)$ 49 |

$date$

50 | $endif$ 51 |
52 | $for(include-before)$ 53 | $include-before$ 54 | $endfor$ 55 | $if(title)$ 56 | 57 | $endif$ 58 | $if(toc)$ 59 |
60 | $toc$ 61 |
62 | $endif$ 63 | $body$ 64 | $for(include-after)$ 65 | $include-after$ 66 | $endfor$ 67 |
68 |
69 |
70 | 71 | 72 | -------------------------------------------------------------------------------- /templates/test.latex: -------------------------------------------------------------------------------- 1 | %!TEX TS-program = xelatex 2 | \documentclass[12pt]{scrartcl} 3 | 4 | % The declaration of the document class: 5 | 6 | % The second line here, i.e. 7 | % \documentclass[12pt]{scrartcl} 8 | % is a standard LaTeX document class declaration: 9 | % we say what kind of document we are making in curly brackets, 10 | % and specify any options in square brackets. 11 | 12 | % (The previous line is a pseudo-comment, declaring that we will 13 | % use the special XeTeX machinery for its more extensive font list 14 | % and its use of unicode; 15 | % in general, LaTeX 'comments' like this one 16 | % begin with % and end with a linebreak.) 17 | 18 | % Note that there we have nothing in the nature of a template; 19 | % it's just a standard bit of LaTeX pandoc will copy unaltered into the 20 | % LaTeX file it is writing. But suppose you wrote something 21 | % more akin to the corresponding line in Pandoc's default 22 | % latex.template file, say: 23 | 24 | % \documentclass$if(fontsize)$[$fontsize$]$endif${scrartcl} 25 | 26 | % then you would have invented a 'variable', fontsize, 27 | % and could write things like 28 | 29 | % `markdown2pdf my.txt --xetex --variable=fontsize:12pt -o my.pdf` or 30 | % `pandoc -r markdown -w html my.txt -s --xetex --variable=fontsize:24pt -o my.tex`. 31 | 32 | % If we specified --variable-fontsize:12, then template substitution 33 | % would yield a LaTeX document beginning 34 | % \documentclass[12pt]{scrarcl} 35 | % which is just what we said anyway. 36 | % But we could also specify a different fontsize. 37 | 38 | % I don't use this `--variable=....`functionality myself; 39 | % I have a couple of basic templates I call with 40 | % `--template=whatever.template` which I can also 41 | % easily inspect to adjust things like font size as I please. 42 | 43 | % While we are discussing the declaration of the document class... 44 | % here's an alternative command for two column landscape, 45 | % not bad for some purposes. (If you strike the word 'landscape' 46 | % you will have two narrow newspaperlike 47 | % columns; scientists like that, because irrationality must 48 | % show itself somewhere): 49 | %\documentclass[12pt,twocolumn,landscape]{scrartcl} 50 | % Columns are too close together in LaTeX so we add this 51 | % `columnsep` command: 52 | %\setlength{\columnsep}{.5in} 53 | 54 | 55 | % I use the special 'komascript' article class "scrartcl" 56 | % reasons I can't entirely remember; I'm not sure it's that great. 57 | % One reason is the unimportant one that, like many classes, 58 | % it allows very big fonts which are convenient for booklet printing 59 | % in the idiotic American way by shrinking letterpaper pages. 60 | 61 | % the standard minimal LaTeX 'article' class declaration would be something like: 62 | 63 | % \documentclass[12pt]{article} 64 | 65 | % or for big type: 66 | 67 | % \documentclass[24pt]{extarticle} 68 | 69 | % but these restrict you to old-fashioned LaTeX materials. 70 | % Note that Kieran Healy uses the swank 'Memoir' class, 71 | % \documentclass[11pt,article,oneside]{memoir} 72 | % which might be worth a look. 73 | 74 | % Enough about the document class. 75 | 76 | % -- We are in swanky unicode, XeTeX land, and must now import these packages: 77 | \usepackage{fontspec,xltxtra,xunicode} 78 | % fontspec means we can specify pretty much any font. 79 | % Because we are using XeTeX material, 80 | % this template needs to be called with the `--xetex` flag. 81 | 82 | 83 | % Symbols: 84 | % Pandoc imports the extensive `amsmath` collection of symbols 85 | % for typesetting ordinary math. 86 | \usepackage{amsmath} 87 | % if you use exotic symbols you need to import specific packages, eg. for 88 | % electrical engineering diagrams, musical notation, exotic currency symbols, 89 | % the unspeakable rites of freemasonry etc. 90 | 91 | 92 | % `babel`: 93 | % The `babel` package, among other things, lets you determine what 94 | % language you are using in a given stretch of text, so that typesetting 95 | % will go well. Here we specify that mostly, we are speaking English: 96 | \usepackage[english]{babel} 97 | 98 | 99 | % Margins, etc: 100 | % the `geometry` package makes for convenient adjusting of margins, which is what 101 | % you asked about. Of course it can do much more, even make coffee for you: 102 | \usepackage{geometry} 103 | \geometry{verbose,letterpaper,tmargin=3cm,bmargin=3cm,lmargin=3cm,rmargin=3cm} 104 | % so if you just keep a copy of this template in the directory you are working in, you 105 | % can adjust the margins by going into this file and messing with the margins. 106 | % the syntax is very unforgiving, but permits 3cm and 2.5in and some other things. 107 | 108 | 109 | % Font: 110 | % Here I set my main font, which is an Apple Corporation Exclusive, golly. 111 | 112 | % \setmainfont{Hoefler Text} 113 | % \setromanfont[Mapping=tex-text,Contextuals={NoWordInitial,NoWordFinal,NoLineInitial,NoLineFinal},Ligatures={NoCommon}]{Hoefler Text} 114 | 115 | % Hoefler Text is okay, but note the long discussion of 'contextuals' which is necessary to cools off 116 | % some of its show-offy properties. (You can make your essay look like the 117 | % Declaration of Independence by specifying e.g. Ligatures={Rare} ) 118 | % If you have a copy you might try it; as it is 119 | % I will comment it out and supply something more certain to be around: 120 | 121 | \setmainfont{Times New Roman} 122 | 123 | % Properly one should specify a sanserif font and a monospace font 124 | % see e.g. the example of Kieran Healy: 125 | % \setromanfont[Mapping=tex-text,Numbers=OldStyle]{Minion Pro} 126 | % \setsansfont[Mapping=tex-text]{Minion Pro} 127 | % \setmonofont[Mapping=tex-text,Scale=0.8]{Pragmata} 128 | 129 | % But I hate sanserif fonts, and anyway there are defaults. 130 | 131 | 132 | 133 | % Heading styles: 134 | % These commands keep the koma system from making stupid sans serif section headings 135 | \setkomafont{title}{\rmfamily\mdseries\upshape\normalsize} 136 | \setkomafont{sectioning}{\rmfamily\mdseries\upshape\normalsize} 137 | \setkomafont{descriptionlabel}{\rmfamily\mdseries\upshape\normalsize} 138 | 139 | 140 | 141 | % I'm puzzled why I have this foonote speciality, 142 | % I wonder if it's part of my problem I've been having, but wont look 143 | % into it now. 144 | \usepackage[flushmargin]{footmisc} 145 | % \usepackage[hang,flushmargin]{footmisc} 146 | 147 | 148 | % So much for my personal template. 149 | 150 | 151 | % Everything that follows is copied from the pandoc default template: 152 | % I will interpolate a few comments, the comments that are in 153 | % the default template will be marked % -- 154 | 155 | % Paragraph format: 156 | % Pandoc prefers unindented paragraphs in the European style: 157 | \setlength{\parindent}{0pt} 158 | % ... with paragraph breaks marked by a slight lengthening of 159 | % the space between paragraphs: 160 | \setlength{\parskip}{6pt plus 2pt minus 1pt} 161 | 162 | % Page format: 163 | \pagestyle{plain} 164 | % The default `plain` pagestyle just numbers the pages, 165 | % whereas 166 | % \pagestyle{empty} 167 | % would give you no numbering. 168 | % After one-million man-years of macro-composition, 169 | % there are also fancy pagestyles with much wilder options 170 | % for headers and footers, of course. 171 | 172 | % Footnotes 173 | % if you have code in your footnotes, the million macro march 174 | % kind of bumps into itself. 175 | % Pandoc, having just rendered your text into LaTeX, 176 | % knows whether the 'variable' `verbatim-in-note` is True, and 177 | % If it is, it asks for a LaTeX package that solves the dilemma: 178 | $if(verbatim-in-note)$ 179 | \usepackage{fancyvrb} 180 | $endif$ 181 | 182 | % Lists formatting: 183 | % note sure what 'fancy enums' are; something to do with lists, 184 | % as the further comment suggests: 185 | $if(fancy-enums)$ 186 | % -- Redefine labelwidth for lists; otherwise, the enumerate package will cause 187 | % -- markers to extend beyond the left margin. 188 | \makeatletter\AtBeginDocument{% 189 | \renewcommand{\@listi} 190 | {\setlength{\labelwidth}{4em}} 191 | }\makeatother 192 | \usepackage{enumerate} 193 | $endif$ 194 | 195 | 196 | % Table formatting: 197 | % What if you make a table? -- Pandoc knows, of course, and 198 | % then declares that its variable `table` is True and 199 | % imports a table package suitable to its pleasantly simple tables. 200 | % Needless to say infinitely complicated tables are possible in 201 | % LaTeX with suitable packages. We are spared the temptation: 202 | 203 | $if(tables)$ 204 | \usepackage{array} 205 | 206 | % Continuing on the topic of tables ... (we havent reached `endif`). 207 | % The commented out line below is in the default pandoc latex.template. 208 | % Some unpleasantness with table formatting must be corrected. 209 | 210 | % -- This is needed because raggedright in table elements redefines \\: 211 | \newcommand{\PreserveBackslash}[1]{\let\temp=\\#1\let\\=\temp} 212 | \let\PBS=\PreserveBackslash 213 | 214 | $endif$ 215 | 216 | 217 | % Subscripts: 218 | % Pandoc remembers whether you used subscripts, assigning True to 219 | % its `subscript` variable 220 | % It then needs to adopt a default with an incantation like this: 221 | $if(subscript)$ 222 | \newcommand{\textsubscr}[1]{\ensuremath{_{\scriptsize\textrm{#1}}}} 223 | $endif$ 224 | 225 | 226 | % Web-style links: 227 | 228 | % markdown inclines us to use links, since our texts can be made into html. 229 | % Why not have clickable blue links even in 230 | % learned, scientific, religious, juridical, poetical and other suchlike texts? 231 | % Never mind that they have been proven to destroy the nervous system! 232 | 233 | % First, what about the fact that links like http://example.com are 234 | % technically code and thus must not be broken across lines? 235 | % [breaklinks=true] to the rescue! 236 | 237 | % Nowadays LaTeX can handle all of this with another half million macros: 238 | 239 | \usepackage[breaklinks=true]{hyperref} 240 | \hypersetup{colorlinks,% 241 | citecolor=blue,% 242 | filecolor=blue,% 243 | linkcolor=blue,% 244 | urlcolor=blue} 245 | $if(url)$ 246 | \usepackage{url} 247 | $endif$ 248 | 249 | 250 | 251 | % Images. 252 | % In ye olde LaTeX one could only import a limited range of image 253 | % types, e.g. the forgotten .eps files. Or else one simply drew the image with suitable 254 | % commands and drawing packages. Today we want to import .jpg files we make with 255 | % our smart phones or whatever: 256 | 257 | $if(graphics)$ 258 | \usepackage{graphicx} 259 | % -- We will generate all images so they have a width \maxwidth. This means 260 | % -- that they will get their normal width if they fit onto the page, but 261 | % -- are scaled down if they would overflow the margins. 262 | \makeatletter 263 | \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth 264 | \else\Gin@nat@width\fi} 265 | \makeatother 266 | \let\Oldincludegraphics\includegraphics 267 | \renewcommand{\includegraphics}[1]{\Oldincludegraphics[width=\maxwidth]{#1}} 268 | $endif$ 269 | 270 | 271 | 272 | % Section numbering. 273 | % Here again is a variable you can specify on the commandline 274 | % `markdown2pdf my.txt --number-sections --xetex --template=/wherever/this/is -o my.pdf` 275 | $if(numbersections)$ 276 | $else$ 277 | \setcounter{secnumdepth}{0} 278 | $endif$ 279 | 280 | % Footnotes: 281 | % Wait, didn't we already discuss the crisis of code in footnotes? 282 | % Evidently the order of unfolding of macros required that 283 | % we import a package to deal with them earlier 284 | % and issue a command it defines now. (Or maybe that's not the reason; 285 | % very often the order does matter as the insane system of macro expansion 286 | % must take place by stages.) 287 | $if(verbatim-in-note)$ 288 | \VerbatimFootnotes % -- allows verbatim text in footnotes 289 | $endif$ 290 | 291 | % Other stuff you specify on the command line: 292 | % You can include stuff for the header from a file specified on the command line; 293 | % I've never done this, but that stuff will go here: 294 | $for(header-includes)$ 295 | $header-includes$ 296 | $endfor$ 297 | 298 | % Title, authors, date. 299 | % If you specified title authors and date at the start of 300 | % your pandoc-markdown file, pandoc knows the 'values' of the 301 | % variables: title authors date and fills them in. 302 | 303 | $if(title)$ 304 | \title{$title$} 305 | $endif$ 306 | \author{$for(author)$$author$$sep$\\$endfor$} 307 | $if(date)$ 308 | \date{$date$} 309 | $endif$ 310 | 311 | % At last: 312 | % The document itself!: 313 | 314 | % After filling in all these blanks above, or erasing them 315 | % where they are not needed, Pandoc has finished writing the 316 | % famous LaTeX *preamble* for your document. 317 | % Now comes the all-important command \begin{document} 318 | % which as you can see, will be paired with an \end{document} at the end. 319 | % Pandoc knows whether you have a title, and has already 320 | % specified what it is; if so, it demands that the title be rendered. 321 | % Pandoc knows whether you want a table of contents, you 322 | % specify this on the command line. 323 | % Then, after fiddling with alignments, there comes the real 324 | % business: pandoc slaps its rendering of your text in the place of 325 | % the variable `body` 326 | % It then concludes the document it has been writing. 327 | 328 | \begin{document} 329 | 330 | 331 | $if(title)$ 332 | \maketitle 333 | $endif$ 334 | 335 | $if(toc)$ 336 | \tableofcontents 337 | 338 | $endif$ 339 | 340 | 341 | $if(alignment)$ 342 | \begin{$alignment$} 343 | $endif$ 344 | 345 | $body$ 346 | 347 | %$if(alignment)$ 348 | \end{$alignment$} 349 | $endif$ 350 | 351 | 352 | \end{document} 353 | -------------------------------------------------------------------------------- /templates/test3.latex: -------------------------------------------------------------------------------- 1 | \documentclass[11pt,article,oneside]{memoir} 2 | \usepackage[minion]{org-preamble-pdflatex} 3 | \input{vc} 4 | 5 | $if(listings)$ 6 | \usepackage{listings} 7 | $endif$ 8 | $if(lhs)$ 9 | \lstnewenvironment{code}{\lstset{language=r,basicstyle=\small\ttfamily}}{} 10 | $endif$ 11 | $if(highlighting-macros)$ 12 | $highlighting-macros$ 13 | $endif$ 14 | $if(verbatim-in-note)$ 15 | \usepackage{fancyvrb} 16 | $endif$ 17 | $if(tables)$ 18 | \usepackage{longtable} 19 | $endif$ 20 | 21 | $if(graphics)$ 22 | \usepackage{graphicx} 23 | % We will generate all images so they have a width \maxwidth. This means 24 | % that they will get their normal width if they fit onto the page, but 25 | % are scaled down if they would overflow the margins. 26 | \makeatletter 27 | \def\maxwidth{\ifdim\Gin@nat@width>\linewidth\linewidth 28 | \else\Gin@nat@width\fi} 29 | \makeatother 30 | \let\Oldincludegraphics\includegraphics 31 | \renewcommand{\includegraphics}[1]{\Oldincludegraphics[width=\maxwidth]{#1}} 32 | $endif$ 33 | 34 | $if(title)$ 35 | \title{\bigskip \bigskip $title$} 36 | $endif$ 37 | 38 | %\author{$for(author)$$author$$sep$\\$endfor$} 39 | 40 | \author{$for(author)$\Large $author.name$\vspace{0.05in} \newline\normalsize\emph{$author.affiliation$} \newline\footnotesize \url{$author.email$}\vspace*{0.2in}\newline $sep$ \and $endfor$} 41 | 42 | %\author{$for(author)$$author.name$ ($author.affiliation$)$sep$ \and $endfor$} 43 | 44 | \date{} 45 | 46 | \begin{document} 47 | \setkeys{Gin}{width=1\textwidth} 48 | %\setromanfont[Mapping=tex-text,Numbers=OldStyle]{Minion Pro} 49 | %\setsansfont[Mapping=tex-text]{Minion Pro} 50 | %\setmonofont[Mapping=tex-text,Scale=0.8]{Pragmata} 51 | \chapterstyle{article-4} 52 | \pagestyle{kjh} 53 | 54 | \published{$date$. Incomplete Draft. Please do not cite without permission.} 55 | 56 | $if(title)$ 57 | \maketitle 58 | $endif$ 59 | 60 | $if(toc)$ 61 | { 62 | \hypersetup{linkcolor=black} 63 | \setcounter{tocdepth}{$toc-depth$} 64 | \tableofcontents 65 | } 66 | $endif$ 67 | 68 | $if(abstract)$ 69 | 70 | \begin{abstract} 71 | 72 | \noindent $abstract$ 73 | 74 | \end{abstract} 75 | 76 | $endif$ 77 | 78 | $body$ 79 | 80 | $if(natbib)$ 81 | $if(biblio-files)$ 82 | $if(biblio-title)$ 83 | $if(book-class)$ 84 | \renewcommand\bibname{Bibliography} 85 | $else$ 86 | \renewcommand\refname{References} 87 | $endif$ 88 | $endif$ 89 | 90 | \bibliography{$biblio-files$} 91 | 92 | $endif$ 93 | $endif$ 94 | $if(biblatex)$ 95 | \printbibliography$if(biblio-title)$[title=References]$endif$ 96 | 97 | $endif$ 98 | $for(include-after)$ 99 | $include-after$ 100 | 101 | $endfor$ 102 | \end{document} 103 | -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diversen/git-to-book-docs/067f7fa2bc9212dca23f5b596b74da76c689b043/test.php --------------------------------------------------------------------------------