Learning a Manifold of Fontsupplemental Material

Total Page:16

File Type:pdf, Size:1020Kb

Learning a Manifold of Fontsupplemental Material Learning a Manifold of Fonts Supplemental Material Neill D.F. Campbell1 Jan Kautz1;2 1University College London 2NVIDIA Research A Fonts Used of Q and D. If we need to consider multiple sets of these vectors we stack them together row-wise to produce a matrix, for example T T Andale Mono Andalus Angsana New X = [···x j ···] and Y = [···y j ···] . Aparajita Arial Browallia New GP Regression Calibri Cambria Candara In the task of regression, we wish to identify a function f (·) that maps the input to the output space so that we can Consolas Constantia Corbel ∗ ∗ ∗ Cordia New DaunPenh David take a new input x and find the corresponding output as y = f (x ). Ebrima Euphemia Franklin Gothic Book Now, if we take a GP it has the property that any discrete set of Gautami Georgia Gill Sans MT samples taken from the GP will be normally distributed. Thus if T Kalinga Lao Sangam MN Lucida Sans Unicode the GP is evaluated at a series of values X = [x1 ···xJ] from our T MS PMincho Microsoft Himalaya Microsoft Sans Serif input space, the corresponding output values Y = [y1 ···yJ] will be Microsoft Tai Le Miriam Mongolian Baiti distributed as MoolBoran Narkisim Nyala P(YjX) = (YjM(X);C(X;X)) (B-1) PMingLiU Palatino Linotype Perpetua N Plantagenet Cherokee Shonar Bangla SimSun-ExtB where Sylfaen Tahoma Times New Roman − 1 1 T −1 Traditional Arabic Trebuchet MS Vani N (xjm;S) = k2pSk 2 exp − (x − m) S (x − m) (B-2) 2 Verdana Table 1: The fonts used in our experiments. is the standard multivariate Gaussian distribution with M(·) as a mean function and C(·;·) as a covariance function. The mean func- tion generates a vector from the input X and the covariance function We took the ‘ttf’ files from the fonts folder on a ‘Windows 7’ in- creates a (positive semi-definite) covariance matrix, these vectors stallation and removed any non-latin or symbol based fonts. We each have the same number of dimensions as there were examples also removed a few fonts that were topologically inconsistent over given (in this case J). Thus the GP handles an infinite object (a many letters, for example handwriting based fonts; if only a few function defined over a continuous space) by considering only a letters are inconsistent, e.g.’g’, we omitted the inconsistent character finite set of input values at a time (J values in our example) and and embedded the font with missing data so that the manifold fills returning the corresponding finite set of output values. in unmatched character [Navaratnam et al. 2007]. Our training set includes examples of many different categories of typefaces (e.g. Condition on Training Data Now we know about the distribution Humanist, Garalde, Didone/Modern, Slab, Lineale/Grotesque, and between the input and output spaces of a GP we can make it useful Glyphic) for a total of 46 fonts listed in Table1. for regression by conditioning the GP on our training data. That is to say that we add the constraint that if any of the training inputs Xtr B Details on the GP-LVM are presented to the GP, the corresponding training output Ytr should be produced. Thus if we consider a new test input x∗, we can find Here we provide a more in-depth introduction to Gaussian Processes, y∗ = f (x∗) as illustrating their use for regression. We then extend this technique ∗ Ytr M(Xtr) C(Xtr;Xtr) C(Xtr;x ) to present the Gaussian Process Latent Variable Model (GP-LVM) ∗ ∼ N ∗ ; ∗ ∗ ∗ : (B-3) that we use to construct probabilistic manifolds. Finally, we provide y M(x ) C(x ;Xtr) C(x ;x ) the details about how to learn the true dimensionality of a manifold We simplify the situation by subtracting the mean from our training from the data. input and output so that the mean function becomes a zero-vector. Standard manipulation can convert this to an output function as B.1 Gaussian Processes f (x∗) ∼ N C(x∗;X )C(X ;X )−1Y ; S∗ (B-4) Gaussian Processes (GPs) are a non-parametric model that consist tr tr tr tr of distributions over functions. They can be used as a powerful with the output covariance (‘error bars’) as way to model regression, that producing a smooth mapping func- ∗ ∗ ∗ ∗ −1 ∗ tion from an input space to an output space (both of which maybe S = C(x ;x ) −C(x ;Xtr)C(Xtr;Xtr) C(x ;Xtr) : (B-5) multi-dimensional vector spaces); essentially they act as a prior that Therefore, the conditioned GP provides the regression function encourages functions to be smooth. A full treatment is beyond the to predict output vectors for new input vectors with the predicted scope of this work and instead we provide a basic illustrative exam- value as the mean of (B-4) and the covariance value S∗ providing a ple; there are many excellent texts on GPs including the definitive measure of confidence in the prediction; a low standard deviation book by Rasmussen and Williams [2006]. We begin by considering would indicate a very precise estimate. Please see [Rasmussen and using GPs for the problem of regression and then show how we may Williams 2006] for further details. treat the problem of finding a manifold (or probabilistic dimension- ality reduction) as a new take on the regression task, forming the The Covariance Function The final part of the GP regression GP-LVM. model is then to specify the covariance function C(·;·). This func- tion must accept one or more samples from the input space as each Notation For the illustration of the regression task we will use argument and return a covariance value between each pairwise com- the following notation. Suppose that we have a set of training bination of samples. The function can depend on a small number Q data pairs fx j;y jg that associate an input vector x j 2 R with its of ‘hyperparameters’ that we shall denote with q. The elements a D corresponding output vector y j 2 R with respective dimensions particular covariance matrix given by a set of inputs are indexed using the notation for representing a set of vectors described above. and we require a trade-off between producing a perfect reconstruc- Thus tion of the data and a smooth and useful manifold. With this in mind, h T T i a noise model is usually added to the covariance matrix during train- C([···xi ···] ;[···x j ···] jq) = c xi;x jjq (B-6) i; j ing to account for any slight noise in the high dimensional vectors. We therefore replace the basic covariance function of (B-7) with th th where [·]i; j denotes the element at the i row and j column of the 1 matrix and c(xi;x jjq) denotes the covariance between two input c0 x ;x jq = a exp − y kx − x k2 + s 2 (B-8) vectors. i j 2 i j Perhaps the most typical covariance function would be a radial basis where s is the standard deviation of the noise. The noise term is only function (RBF) present during training and is not used afterwards when generating high dimensional vectors using (B-4). 1 2 c xi;x jjq = a exp − y kxi − x jk (B-7) 2 In our experiments, the noise variation was found to be very small, where a and y are the hyperparameters and therefore q = [a;y]. suggesting that the font outlines do indeed lie on a low dimensional We can see that this covariance function will produce a smooth manifold. mapping from the input space to the output space since nearby input Training The training process for the GP-LVM considers the like- vectors will have a high covariance and therefore the output vectors lihood of the high dimensional data Y as will be correlated. Similarly, if the input vectors are far apart (relative to the length -scale parameter y) then there will be a low covariance M 2 and the corresponding output vectors will be independent of one P(YjX;q) = ∏ N ym j 0;C(X;Xjq) + s I (B-9) another. m=1 The training of a GP consists of learning the values for these hyper- where there are M training examples (one for each font) and I is the parameters by maximizing the log-likelihood (B-1) of the training identity matrix. Whereas, for the GP model we simply maximized ∗ data (Xtr;Ytr) to give an optimal setting q . Since the covariance the log-likelihood over the hyperparameters q, for the GP-LVM train- T function can be a powerful, non-linear function, as in the case of ing we must maximize jointly over the latent vectors X = [···x j ···] the RBF, this training cannot be performed analytically and is in- as well as q such that stead performed using gradient based methods such as Conjugate Gradients. X∗;q ∗ = argmax log[P(YjX;q)] : (B-10) X;q B.2 The GP-LVM Again, the covariance function is a complex, non-linear function, We can think of the task of dimensionality reduction for a set of both in terms of its relationship to X and to q; however, gradients high dimensional vectors as identifying a set of low dimensional may be found against both so training may be performed using vectors that recreate the corresponding high dimensional vectors Conjugate Gradients [Lawrence 2005]. Such methods require initial under a basic mapping. More powerfully, we could then go further values for both X and q.
Recommended publications
  • 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]
  • Powerpoint 2007
    Office 2007 Microsoft Office Fluent User Interface ........................................................................................................................................................ 2 Key Components ......................................................................................................................................................................................... 2 The Office Button .................................................................................................................................................................................... 2 The Ribbon .............................................................................................................................................................................................. 3 Contextual Tabs ....................................................................................................................................................................................... 3 Galleries .................................................................................................................................................................................................. 3 Live Preview ........................................................................................................................................................................................... 3 Mini Toolbar ..........................................................................................................................................................................................
    [Show full text]
  • CSS Font Stacks by Classification
    CSS font stacks by classification Written by Frode Helland When Johann Gutenberg printed his famous Bible more than 600 years ago, the only typeface available was his own. Since the invention of moveable lead type, throughout most of the 20th century graphic designers and printers have been limited to one – or perhaps only a handful of typefaces – due to costs and availability. Since the birth of desktop publishing and the introduction of the worlds firstWYSIWYG layout program, MacPublisher (1985), the number of typefaces available – literary at our fingertips – has grown exponen- tially. Still, well into the 21st century, web designers find them selves limited to only a handful. Web browsers depend on the users own font files to display text, and since most people don’t have any reason to purchase a typeface, we’re stuck with a selected few. This issue force web designers to rethink their approach: letting go of control, letting the end user resize, restyle, and as the dynamic web evolves, rewrite and perhaps also one day rearrange text and data. As a graphic designer usually working with static printed items, CSS font stacks is very unfamiliar: A list of typefaces were one take over were the previous failed, in- stead of that single specified Stempel Garamond 9/12 pt. that reads so well on matte stock. Am I fighting the evolution? I don’t think so. Some design principles are universal, independent of me- dium. I believe good typography is one of them. The technology that will let us use typefaces online the same way we use them in print is on it’s way, although moving at slow speed.
    [Show full text]
  • Suitcase Fusion 8 Getting Started
    Copyright © 2014–2018 Celartem, Inc., doing business as Extensis. This document and the software described in it are copyrighted with all rights reserved. This document or the software described may not be copied, in whole or part, without the written consent of Extensis, except in the normal use of the software, or to make a backup copy of the software. This exception does not allow copies to be made for others. Licensed under U.S. patents issued and pending. Celartem, Extensis, LizardTech, MrSID, NetPublish, Portfolio, Portfolio Flow, Portfolio NetPublish, Portfolio Server, Suitcase Fusion, Type Server, TurboSync, TeamSync, and Universal Type Server are registered trademarks of Celartem, Inc. The Celartem logo, Extensis logos, LizardTech logos, Extensis Portfolio, Font Sense, Font Vault, FontLink, QuickComp, QuickFind, QuickMatch, QuickType, Suitcase, Suitcase Attaché, Universal Type, Universal Type Client, and Universal Type Core are trademarks of Celartem, Inc. Adobe, Acrobat, After Effects, Creative Cloud, Creative Suite, Illustrator, InCopy, InDesign, Photoshop, PostScript, Typekit and XMP are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Apache Tika, Apache Tomcat and Tomcat are trademarks of the Apache Software Foundation. Apple, Bonjour, the Bonjour logo, Finder, iBooks, iPhone, Mac, the Mac logo, Mac OS, OS X, Safari, and TrueType are trademarks of Apple Inc., registered in the U.S. and other countries. macOS is a trademark of Apple Inc. App Store is a service mark of Apple Inc. IOS is a trademark or registered trademark of Cisco in the U.S. and other countries and is used under license. Elasticsearch is a trademark of Elasticsearch BV, registered in the U.S.
    [Show full text]
  • Free Download Arial Unicode Ms.Ttf
    Free download arial unicode ms.ttf click here to download www.doorway.ru Arial Unicode MS font preview. www.doorway.ru Arial Unicode MS font preview. Download font - MB. At www.doorway.ru, find an amazing collection of thousands of FREE fonts for Windows and Mac. Arial Unicode MS ( downloads) Free For Personal Use. Download arial unicode ms font free at www.doorway.ru, database with web fonts, truetype and opentype fonts for Windows, Linux and. Typographic info for the Arial Unicode MS font family. Purchase & Download Microsoft fonts for personal, professional or business use on. Download the Arial Unicode MS free font. Mac, Linux; ✓ for programs: Microsoft Word, Photoshop, etc; ✓ free download. Arial Unicode www.doorway.ru, MB. Download Unavailable. Arial Create a Logo Using Arial Unicode MS You may need to extract www.doorway.ru files from www.doorway.ru archive file before installing the font. Description: Where can you get the Arial Unicode MS font? Resolution: www.doorway.ru file (the Arial Unicode MS font) needs to be in the PC's. Download Arial Unicode MS Regular For Free, View Sample Text, Rating And More On www.doorway.ru View and Download Arial Unicode MS Version CartoCSS port of Toner. Contribute to stamen/toner-carto development by creating an account on GitHub. toner-carto/fonts/www.doorway.ru Fetching contributors Cannot retrieve contributors at this time. Download History. executable file MB. View Raw. Arial Unicode MS Regular truetype font page. Coolest truetype fonts. Best free fonts download. View font details, character map, custom preview, downloads, file contents Arial Unicode by Agfa Monotype Corporation TTF, 22 MB, Font File, download .
    [Show full text]
  • SHOPC Minutes
    · IOLu\f\ Clex-~ Kc.J 1 \) 1 Approved May 6, 2020 SJlo Izozo 2 I).' LI J'.W1 3 s 4 ~ ~ 5 THE SOUTHBOROUGH HOUSING OPPORTUNITY PARTNERSHIP COMMITTEE 6 (SHOPC) 7 MEETING MINUTES 8 Wednesday, April 29, 2020 8:30 AM 9 VIRTUAL MEETING/REMO E PARTICIPATION 10 11 Members present: Doriann Jasinski, Lisa Braccio, John Wood, Alex Frisch, Tom Bhisitkul, Tom Marcoulier 12 and Jesse Stein. Also present: Karina Quinn, Town Planner, Sarah Hoecker, Business Administrator I and 13 Kathleen Battles, Recording Secretary. Sarah Hoecker managed virtual connection through ZOOM 14 application. 15 16 CALL TO ORDER: The meeting was called to order at 8:44 AM. 17 18 Ms. Jasinski read the following statement: 19 Pursuant to Governor Baker's March 12, 2020 Order Suspending Certain Provisions of the Open Meeting 20 Law, G.L. c. 30A, &18, and the Governor's March 15, 2020 Order imposing strict limitations on the 21 number of people that may gather in one place, this meeting of the Southborough Housing Opportunity 22 Partnership Committee (SHOPC) is being conducted via remote participation to the greatest extent 23 possible. Specific information and the general guidelines for the remote participation by members of 24 the public and/ or parties with a right and/or requirement to attend this meeting can be found on the 25 Town of Southborough's website, at https://www.southboroughtown.com/. 26 For this meeting, members of the pubic who wish to listen to the meeting or participate in the public 27 hearing may do so in the following manner: 28 https://www.southboroughtown.com/remotemeetings 29 30 No in-person attendance of members of the public will be permitted, but every effort will be made to 31 ensure that the public can adequately access the proceedings in real time, via technological means.
    [Show full text]
  • Administración De Fuentes De Windows Guía De Mejores Prácticas Administración De Fuentes De Windows: Guía De Mejores Prácticas
    PRIMERA EDICIÓN ADMINISTRACIÓN DE FUENTES DE WINDOWS GUÍA DE MEJORES PRÁCTICAS ADMINISTRACIÓN DE FUENTES DE WINDOWS: GUÍA DE MEJORES PRÁCTICAS Contenido ¿Por qué necesita administrar sus fuentes? ....................................................................1 ¿A quiénes va dirigido este libro? ....................................................................................1 Notas sobre Windows .......................................................................................................................2 Convenciones utilizadas en esta Guía ............................................................................ 2 Mejores prácticas de la administración de fuentes ....................................................... 3 Utilice una aplicación de administración de fuentes .....................................................................4 Separe las fuentes de terceros de las fuentes del sistema ..............................................................4 Elabore un plan para agregar fuentes nuevas .................................................................................4 Actualice las fuentes obsoletas.........................................................................................................4 Mantenimiento de fuentes ...............................................................................................................4 Antes de seguir ...............................................................................................................4 Muestre las extensiones ....................................................................................................................5
    [Show full text]
  • System Profile
    Steve Sample’s Power Mac G5 6/16/08 9:13 AM Hardware: Hardware Overview: Model Name: Power Mac G5 Model Identifier: PowerMac11,2 Processor Name: PowerPC G5 (1.1) Processor Speed: 2.3 GHz Number Of CPUs: 2 L2 Cache (per CPU): 1 MB Memory: 12 GB Bus Speed: 1.15 GHz Boot ROM Version: 5.2.7f1 Serial Number: G86032WBUUZ Network: Built-in Ethernet 1: Type: Ethernet Hardware: Ethernet BSD Device Name: en0 IPv4 Addresses: 192.168.1.3 IPv4: Addresses: 192.168.1.3 Configuration Method: DHCP Interface Name: en0 NetworkSignature: IPv4.Router=192.168.1.1;IPv4.RouterHardwareAddress=00:0f:b5:5b:8d:a4 Router: 192.168.1.1 Subnet Masks: 255.255.255.0 IPv6: Configuration Method: Automatic DNS: Server Addresses: 192.168.1.1 DHCP Server Responses: Domain Name Servers: 192.168.1.1 Lease Duration (seconds): 0 DHCP Message Type: 0x05 Routers: 192.168.1.1 Server Identifier: 192.168.1.1 Subnet Mask: 255.255.255.0 Proxies: Proxy Configuration Method: Manual Exclude Simple Hostnames: 0 FTP Passive Mode: Yes Auto Discovery Enabled: No Ethernet: MAC Address: 00:14:51:67:fa:04 Media Options: Full Duplex, flow-control Media Subtype: 100baseTX Built-in Ethernet 2: Type: Ethernet Hardware: Ethernet BSD Device Name: en1 IPv4 Addresses: 169.254.39.164 IPv4: Addresses: 169.254.39.164 Configuration Method: DHCP Interface Name: en1 Subnet Masks: 255.255.0.0 IPv6: Configuration Method: Automatic AppleTalk: Configuration Method: Node Default Zone: * Interface Name: en1 Network ID: 65460 Node ID: 139 Proxies: Proxy Configuration Method: Manual Exclude Simple Hostnames: 0 FTP Passive Mode:
    [Show full text]
  • Nunavut Utilities Technical Guide, Version 2.1, June 2, 2005 1 CONTENTS
    Nunavut Utilities Technical Guide Prepared by Multilingual E-Data Solutions For the Nunavut Department of Culture, Language, Elders and Youth Nunavut Utilities Technical Guide, Version 2.1, June 2, 2005 1 CONTENTS 1. Introduction................................................................................................................... 4 2. Syllabic Font Conversions............................................................................................ 4 2.1 Using Unicode as a Pivot Font.................................................................................. 5 2.2 Conversions to Unicode............................................................................................ 6 2.3 Conversions back to “Legacy” fonts......................................................................... 6 2.4 Special Processing Routines ................................................................................. 6 2.4.1 Placement of Long vowel markers .................................................................... 6 2.4.2 Extra Long vowel markers................................................................................. 7 2.4.3 Typing variations and collapsing characters...................................................... 7 3. Roman/Syllabic Transliteration Conversions ............................................................ 8 3.1 Introduction............................................................................................................... 8 3.2 Inuit Cultural Institute (ICI) Writing System...........................................................
    [Show full text]
  • Suitcase Fusion 9 Getting Started Guide
    Legal notices Copyright © 2014–2019 Celartem, Inc., doing business as Extensis. This document and the software described in it are copyrighted with all rights reserved. This document or the software described may not be copied, in whole or part, without the written consent of Extensis, except in the normal use of the software, or to make a backup copy of the software. This exception does not allow copies to be made for others. Licensed under U.S. patents issued and pending. Celartem, Extensis, MrSID, NetPublish, Portfolio Flow, Portfolio NetPublish, Portfolio Server, Suitcase Fusion, Type Server, TurboSync, TeamSync, and Universal Type Server are registered trademarks of Celartem, Inc. The Celartem logo, Extensis logos, Extensis Portfolio, Font Sense, Font Vault, FontLink, QuickFind, QuickMatch, QuickType, Suitcase, Suitcase Attaché, Universal Type, Universal Type Client, and Universal Type Core are trademarks of Celartem, Inc. Adobe, Acrobat, After Effects, Creative Cloud, Creative Suite, Illustrator, InCopy, InDesign, Photoshop, PostScript, and XMP are either registered trademarks or trademarks of Adobe Systems Incorporated in the United States and/or other countries. Apache Tika, Apache Tomcat and Tomcat are trademarks of the Apache Software Foundation. Apple, Bonjour, the Bonjour logo, Finder, iPhone, Mac, the Mac logo, Mac OS, OS X, Safari, and TrueType are trademarks of Apple Inc., registered in the U.S. and other countries. macOS is a trademark of Apple Inc. App Store is a service mark of Apple Inc. IOS is a trademark or registered trademark of Cisco in the U.S. and other countries and is used under license. Elasticsearch is a trademark of Elasticsearch BV, registered in the U.S.
    [Show full text]
  • Fonts Installed with Each Windows OS
    FONTS INSTALLED WITH EACH WINDOWS OPERATING SYSTEM WINDOWS95 WINDOWS98 WINDOWS2000 WINDOWSXP WINDOWSVista WINDOWS7 Fonts New Fonts New Fonts New Fonts New Fonts New Fonts Arial Abadi MT Condensed Light Comic Sans MS Estrangelo Edessa Cambria Gabriola Arial Bold Aharoni Bold Comic Sans MS Bold Franklin Gothic Medium Calibri Segoe Print Arial Bold Italic Arial Black Georgia Franklin Gothic Med. Italic Candara Segoe Print Bold Georgia Bold Arial Italic Book Antiqua Gautami Consolas Segoe Script Georgia Bold Italic Courier Calisto MT Kartika Constantina Segoe Script Bold Georgia Italic Courier New Century Gothic Impact Latha Corbel Segoe UI Light Courier New Bold Century Gothic Bold Mangal Lucida Console Nyala Segoe UI Semibold Courier New Bold Italic Century Gothic Bold Italic Microsoft Sans Serif Lucida Sans Demibold Segoe UI Segoe UI Symbol Courier New Italic Century Gothic Italic Palatino Linotype Lucida Sans Demibold Italic Modern Comic San MS Palatino Linotype Bold Lucida Sans Unicode MS Sans Serif Comic San MS Bold Palatino Linotype Bld Italic Modern MS Serif Copperplate Gothic Bold Palatino Linotype Italic Mv Boli Roman Small Fonts Copperplate Gothic Light Plantagenet Cherokee Script Symbol Impact Raavi NOTE: Trebuchet MS The new Vista fonts are the Times New Roman Lucida Console Trebuchet MS Bold Script newer cleartype format Times New Roman Bold Lucida Handwriting Italic Trebuchet MS Bold Italic Shruti designed for the new Vista Times New Roman Italic Lucida Sans Italic Trebuchet MS Italic Sylfaen display technology. Microsoft Times
    [Show full text]
  • Lucida Sans the Quick Brown Fox Jumps Over a Lazy Dog
    Facing up to Fonts Richard Rutter “When the only font available is Times New Roman, the typographer must make the most of its virtues. The typography should be richly and superbly ordinary, so that attention is drawn to the quality of the composition, not the individual letterforms.” Elements of Typographic Style by Robert Bringhurst ≠ Times New Roman Times New Roman is a serif typeface commissioned by the British newspaper, The Times, in 1931, designed by Stanley Morison and Victor Lardent at the English branch of Monotype. It was commissioned after Morison had written an article criticizing The Times for being badly printed and typographically behind the times. Arial Arial is a sans-serif typeface designed in 1982 by Robin Nicholas and Patricia Saunders for Monotype Typography. Though nearly identical to Linotype Helvetica in both proportion and weight, the design of Arial is in fact a variation of Monotype Grotesque, and was designed for IBM’s laserxerographic printer. Georgia Georgia is a transitional serif typeface designed in 1993 by Matthew Carter and hinted by Tom Rickner for the Microsoft Corporation. It is designed for clarity on a computer monitor even at small sizes, partially due to a relatively large x-height. The typeface is named after a tabloid headline titled Alien heads found in Georgia. Verdana Verdana is a humanist sans-serif typeface designed by Matthew Carter for Microsoft Corporation, with hand-hinting done by Tom Rickner. Bearing similarities to humanist sans-serif typefaces such as Frutiger, Verdana was designed to be readable at small sizes on a computer screen. Trebuchet A humanist sans-serif typeface designed by Vincent Connare for the Microsoft Corporation in 1996.
    [Show full text]