Questions tagged [system-font]
30 questions
1
vote
0 answers
Why would bolding the voltage symbol ⚡︎ display a decorative arrow ➫ instead (on the web, with system fonts)?
This is kind of crazy… Here’s a GIF of me bolding the voltage symbol in Atlassian Confluence's wiki editor:
It seems that bolding this symbol ⚡︎ results in the display of a completely different symbol (which looks like ➫) instead. I don’t think it…

Alan H.
- 16,219
- 17
- 80
- 113
1
vote
1 answer
Text Kit: Upper case Math symbols in San Francisco
In Introducing the new system fonts, the following screen shot was shown. Which UIFontDescriptorFeatureSettingsAttribute is used to enable this behaviour?

Daniel Breslan
- 11
- 1
1
vote
1 answer
adjusting font-size according to the displayed system-font in a stack via css
Font stacks offer the possibility to suggest an ordered list of fonts a browser should display if it either is installed on the client system or if it is provided via an @font-inclusion over the server – so far so good. But sometimes optical similar…

AvL
- 3,083
- 1
- 28
- 39
1
vote
1 answer
Read System Font using browser and display them
I need to display all the fonts available in user's machine in browser.
Is this possible using javascript or jquery or any other way around to get list font?
For example on my website user should able to see all the fonts available in his/her…

Kundan Atre
- 3,853
- 5
- 26
- 39
0
votes
1 answer
Is it legal to embed system fonts on websites 2022?
So, with MacOs and Windows come a lot of system fonts. – Is it legal to convert the system fonts into .woff2 etc and embed them (self-host) on a web site?
I'm of course aware that I could display them as regular system fonts, but if I, for example,…

Tony Bolero
- 281
- 1
- 2
- 9
0
votes
0 answers
TinyMCE shows builder font change tags
After integration, I used to create a template and save the HTML source code. After I view that HTML code it shows the below as in the attached screenshot.
Inside that editor shows like the below-attached screenshot:
Here is my code
var tinyconfig…

naveen gorp
- 1
- 1
0
votes
1 answer
How to take Apple System Font file?
Currently I am working on a certain app for Apple platform and will add Apple Sign-in on it.
On the design requirement there are certain rules for when we made our custom button for it. One of it is: using Apple System Font.
So, then I search what…

noobsee
- 806
- 15
- 29
0
votes
1 answer
React Native (Expo) says font has not been loaded with Font.loadAsync (but I think it has)
This is a snippet of my code:
export default class HomeScreen extends React.Component {
state = {
fontLoaded: false,
};
async componentDidMount() {
await Font.loadAsync({
'Ubuntu-Regular':…

allybee_chan
- 25
- 1
- 5
0
votes
1 answer
How to set css system fonts for serif'd fonts
https://css-tricks.com/snippets/css/system-font-stack/
Found this awesome link on how to make leverage system fonts. This example only shows sans-serif:
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,…

Armeen Moon
- 18,061
- 35
- 120
- 233
0
votes
1 answer
unity system fonts in android
I want to use android system font to show Chinese text.
I use
var fonts = Font.GetOSInstalledFontNames();
to log what fonts are in device. I find this Noto Sans CJK TC.
But I called
font = (Font)Resources.GetBuiltinResource(typeof(Font),…

manlok manlok
- 84
- 9
0
votes
0 answers
How to install a system font programmatically on a Samsung Android device?
As I understand it, it is not possible to set a custom font as a system font in standard Android devices that have not been rooted. However, I hear that it is possible to do on devices from certain manufacturers, like Samsung. So I would like to…

Suragch
- 484,302
- 314
- 1,365
- 1,393
0
votes
1 answer
How does system fonts deal with different languages?
If I use a -appel-system font stack for my design, I've seen various fonts used depending on the language. So for example, Roman characters are displayed in "San Francisco" and Japanese are displayed in "Hiragino Kaku Gothic Pro"…

Jameela Huq
- 169
- 9
0
votes
1 answer
Where does wkhtmltopdf look for fonts on Debian?
This is closely related to (and stems from the same issue as)
What is the Debian equivalent of urw-fonts (needed for utf-8 in wkhtmltopdf)?
But I think this is a valid question on its own. As described in the link, I'm trying to convert a…

Yury
- 722
- 7
- 14
0
votes
1 answer
only change font size (and not font name)
What I want to do is change the font size.
I know below statement will change the font size, but it changes the font name because we are using systemFontOfSize
[UIFont systemFontOfSize: 13.0];
I know alternate option is as mentioned below.
[myLabel…

Fahim Parkar
- 30,974
- 45
- 160
- 276
0
votes
1 answer
How to use system font in Qtextbrowser
I am writing a Qt application, and I would like to use system's default fonts in the QTextBrowser. Is there any way to query what the default system font is, and set the same in QTextBrowser?
The following snippet shows what I have now:
QString…

devendra rai
- 135
- 12