ligature

How to avoid ligatures within option-tag?

蹲街弑〆低调 提交于 2019-12-13 03:26:39
问题 I'd like to create a visually appealing select-dialog that shows FontAwesome-Icons and a word describing the symbol to select from various scales for statistical data. So I'm using the FontAwesome-Fonts for the select -tag and the unicode-glyphs for the various symbols. That first part works nicely. But the words I am using are also used in FonAwesome to form ligatures that can also be used to get the icons (I thought this was limited to the desktop-version, but as my example prooves, it also

How to correct the ligatures of 'fi' and 'fl' in case of larger letter-spacing?

你说的曾经没有我的故事 提交于 2019-12-11 05:46:51
问题 I use Google font 'Roboto' and expanded letter-spacing of .3em . How in this case is posible to corect sticky ligatures of little 'f' letter in words consisting 'fl' and 'fi' ? I tried to change to font-family for 'Roboto' to 'sans' and 'sans-serif', but it looks so ridiculus in condition of expanded letter-spacing. Have you any advise? html,body{ min-width:100vw; max-width:100vw; min-height:100vh; max-height:100vh; margin: 0; padding: 0; } *{ margin: 0; padding: 0; box-sizing:0; } body {

iText PdfTextExtractor Missing Ligatures in Resulting Text

一个人想着一个人 提交于 2019-12-11 00:47:50
问题 I am attempting to take a pdf file and grab the text from it. I found iText and have been using it and have had decent success. The one problem I have remaining are ligatures. At first I noticed that I was simply missing characters. After doing some searches I came across this: http://support.itextpdf.com/node/25 Once I knew that it was ligatures I was missing, I began to search for ways to solve the problem and haven't been able to come up with a solution yet. Here is my code: import com

Adjoining “f” and “l” characters

二次信任 提交于 2019-12-08 13:14:54
问题 For some reason, when I display the word "Butterfly" (or anything else with an "fl"), the "f" and the "l" connect at the top (see image below). The font is Century Gothic Bold. This is the code I use to setup the UILabel. The string for the label is retrieved from a plist: UILabel *label = [[UILabel alloc] init]; label.text = [self.flashcardDelegate.alphabetArr objectAtIndex:index]; label.textColor = [UIColor colorWithRed:.733 green:0 blue:.03137 alpha:1]; label.backgroundColor = [UIColor

How to use the music font Bravura Text?

不羁的心 提交于 2019-12-03 16:21:08
I am trying to use an Open Type music font called Bravura Text . I want to use that font in an application that I am currently developing. I did a little research on the features of Bravura Text and the documentation of the font points out, that it is possible to write notes and adjust their vertical position on a staff . There are special characters to raise/lower a notehead on the staff to represent the different tones. I tried to use that features in text applications like Word 2013, Open Office Writer and Libre Office Writer. But I didn't manage to raise/lower the noteheads. All I can see

Separating Unicode ligature characters

谁说我不能喝 提交于 2019-11-30 08:55:42
问题 Throughout the vast number of unicode characters, there are some that actually represent more than one character, like the U+FB00 ligature ff for two 'f' characters. Is there any way easy to convert characters like these into multiple single characters? Preferably something available in the standard Java API, but I can refer to an external library if need be. 回答1: U+FB00 is a compatibility character. Normally Unicode doesn't support separate codepoints for ligatures (arguing that it's a layout

CSS: Disable font ligatures in all browsers

萝らか妹 提交于 2019-11-29 09:19:06
As google fonts are blocked in China I had to download them and use FontSquirrel for conversion. The problem: fi/ff/etc are ugly I did all of the steps here Prevent ligatures in Safari (Mavericks/iOS7) via CSS but no cigar. How can I disable ligatures at once? -webkit-font-variant-ligatures: no-common-ligatures; Doesn't work Despite no-common-ligatures you can try values like none , unset or no-contextual . See MDN for all possible values. Also it should be supported in all modern browsers. Essentially the same answer that andreas offered, but here's the full CSS for easy reference: * { font

Separating Unicode ligature characters

风格不统一 提交于 2019-11-29 09:09:54
Throughout the vast number of unicode characters, there are some that actually represent more than one character, like the U+FB00 ligature ff for two 'f' characters. Is there any way easy to convert characters like these into multiple single characters? Preferably something available in the standard Java API, but I can refer to an external library if need be. U+FB00 is a compatibility character. Normally Unicode doesn't support separate codepoints for ligatures (arguing that it's a layout decision if and when a ligature should be used and should not influence how the data is stored). A few of

Rendering Devanagari ligatures (Unicode) in Java Swing JComponent on Mac OS X

眉间皱痕 提交于 2019-11-28 09:41:29
I'm trying to get Devanagari ligatures (in Unicode strings) rendered correctly on Mac OS X 10.6. The strings are drawn on a JComponent and take RenderingHints for Antialiasing. The ligatures are displayed correctly in Windows XP SP2 and 7, and Ubuntu, but in Mac OS X, the ligatures are decomposed (or rather, not merged correctly), diacritics are moved away from their positions, etc. (cf. screenshots below, correct rendering example from Win XP SP2 on the left (with RenderingHints Antialiasing Key ON ), wrong rendering example from Mac OS X 10.6.7 on the right (Antialising DEFAULT = OFF ). I

Prevent ligatures in Safari (Mavericks/iOS7) via CSS

纵然是瞬间 提交于 2019-11-27 15:38:52
Is there any possibility to prevent Safari/Mobile Safari on Mavericks/iOS7 from rendering ligatures in a Webfont? We're facing issues with not available ligatures in the font beeing displayed as white space. We already tried using this in the CSS: -webkit-font-feature-settings:"liga" 0; font-feature-settings:"liga" 0; text-rendering: optimizeSpeed; But it's not working, the ligatures are still blank spaces. We solved this by adding -webkit-font-variant-ligatures: no-common-ligatures; to the css styles. It prevents the ligatures from appearing and thus the broken symbols in the font. More