Using Fonts Installed in Local Texlive - Tex - Latex Stack Exchange

Total Page:16

File Type:pdf, Size:1020Kb

Using Fonts Installed in Local Texlive - Tex - Latex Stack Exchange 27-04-2015 Using fonts installed in local texlive - TeX - LaTeX Stack Exchange sign up log in tour help TeX ­ LaTeX Stack Exchange is a question and answer site for users of TeX, LaTeX, ConTeXt, and related Take the 2­minute tour × typesetting systems. It's 100% free, no registration required. Using fonts installed in local texlive I have installed texlive at ~/texlive . I have installed collection­fontsrecommended using tlmgr . Now, ~/texlive/2014/texmf­dist/fonts/ has several folders: afm , cmap , enc , ... , vf . Here is the output of tlmgr info helvetic package: helvetic category: Package shortdesc: URW "Base 35" font pack for LaTeX. longdesc: A set of fonts for use as "drop­in" replacements for Adobe's basic set, comprising: ­ Century Schoolbook (substituting for Adobe's New Century Schoolbook); ­ Dingbats (substituting for Adobe's Zapf Dingbats); ­ Nimbus Mono L (substituting for Abobe's Courier); ­ Nimbus Roman No9 L (substituting for Adobe's Times); ­ Nimbus Sans L (substituting for Adobe's Helvetica); ­ Standard Symbols L (substituting for Adobe's Symbol); ­ URW Bookman; ­ URW Chancery L Medium Italic (substituting for Adobe's Zapf Chancery); ­ URW Gothic L Book (substituting for Adobe's Avant Garde); and ­ URW Palladio L (substituting for Adobe's Palatino). installed: Yes revision: 31835 sizes: run: 2377k relocatable: No cat­date: 2012­06­06 22:57:48 +0200 cat­license: gpl collection: collection­fontsrecommended But when I try to compile: \documentclass{article} \usepackage{helvetic} \begin{document} Hello World! \end{document} It gives an error: ! LaTeX Error: File `helvetic.sty' not found. Type X to quit or <RETURN> to proceed, or enter new name. (Default extension: sty) I was expecting a document typeset using Helvetica font. Obviously, I am doing something wrong. How do I set things right? {fonts} {texlive} edited Oct 10 '14 at 13:36 asked Sep 23 '14 at 17:12 deshmukh 646 3 15 This is rather a broad question as it stands. I suggest starting here and trying out some of the different fonts supported by (pdf)LaTeX. You can also use system fonts with XeLaTeX/LuaLaTeX but for your current purposes, you are concerned with specifially TeX fonts and the Font Catalogue shows you what is available and how to use them. – cfr Sep 23 '14 at 22:08 If you use XeLaTeX for compiling, then you can use any font installed for your system, independently of whether it is specifically supported by TeX Live. If you want to benefit from TeX­specific support files, http://tex.stackexchange.com/questions/202767/using-fonts-installed-in-local-texlive 1/8 27-04-2015 Using fonts installed in local texlive - TeX - LaTeX Stack Exchange obviously you'd need to pick a package which supports that. You can still use 'standard' TeX fonts, but you don't have to. (Some packages, as Andrew Cashner mentions now configure the fonts using a switch method such that appropriate options are chosen to use the fonts for XeLaTeX, if that's what you use. In other cases, you'd be better off using system fonts with fontspec .) – cfr Oct 3 '14 at 21:30 @cfr I am aiming to have a ~/texlive installation that is, kind of, portable. So, want to be as independent of system fonts, etc. as possible – deshmukh Oct 8 '14 at 13:42 2 Then you don't want to use fontspec . Use the font catalogue for samples and examples of how to use font packages. You can still use XeLaTeX if you wish. – cfr Oct 8 '14 at 14:54 1 Answer Since you wish to use TeX Live rather than system fonts, it is better to look for information about the font packages available to you than to create lists of font files. This is because most packages will include many different files under texmf­dist/fonts and the relation of those files to package names will not always be at all obvious. (The directory names are likely to be a better guide but still not great.) To see why this is, it is necessary to think a little bit about the different kinds of files included under texmf­dist/fonts . On my machine, I have the following: afm/ cid/ cmap/ enc/ fea/ lig/ map/ misc/ ofm/ opentype/ ovf/ ovp/ pfm/ pk/ sfd/ source/ tfm/ truetype/ type1/ vf/ afm files are Adobe Font Metrics. TeX doesn't use these directly, as far as I know, but they are used to create other files. cmap files are used to support searching. They help to map characters in PDFs, for example, to characters which can be searched. (They may have further uses I'm not aware of.) enc files specify various encodings for fonts which TeX needs to figure out which 'slot' contains which character. fea and lig are feature and ligature files for use with fontspec , I think. map helps TeX to figure out which font file corresponds to which font, and whether the font encoding has been altered. opentype self­explanatory. pfm font metrics in a different format from afm files. The two can be converted into each other. pk pre­prepared fonts based on metafont sources. sfd ?? (FontForge source for fonts?) source metafont sources used to generate pk files (either above or on­the­fly during typesetting as required) tfm TeX font metrics generated from afm or pfm files together with other information. As far as TeX is concerned, these are fonts. They do not, however, include the glyphs. That is, they don't include the 'pictures' of characters. Instead, they contain information about the boxes needed to accommodate those characters, how to adjust the spacing between pairs of boxes, when to replace two boxes by a different box, box dimensions and more. (TeX typesets boxes. Like everything else, a character is a box.) These are not quite fonts as far as pdfTeX is concerned ­ it wants the pictures, too. truetype self explanatory. type1 somewhat self explanatory. These files contain nothing but pictures of characters. Without the metric information, they are not useful. (Postscript fonts are distributed with both type1 font files ( .pfb or .pfa ) and metric files ( .afm or pfm ). Unlike opentype and truetype fonts, there is no single file which is a postscript type1 font. vf complicated. These are 'virtual fonts'. They tell TeX how to create new fonts from other fonts. For example, if you wanted to combine oldstyle figures and ligatures from a supplementary font with the characters from a primary font, you could create a virtual font which took the appropriate characters from each and combined them. TeX can then treat this font as a single font for typesetting purposes. The virtual font files tell TeX where to find the various bits of information and glyphs it needs to construct the virtual font. (Traditionally, oldstyle figures, small capitals and ligatures were often provided in a separate .pfb or .pfa file. To use these with TeX, you need to create a combined font http://tex.stackexchange.com/questions/202767/using-fonts-installed-in-local-texlive 2/8 27-04-2015 Using fonts installed in local texlive - TeX - LaTeX Stack Exchange using characters from the additional file along with those from the main one.) These files can also be used to 'fake' glyphs which are not present in the actual font, to approximate small capitals or an oblique shape, and to provide various other features. Rather than trying to work out from the contents of these directories which fonts you have, then, it would be better to look for font packages which provide a coherent interface to groups of files which together support entire fonts and their families. Since you are using TeX Live, you can get some information about the font packages available to you using tlmgr . There are several different options here. tlmgr uses a concept of 'taxonomies' which can be used to search for packages according to various classifications e.g. characterization or keyword . Let's take keyword as an example. We need to know first which keywords are available: tlmgr search ­­list ­­keyword will give us a list: Keywords: Computer Science DVI file manipulation Humanities Mathematics (the subject) MetaFont, Metapost Physics, Chemistry, Biology Social Science URLs, hyperlinks abbreviations, acronyms abstract alignment appendix arrays, matrices arrows article style author bibliography, formatting bibliography, management book style boxed text, frames calendar, schedule caption changebars chapters, sectioning collections, proceedings, conferences color columns, multiple columns commutative diagrams computer code, verbatim text cross references dates and times distributions, whole systems document style dropped letter, often initial letter editing, graphical work environment encodings, Unicode equations, subequations exams, exercises, answers external programs, interfacing figures, floating matter foils, overhead slides font selection fonts, mathematics fonts, text footnotes, end notes front matter, end matter glossary, dictionary graphics created inside TeX (pictures, PSTricks, PGF, etc.) graphics from outside TeX headers, footers http://tex.stackexchange.com/questions/202767/using-fonts-installed-in-local-texlive 3/8 27-04-2015 Using fonts installed in local texlive - TeX - LaTeX Stack Exchange help, documentation, FAQ hyphenation include file index, indexing justification languages other than English letters, envelopes, labels lists, bullets literate programming macro programming make, compilation systems marginal material minipage music output format PDF, PostScript output format other than PDF (HTML, etc.) output viewer page breaks page geometry (margins, etc.) page numbering page styles paper size, orientation paragraph presentations (powerpoint­like, using a beamer) proof sheets (typographical) proofs publisher's style punctuation quotation, poetry report style scientific units spacing, horizontal or vertical symbols, mathematical symbols, text table of contents tables text decoration (underline, etc.) theorems thesis style title, maketitle vita, CV, resume watermark, draftmark word processor conversion wrap around a figure Several here are related to fonts: font selection , fonts, text and fonts, mathematics .
Recommended publications
  • Download Fedra Sans Bold
    Download fedra sans bold click here to download Download Fedra Sans Std Bold For Free, View Sample Text, Rating And More On www.doorway.ru Download Fedra Sans Bold For Free, View Sample Text, Rating And More On www.doorway.ru Download Fedra Sans Expert Bold For Free, View Sample Text, Rating And More On www.doorway.ru Download Fedra Sans SC Bold For Free, View Sample Text, Rating And More On www.doorway.ru Download fedra sans std bold font with bold style. Download free fonts for Mac, Windows and Linux. All fonts are in TrueType format. Download fedra sans std bold font for Windows, Linux and Mac free at www.doorway.ru - database of around free OpenType and TrueType. Fedra Sans Book ItalicMacromedia Fontographer 4. 1 Fedra Sans Book ItalicFedra Sans Book ItalicMacromedia Fontographer 4. 1 Fedra Sans Pro-Bold. Download OTF. Similar. Fedra Sans Pro-Bold Italic · Fedra Sans Pro Light Light · Fedra Sans Pro Normal Normal · Fedra Sans Pro-Book. Fedra Sans was originally commissioned by Paris-based Ruedi Baur Integral Design and developed as a corporate font for Bayerische Rück, a German. Fedra Sans: Fedra Sans is a contemporary sans serif, highly legible, font Fedra Sans Medium Italic px Fedra Sans Bold Italic px . Is there any reason to make new fonts when there are so many already available for downloading? Fedra Sans is a typeface designed by Peter Bil'ak, and is available for Desktop. Try, buy and download these fonts now! Bold SC Italic. Büroflächen. Bold TF. Font Fedra Sans Std Normal font download free at www.doorway.ru, the largest collection of cool fonts for Fedra Sans Std Bold Italic font.
    [Show full text]
  • Dockerdocker
    X86 Exagear Emulation • Android Gaming • Meta Package Installation Year Two Issue #14 Feb 2015 ODROIDMagazine DockerDocker OS Spotlight: Deploying ready-to-use Ubuntu Studio containers for running complex system environments • Interfacing ODROID-C1 with 16 Channel Relay Play with the Weather Board • ODROID-C1 Minimal Install • Device Configuration for Android Development • Remote Desktop using Guacamole What we stand for. We strive to symbolize the edge of technology, future, youth, humanity, and engineering. Our philosophy is based on Developers. And our efforts to keep close relationships with developers around the world. For that, you can always count on having the quality and sophistication that is the hallmark of our products. Simple, modern and distinctive. So you can have the best to accomplish everything you can dream of. We are now shipping the ODROID U3 devices to EU countries! Come and visit our online store to shop! Address: Max-Pollin-Straße 1 85104 Pförring Germany Telephone & Fax phone : +49 (0) 8403 / 920-920 email : [email protected] Our ODROID products can be found at http://bit.ly/1tXPXwe EDITORIAL ow that ODROID Magazine is in its second year, we’ve ex- panded into several social networks in order to make it Neasier for you to ask questions, suggest topics, send article submissions, and be notified whenever the latest issue has been posted. Check out our Google+ page at http://bit.ly/1D7ds9u, our Reddit forum at http://bit. ly/1DyClsP, and our Hardkernel subforum at http://bit.ly/1E66Tm6. If you’ve been following the recent Docker trends, you’ll be excited to find out about some of the pre-built Docker images available for the ODROID, detailed in the second part of our Docker series that began last month.
    [Show full text]
  • Branding Guidelines
    2020 v. 1 BRANDING GUIDELINES A visual identity guide for New Orleans Baptist Theological Seminary and Leavell College New Orleans Baptist Theological Seminary and Leavell College 01 2020 v. 1 CONTENTS COLORS 3 Primary Color 3 Secondary Colors 4 Grays LOGOS 5 Graduate Logo 7 Undergraduate Logo 9 Combining both Logos TYPOGRAPHY 10 Roboto Font Family 11 Utopia Font Family 12 Combining both Fonts 13 Branding Statements LAYOUT GUIDELINES Text and Images Margins and Bleeds White Space EXAMPLE PAGES New Orleans Baptist Theological Seminary and Leavell College 02 2020 v. 1 The primary purple and secondary colors should be utilized COLORS for all seminary and college designs. Generally, gray or white should be used for text. Limited use of primary and secondary colors is acceptable for headlines. The primary purple is Primary and intentionally contrasted and complemented by the secondary Secondary Colors colors. A balanced design is structured by the weight, proximity, and alignment of shapes, text, and photos. Photos should be bright and saturated. NOTE: If a printer is not accurate or the material does not hold ink effectively, the purple can easily skew to either a reddish or blueish hue. Primary Purple Secondary Gold Secondary Light Blue Cyan = 80 Cyan = 21 Cyan = 67 Magenta = 88 Magenta = 22 Magenta = 0 CMYK Yellow = 36 Yellow = 100 Yellow = 18 Black = 29 Black = 0 Black = 0 Red = 68 Red = 209 Red = 48 RGB Green = 48 Green = 180 Green = 192 Blue = 90 Blue = 43 Blue = 210 #44305a #d1b42b #30c0d2 HEX 2627 C 110 C 2627 U 110 U PANTONE New Orleans Baptist Theological Seminary and Leavell College 03 2020 v.
    [Show full text]
  • Cloud Fonts in Microsoft Office
    APRIL 2019 Guide to Cloud Fonts in Microsoft® Office 365® Cloud fonts are available to Office 365 subscribers on all platforms and devices. Documents that use cloud fonts will render correctly in Office 2019. Embed cloud fonts for use with older versions of Office. Reference article from Microsoft: Cloud fonts in Office DESIGN TO PRESENT Terberg Design, LLC Index MICROSOFT OFFICE CLOUD FONTS A B C D E Legend: Good choice for theme body fonts F G H I J Okay choice for theme body fonts Includes serif typefaces, K L M N O non-lining figures, and those missing italic and/or bold styles P R S T U Present with most older versions of Office, embedding not required V W Symbol fonts Language-specific fonts MICROSOFT OFFICE CLOUD FONTS Abadi NEW ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Abadi Extra Light ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Note: No italic or bold styles provided. Agency FB MICROSOFT OFFICE CLOUD FONTS ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Agency FB Bold ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Note: No italic style provided Algerian MICROSOFT OFFICE CLOUD FONTS ABCDEFGHIJKLMNOPQRSTUVWXYZ 01234567890 Note: Uppercase only. No other styles provided. Arial MICROSOFT OFFICE CLOUD FONTS ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Arial Italic ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Arial Bold ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz 01234567890 Arial Bold Italic ABCDEFGHIJKLMNOPQRSTUVWXYZ
    [Show full text]
  • 15 the Effect of Font Type on Screen Readability by People with Dyslexia
    The Effect of Font Type on Screen Readability by People with Dyslexia LUZ RELLO and RICARDO BAEZA-YATES, Web Research Group, DTIC, Universitat Pompeu Fabra, Barcelona, Spain Around 10% of the people have dyslexia, a neurological disability that impairs a person’s ability to read and write. There is evidence that the presentation of the text has a significant effect on a text’s accessibility for people with dyslexia. However, to the best of our knowledge, there are no experiments that objectively 15 measure the impact of the typeface (font) on screen reading performance. In this article, we present the first experiment that uses eye-tracking to measure the effect of typeface on reading speed. Using a mixed between-within subject design, 97 subjects (48 with dyslexia) read 12 texts with 12 different fonts. Font types have an impact on readability for people with and without dyslexia. For the tested fonts, sans serif , monospaced, and roman font styles significantly improved the reading performance over serif , proportional, and italic fonts. On the basis of our results, we recommend a set of more accessible fonts for people with and without dyslexia. Categories and Subject Descriptors: H.5.2 [Information Interfaces and Presentation]: User Interfaces— Screen design, style guides; K.4.2 [Computers and Society]: Social Issues—Assistive technologies for per- sons with disabilities General Terms: Design, Experimentation, Human Factors Additional Key Words and Phrases: Dyslexia, learning disability, best practices, web accessibility, typeface, font, readability, legibility, eye-tracking ACM Reference Format: Luz Rello and Ricardo Baeza-Yates. 2016. The effect of font type on screen readability by people with Dyslexia.
    [Show full text]
  • Uniform Rendering of XML Encoded Mathematical Content with Opentype Fonts
    i \eutypon24-25" | 2011/1/21 | 8:58 | page 11 | #15 i i i Εὔτυπon, τεῦχος 24-25 — >Okt¸brioc/October 2010 11 Uniform Rendering of XML Encoded Mathematical Content with OpenType Fonts Apostolos Syropoulos 366, 28th October Str. GR-671 00 Xanthi Greece E-mail: asyropoulos at yahoo dot com The new OpenType MATH font table contains important information that can be used to correctly and uniformly render mathematical con- tent (e.g., mathematical formulae, equations, etc.). Until now, all sys- tems in order to render XML encoded mathematical content employed some standard algorithms together with some standard sets of TrueType and/or Type 1 fonts, which contained the necessary glyphs. Unfortu- nately, this approach does not produce uniform results because certain parameters (e.g., the thickness of the fraction line, the scale factor of superscripts/subscripts, etc.) are system-dependant, that is, their exact values will depend on the particular setup of a given system. Fortunately, the new OpenType MATH table can be used to remedy this situation. In particular, by extending renderers so as to be able to render mathemat- ical contents with user-specified fonts, the result will be uniform across systems and platforms. In other words, the proposed technology would allow mathematical content to be rendered the same way ordinary text is rendered across platforms and systems. 1 Introduction The OpenType font format is a new cross-platform font file format developed jointly by Adobe and Microsoft. OpenType fonts may contain glyphs with ei- ther cubic B´eziersplines (used in PostScript fonts) or with quadratic B´ezier splines (used in TrueType fonts).
    [Show full text]
  • Resources Ton 'QX Repository (For Details, Contact Peter Ab- Bott, E-Mail Address Above)
    TUGboat, Volume 10 (1989), No. 2 Janet users may obtain back issues from the As- Resources ton 'QX repository (for details, contact Peter Ab- bott, e-mail address above). DECnetISPAN users may obtain back issues from the European (con- Announcing (belatedly) -MAG tact Massimo Calvani, fisicaQastrpd.infn. it) or American (contact Ed Bell, 7388 : :bell) DECnet Don Hosek T)?J repositories. University of Illinois at Chicago Others with network access should send a mes- After being chided for not publicizing my electronic sage to archive-serverQsun.soe.clarkson.edu "magazine" enough, I have decided to make a formal with the first line being path followed by an address announcement of its availability to the 'J&X cornmu- from Clarkson to you, and then a line nity at large. get texmag texmag.v.nn What is =MAG? for each back issue desired where v is the volume number and nn the issue number. The line index WMAG is available free of charge to anyone reach- texmag will give a list of back issues available. able by electronic mail and is published approxi- A typical mail request may resemble: mately every two months. The subject material index t exmag generally falls somewhere between the somewhat get texmag texmag.l.08 chaotic (but still useful) correspondence of 'QXHAX and UKW, and the printed matter in TUGboat How do I submit articles to TEXMAG? and QXline. Some previous articles have included I was hoping you would ask. Articles are accepted an early version of Dominik Wujastyk's article on on all aspects of T)?J, M'QX, and METAFONT from fonts from TUB 9#2; an overview of the differ- specific information on interfacing graphics packages ent font files used by 'QX, METAFONT, and device with particular DVI drivers to general information drivers; macros for commutative diagrams and sim- on macro writing to product reviews to whatever ple chemical equations and many other topics.
    [Show full text]
  • Font HOWTO Font HOWTO
    Font HOWTO Font HOWTO Table of Contents Font HOWTO......................................................................................................................................................1 Donovan Rebbechi, elflord@panix.com..................................................................................................1 1.Introduction...........................................................................................................................................1 2.Fonts 101 −− A Quick Introduction to Fonts........................................................................................1 3.Fonts 102 −− Typography.....................................................................................................................1 4.Making Fonts Available To X..............................................................................................................1 5.Making Fonts Available To Ghostscript...............................................................................................1 6.True Type to Type1 Conversion...........................................................................................................2 7.WYSIWYG Publishing and Fonts........................................................................................................2 8.TeX / LaTeX.........................................................................................................................................2 9.Getting Fonts For Linux.......................................................................................................................2
    [Show full text]
  • Background a Short Introduction to Font Characteristics
    fonts: background A short introduction to font characteristics Maarten Gelderman Hardly anyone will dispute the statement that proporion- ally spaced fonts are more beautiful and legible than mono- abstract spaced designs. In a monospaced design the letter i takes as Almost anyone who develops an interest in fonts is bound to much space as a letter m or W. Consequently, some char- be overwelmed by the bewildering variety of letterforms acters look simply too compressed, whereas around oth- available. The number of fonts available from commercial ers too much white space is found. Monospaced fonts are suppliers like Adobe, URW, LinoType and others runs into the simply not suited for body text. Only in situations where it thousands. A recent catalog issued by FontShop [Truong et al., is important that all characters are of equal width, e.g., in 1998] alone lists over 25.000 different varieties.1 And listings of computer programs, where it may be important somehow, although the differences of the individual letters are that each individual character can be discerned and where hardly noticable, each font has its own character, its own the layout of the program may depend on using mono- personality. Even the atmosphere elucided by a text set from spaced fonts, can the usage of a monospaced font be de- Adobe Garamond is noticably different from the atmosphere of the same text set from Stempel Garamond. Although fended. In most other situations, they should simply be decisions about the usage of fonts, will always remain in the avoided. realm of esthetics, some knowledge about font characteristics may nevertheless help to create some order and to find out Romans, italics and slant A second typeface character- why certain design decisions just do not work.
    [Show full text]
  • Opentype Postscript Fonts with Unusual Units-Per-Em Values
    Luigi Scarso VOORJAAR 2010 73 OpenType PostScript fonts with unusual units-per-em values Abstract Symbola is an example of OpenType font with TrueType OpenType fonts with Postscript outline are usually defined outlines which has been designed to match the style of in a dimensionless workspace of 1000×1000 units per em Computer Modern font. (upm). Adobe Reader exhibits a strange behaviour with pdf documents that embed an OpenType PostScript font with A brief note about bitmap fonts: among others, Adobe unusual upm: this paper describes a solution implemented has published a “Glyph Bitmap Distribution Format by LuaTEX that resolves this problem. (BDF)” [2] and with fontforge it’s easy to convert a bdf font into an opentype one without outlines. A fairly Keywords complete bdf font is http://unifoundry.com/unifont-5.1 LuaTeX, ConTeXt Mark IV, OpenType, FontMatrix. .20080820.bdf.gz: this Vle can be converted to an Open- type format unifontmedium.otf with fontforge and it Introduction can inspected with showttf, a C program from [3]. Here is an example of glyph U+26A5 MALE AND FEMALE Opentype is a font format that encompasses three kinds SIGN: of widely used fonts: 1. outline fonts with cubic Bézier curves, sometimes Glyph 9887 ( uni26A5) starts at 492 length=17 referred to CFF fonts or PostScript fonts; height=12 width=8 sbX=4 sbY=10 advance=16 2. outline fonts with quadratic Bézier curve, sometimes Bit aligned referred to TrueType fonts; .....*** 3. bitmap fonts. ......** .....*.* Nowadays in digital typography an outline font is almost ..***... the only choice and no longer there is a relevant diUer- .*...*.
    [Show full text]
  • Reference / Forgerock Identity Cloud 7.2
    Reference / ForgeRock Identity Cloud 7.2 Latest update: 7.1.0 ForgeRock AS. 201 Mission St., Suite 2900 San Francisco, CA 94105, USA +1 415-599-1100 (US) www.forgerock.com Copyright © 2011-2021 ForgeRock AS. Abstract Reference documentation for ForgeRock® Identity Cloud (Identity Cloud). ForgeRock Identity Cloud provides intelligent authentication, authorization, federation, and single sign-on functionality. This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported License. To view a copy of this license, visit https://creativecommons.org/licenses/by-nc-nd/3.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. © Copyright 2010–2020 ForgeRock, Inc. All rights reserved. ForgeRock is a registered trademark of ForgeRock, Inc. Other marks appearing herein may be trademarks of their respective owners. This product or document is protected by copyright and distributed under licenses restricting its use, copying, and distribution. No part of this product or document may be reproduced in any form by any means without prior written authorization of ForgeRock and its licensors, if any. DOCUMENTATION IS PROVIDED “AS IS” AND ALL EXPRESSED OR IMPLIED CONDITIONS, REPRESENTATIONS, AND WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE DISCLAIMED, EXCEPT TO THE EXTENT THAT SUCH DISCLAIMERS ARE HELD TO BE LEGALLY INVALID. DejaVu Fonts Bitstream Vera Fonts Copyright Copyright (c) 2003 by Bitstream,
    [Show full text]
  • Surviving the TEX Font Encoding Mess Understanding The
    Surviving the TEX font encoding mess Understanding the world of TEX fonts and mastering the basics of fontinst Ulrik Vieth Taco Hoekwater · EuroT X ’99 Heidelberg E · FAMOUS QUOTE: English is useful because it is a mess. Since English is a mess, it maps well onto the problem space, which is also a mess, which we call reality. Similary, Perl was designed to be a mess, though in the nicests of all possible ways. | LARRY WALL COROLLARY: TEX fonts are mess, as they are a product of reality. Similary, fontinst is a mess, not necessarily by design, but because it has to cope with the mess we call reality. Contents I Overview of TEX font technology II Installation TEX fonts with fontinst III Overview of math fonts EuroT X ’99 Heidelberg 24. September 1999 3 E · · I Overview of TEX font technology What is a font? What is a virtual font? • Font file formats and conversion utilities • Font attributes and classifications • Font selection schemes • Font naming schemes • Font encodings • What’s in a standard font? What’s in an expert font? • Font installation considerations • Why the need for reencoding? • Which raw font encoding to use? • What’s needed to set up fonts for use with T X? • E EuroT X ’99 Heidelberg 24. September 1999 4 E · · What is a font? in technical terms: • – fonts have many different representations depending on the point of view – TEX typesetter: fonts metrics (TFM) and nothing else – DVI driver: virtual fonts (VF), bitmaps fonts(PK), outline fonts (PFA/PFB or TTF) – PostScript: Type 1 (outlines), Type 3 (anything), Type 42 fonts (embedded TTF) in general terms: • – fonts are collections of glyphs (characters, symbols) of a particular design – fonts are organized into families, series and individual shapes – glyphs may be accessed either by character code or by symbolic names – encoding of glyphs may be fixed or controllable by encoding vectors font information consists of: • – metric information (glyph metrics and global parameters) – some representation of glyph shapes (bitmaps or outlines) EuroT X ’99 Heidelberg 24.
    [Show full text]