René's URL Explorer Experiment


Title: Matplotlib would not try to apply all the font in font list to draw all characters in the given string. · Issue #18883 · matplotlib/matplotlib · GitHub

Open Graph Title: Matplotlib would not try to apply all the font in font list to draw all characters in the given string. · Issue #18883 · matplotlib/matplotlib

X Title: Matplotlib would not try to apply all the font in font list to draw all characters in the given string. · Issue #18883 · matplotlib/matplotlib

Description: Bug report Bug summary The document page Configuring the font family said that: You can explicitly set which font family is picked up for a given font style (e.g., 'serif', 'sans-serif', or 'monospace'). In the example below, we only all...

Open Graph Description: Bug report Bug summary The document page Configuring the font family said that: You can explicitly set which font family is picked up for a given font style (e.g., 'serif', 'sans-serif', or 'monosp...

X Description: Bug report Bug summary The document page Configuring the font family said that: You can explicitly set which font family is picked up for a given font style (e.g., 'serif', 'sans-serif&...

Opengraph URL: https://github.com/matplotlib/matplotlib/issues/18883

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Matplotlib would not try to apply all the font in font list to draw all characters in the given string.","articleBody":"### Bug report\r\n\r\n**Bug summary**\r\n\r\nThe document page [Configuring the font family](https://matplotlib.org/3.1.0/gallery/text_labels_and_annotations/font_family_rc_sgskip.html) said that:\r\n\r\n\u003e You can explicitly set which font family is picked up for a given font style (e.g., 'serif', 'sans-serif', or 'monospace').\r\n\u003e In the example below, we only allow one font family (Tahoma) for the sans-serif font style. You the default family with the font.family rc param, e.g.,:\r\n\u003e ```python\r\n\u003e rcParams['font.family'] = 'sans-serif'\r\n\u003e ```\r\n\u003e and for the font.family you set a list of font styles to try to find in order:\r\n\u003e ```python\r\n\u003e rcParams['font.sans-serif'] = ['Tahoma', 'DejaVu Sans', 'Lucida Grande', 'Verdana']\r\n\u003e ```\r\n\r\nBut the mechanism behind the strings rendering with the font-family is not as same as what most users think.\r\n\r\n- The `matplotlib` just finds the font in the font list and apply the first valid one (can be found in the given path) to all characters in the given string.\r\n- We can use a list of fonts to the font-family settings in Visual Studio Code, Sublime Text, and websites. They have their own algorithm to deal with the problem of fonts fallback so that we can apply each font in the list in order to draw the correct character. Refer to [How do web browsers implement font fallback?](https://stackoverflow.com/questions/29241764/how-do-web-browsers-implement-font-fallback)\r\n\r\nWould `matplotlib` have any plan to implement this feature? There were so many users got into the trouble of missing fonts when we want to show the string mixed with CJK characters and Latin characters.\r\n\r\n**Code for reproduction**\r\n\r\nJust take a look at this [Colab Notebook](https://colab.research.google.com/drive/1kykBfJvV1X9XRgQP_iF2rdwjpKz1Ig_q?usp=sharing).\r\n\r\n#### use `['DejaVu Sans', 'SimHei', 'sans-serif']`\r\n\r\n\u003cimg align=\"right\" width=\"450\" src=\"https://user-images.githubusercontent.com/26391143/98018127-248c2480-1e3b-11eb-8956-fd1c2b42364c.png\"\u003e\r\n\r\n```python\r\n# Setup the fonts\r\nmatplotlib.rcParams['font.sans-serif'] = ['DejaVu Sans', 'SimHei', 'sans-serif']\r\n\r\ndef model(x, p):\r\n    return x ** (2 * p + 1) / (1 + x ** (2 * p))\r\n\r\nx = np.linspace(0.75, 1.25, 201)\r\n\r\nfig, ax = plt.subplots()\r\nfor p in [10, 15, 20, 30, 50, 100]:\r\n    ax.plot(x, model(x, p), label=p)\r\nax.legend(title='Order')\r\nax.set(xlabel='電壓 Voltage (mV)')\r\nax.set(ylabel='電流 Current (A)')\r\nax.autoscale(tight=True)\r\n```\r\n\r\n- `電壓` and `電流` can't be correctly rendered with the current font `DejaVu Sans`.\r\n\r\n#### use `['SimHei', 'DejaVu Sans', 'sans-serif']`\r\n\r\n\u003cimg align=\"right\" width=\"450\" src=\"https://user-images.githubusercontent.com/26391143/98018374-6c12b080-1e3b-11eb-91b3-f1c663a72549.png\"\u003e\r\n\r\n```python\r\n# Setup the fonts\r\nmatplotlib.rcParams['font.sans-serif'] = ['SimHei', 'DejaVu Sans', 'sans-serif']\r\n\r\ndef model(x, p):\r\n    return x ** (2 * p + 1) / (1 + x ** (2 * p))\r\n\r\nx = np.linspace(0.75, 1.25, 201)\r\n\r\nfig, ax = plt.subplots()\r\nfor p in [10, 15, 20, 30, 50, 100]:\r\n    ax.plot(x, model(x, p), label=p)\r\nax.legend(title='Order')\r\nax.set(xlabel='電壓 Voltage (mV)')\r\nax.set(ylabel='電流 Current (A)')\r\nax.autoscale(tight=True)\r\n```\r\n\r\n- `電壓` and `電流` can be correctly rendered with the current font `SimHei`.\r\n- `Voltage` and `Current` are also be rendered with the current font `SimHei`.\r\n\r\n**Expected outcome**\r\n\r\nWe would like to apply the Chinese font `SimHei` to the Chinese characters and the English font `DejaVu Sans` to the English characters. Just like what we use `font-family` style in CSS:\r\n\r\n\u003cp align=\"center\"\u003e\r\n  \u003cimg width=\"460\" src=\"https://user-images.githubusercontent.com/26391143/98018992-2f938480-1e3c-11eb-87a0-12a763fb2938.png\"\u003e\r\n\u003c/p\u003e\r\n\r\n### Similar Issues\r\n\r\n- https://github.com/matplotlib/matplotlib/issues/15260\r\n","author":{"url":"https://github.com/Hsins","@type":"Person","name":"Hsins"},"datePublished":"2020-11-03T17:27:25.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/18883/matplotlib/issues/18883"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:f581fd7f-707f-089f-1440-dd1e52ebf550
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idE202:9F062:288E326:399B538:6A510429
html-safe-noncea617bf1667e148944469c2f389ed500f441796fda330d7f493ee06bdc1dbc793
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJFMjAyOjlGMDYyOjI4OEUzMjY6Mzk5QjUzODo2QTUxMDQyOSIsInZpc2l0b3JfaWQiOiI4MDQxODUwOTk1MzQ3NjIwOTA1IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac919a4dbdf207ff33f3df53087d69c66405932d1a9a6460d863eb456df8773354
hovercard-subject-tagissue:735507254
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/matplotlib/matplotlib/18883/issue_layout
twitter:imagehttps://opengraph.githubassets.com/fea09f68bda18191bc1773be111834f558d6d4c3d4524f9f16d2b6787add9d70/matplotlib/matplotlib/issues/18883
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/fea09f68bda18191bc1773be111834f558d6d4c3d4524f9f16d2b6787add9d70/matplotlib/matplotlib/issues/18883
og:image:altBug report Bug summary The document page Configuring the font family said that: You can explicitly set which font family is picked up for a given font style (e.g., 'serif', 'sans-serif', or 'monosp...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameHsins
hostnamegithub.com
expected-hostnamegithub.com
None38906a4da4e3e9fd88dfeacee232f5932c0c5f7495de3b4efc53ddfac7173d12
turbo-cache-controlno-preview
go-importgithub.com/matplotlib/matplotlib git https://github.com/matplotlib/matplotlib.git
octolytics-dimension-user_id215947
octolytics-dimension-user_loginmatplotlib
octolytics-dimension-repository_id1385122
octolytics-dimension-repository_nwomatplotlib/matplotlib
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id1385122
octolytics-dimension-repository_network_root_nwomatplotlib/matplotlib
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release90441ea9b98e7491aa6ebcd135fccce4e2396f48
ui-targetcanary-2
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/matplotlib/matplotlib/issues/18883#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F18883
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fmatplotlib%2Fmatplotlib%2Fissues%2F18883
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=matplotlib%2Fmatplotlib
Reloadhttps://github.com/matplotlib/matplotlib/issues/18883
Reloadhttps://github.com/matplotlib/matplotlib/issues/18883
Reloadhttps://github.com/matplotlib/matplotlib/issues/18883
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/18883
matplotlib https://github.com/matplotlib
matplotlibhttps://github.com/matplotlib/matplotlib
Please reload this pagehttps://github.com/matplotlib/matplotlib/issues/18883
Notifications https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Fork 8.4k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Star 23k https://github.com/login?return_to=%2Fmatplotlib%2Fmatplotlib
Code https://github.com/matplotlib/matplotlib
Issues 1.1k https://github.com/matplotlib/matplotlib/issues
Pull requests 410 https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality 0 https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
Code https://github.com/matplotlib/matplotlib
Issues https://github.com/matplotlib/matplotlib/issues
Pull requests https://github.com/matplotlib/matplotlib/pulls
Actions https://github.com/matplotlib/matplotlib/actions
Projects https://github.com/matplotlib/matplotlib/projects
Wiki https://github.com/matplotlib/matplotlib/wiki
Security and quality https://github.com/matplotlib/matplotlib/security
Insights https://github.com/matplotlib/matplotlib/pulse
#20740https://github.com/matplotlib/matplotlib/pull/20740
Matplotlib would not try to apply all the font in font list to draw all characters in the given string.https://github.com/matplotlib/matplotlib/issues/18883#top
#20740https://github.com/matplotlib/matplotlib/pull/20740
Difficulty: Hardhttps://matplotlib.org/devdocs/devel/contribute.html#good-first-issueshttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22Difficulty%3A%20Hard%22
topic: text/fontshttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20text%2Ffonts%22
v3.6.0https://github.com/matplotlib/matplotlib/milestone/65
https://github.com/Hsins
Hsinshttps://github.com/Hsins
on Nov 3, 2020https://github.com/matplotlib/matplotlib/issues/18883#issue-735507254
Configuring the font familyhttps://matplotlib.org/3.1.0/gallery/text_labels_and_annotations/font_family_rc_sgskip.html
How do web browsers implement font fallback?https://stackoverflow.com/questions/29241764/how-do-web-browsers-implement-font-fallback
Colab Notebookhttps://colab.research.google.com/drive/1kykBfJvV1X9XRgQP_iF2rdwjpKz1Ig_q?usp=sharing
https://user-images.githubusercontent.com/26391143/98018127-248c2480-1e3b-11eb-8956-fd1c2b42364c.png
https://user-images.githubusercontent.com/26391143/98018374-6c12b080-1e3b-11eb-91b3-f1c663a72549.png
https://user-images.githubusercontent.com/26391143/98018992-2f938480-1e3c-11eb-87a0-12a763fb2938.png
Unable to set more than one font in legends, impossible to label data with Glyph from multiple languages. #15260https://github.com/matplotlib/matplotlib/issues/15260
Difficulty: Hardhttps://matplotlib.org/devdocs/devel/contribute.html#good-first-issueshttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22Difficulty%3A%20Hard%22
topic: text/fontshttps://github.com/matplotlib/matplotlib/issues?q=state%3Aopen%20label%3A%22topic%3A%20text%2Ffonts%22
v3.6.0https://github.com/matplotlib/matplotlib/milestone/65
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.