xlsfonts
发表于|更新于|Linux
|总字数:207|阅读时长:1分钟|浏览量:
xlsfonts
列出X Server使用的字体
补充说明
xlsfonts命令 列出X Server使用的字体,也能使用范本样式仅列出的符合条件的字体。
语法
1 | xlsfonts(选项) |
选项
1 | -l:除字体名称外,同时列出字体的属性; |
文章作者: Estom
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 Estom的博客!
相关推荐

2020-09-26
plot_solarizedlight2
Solarized Light样式表这显示了一个“Solarized_Light”样式的示例,它试图复制以下样式: http://ethanschoonover.com/solarized https://github.com/jrnold/ggthemes http://pygal.org/en/stable/documentation/builtin_styles.html#light-solarized 并且: 使用调色板的所有8个重音 - 从蓝色开始 进行: 为条形图和堆积图创建Alpha值。 .33或.5 应用布局规则 123456789101112131415161718import matplotlib.pyplot as pltimport numpy as npx = np.linspace(0, 10)with plt.style.context('Solarize_Light2'): plt.plot(x, np.sin(x) + x + np.random.randn(50)) plt.plot(x, np.sin...

2022-04-18
html-list
有序列表有序列表也是一列项目,列表项目使用数字进行标记。 有序列表始于 <ol> 标签。每个列表项始于 <li> 标签。 <ol> 标签定义了一个有序列表. 列表排序以数字来显示。 属性名 值 描述 start number **HTML5不支持,不赞成使用。**请使用样式取代它。 规定列表中的起始点。 type 1 A a I i 规定列表的类型。 <li> 标签定义列表项目。 属性名 值 描述 value number **HTML5不支持,不赞成使用。**请使用样式取代它。 规定列表项目的数字。 type 1 A a I i 规定列表的类型。 12345678910111213141516171819202122232425262728293031323334353637383940414243<!DOCTYPE html><html> <head> <title>13_有序列表.html</tit...

2020-09-26
line_demo_dash_control
自定义虚线样式通过破折号序列控制线的划线。 它可以使用Line2D.set_dashes进行修改。 破折号序列是一系列点的开/关长度,例如 [3,1]将是由1pt空间隔开的3pt长线。 像Axes.plot 这样的函数支持将Line属性作为关键字参数传递。 在这种情况下,您可以在创建线时设置划线。 注意:也可以通过property_cycle配置破折号样式,方法是使用关键字破折号将破折号序列列表传递给循环器。这个例子中没有显示。 1234567891011121314151617import numpy as npimport matplotlib.pyplot as pltx = np.linspace(0, 10, 500)y = np.sin(x)fig, ax = plt.subplots()# Using set_dashes() to modify dashing of an existing lineline1, = ax.plot(x, y, label='Using set_dashes()')line1.set_dashes([...

2020-09-26
dfrac_demo
\dfrac 和 \frac之间的区别在此示例中,说明了 \dfrac和\frac TeX宏之间的差异; 特别是,使用Mathtex时显示样式和文本样式分数之间的差异。 New in version 2.1. 注意:要将 \dfrac与LaTeX引擎一起使用(text.usetex:True),您需要使用text.latex.preamble rc导入amsmath包,这是一个不受支持的功能; 因此,在 \frac宏之前使用 \displaystyle选项来获取LaTeX引擎的这种行为可能是个更好的主意。 12345678import matplotlib.pyplot as pltfig = plt.figure(figsize=(5.25, 0.75))fig.text(0.5, 0.3, r'\dfrac: $\dfrac{a}{b}$', horizontalalignment='center', verticalalignment='center')fi...

2020-09-26
fonts_demo_kw
字体演示(kwargs)使用kwargs设置字体属性。 请参阅字体演示(面向对象样式),以使用setter实现相同的效果。 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374import matplotlib.pyplot as pltplt.subplot(111, facecolor='w')alignment = {'horizontalalignment': 'center', 'verticalalignment': 'baseline'}# Show family optionsfamilies = ['serif', 'sans-serif', 'cursive'...

2020-09-26
timeline
使用线、日期、文本创建时间轴图如何使用Matplotlib发布日期创建简单的时间轴。 可以使用日期和文本的集合创建时间轴。在本例中,我们将展示如何使用Matplotlib最新版本的日期创建一个简单的时间轴。首先,我们将从GitHub中提取数据。 123456789101112131415161718192021import matplotlib.pyplot as pltimport numpy as npimport matplotlib.dates as mdatesfrom datetime import datetime# A list of Matplotlib releases and their dates# Taken from https://api.github.com/repos/matplotlib/matplotlib/releasesnames = ['v2.2.2', 'v2.2.1', 'v2.2.0', 'v2.1.2', 'v2.1.1', ...
公告
欢迎参观Estom的小屋




