English 中文(简体)
使用unicode字符格式化表格数据
原标题:
  • 时间:2008-08-30 08:26:43
  •  标签:

我需要生成一个计算跟踪文件,其中包含显示中间结果的表格数据。我目前正在使用标准ascii管道符号(|)和短划线(-)的组合来绘制表格行:

例如。

Numerator | Denominator | Result
----------|-------------|-------
        6 |           2 |      3
       10 |           5 |      2

有没有可以用来生成更专业的表的unicode字符?

(文件必须是原始文本格式,并且不能使用HTML或任何其他标记)

编辑:我添加了一个表现在的样子的例子,采纳了这个建议,并使用了unicode box绘图字符:

Numerator │ Denominator │ Result
──────────┼─────────────┼───────
       6  │           2 │      3
       10 │           5 │      2
最佳回答

Unicode方框图字符(在几何符号下查找方框图-图表本身是PDF)。不过,我不知道这些字符的支持范围有多广。

问题回答

Your table is getting help from the monospaced font triggered by the code tags here. Proportional fonts can prevent tabular alignment of the digits. Unicode has digits that retain tabular alignment regardless of fonts in the Mathematical Alphanumeric Symbols from 1D7CE-1D7FF like these ?????????? &#x1D7F6 &#x1D7F7 &#x1D7F8 &#x1D7F9 &#x1D7FA &#x1D7FB &#x1D7FC &#x1D7FD &#x1D7FE &#x1D7FF

你应该看看这个Javascript Box Drawing Demo。这是一个Javascript Unicode Box Drawing工具,其目的是让用户可以轻松地在HTML文本区域绘制Unicode方框图。在那里,您将看到如何使用箭头键绘制方框。

  • 首先,您应该选择“关闭”以外的样式。

  • 然后使用箭头键四处移动,您将在键入时看到正在绘制的框

  • 一旦您对绘图的外观感到满意,只需从方框中复制并粘贴到HTML代码中即可。





相关问题
热门标签