如何使用DiagrammeR将≥和°C符号插入流程图框中的文本中?

时间:2015-12-30 20:27:48

标签: r symbols flowchart

我是用户DiagrammeR来制作流程图。我需要在流程图框中的文本中插入≥和°C特殊字符(符号)。如何让≥和°符号出现在文本中?

例如,

grViz("

digraph boxes_and_circles {

#add node statements
node[shape = rectangle,
      style = open,
      color = skyblue2,
      fontname = Helvetica]
#Node definitions with substituted label text
R1 [label = 'Oral temp ≥38.3°C × 1 \nor oral temp 38.0 to 38.2°C × 1h \n or axillary temp ≥37.8°C × 1 \nSTOP LEVOFLOXACIN']
#... etc.

1 个答案:

答案 0 :(得分:1)

大于和度的符号在文本中呈现对我来说很好。

尝试运行此示例,仔细检查这不是由于您的图表代码中某处未包含在您的问题中的其他问题。

library(DiagrammeR)
grViz("
  digraph boxes_and_circles {

    # Node statements
    node[shape = rectangle]
    node1 [label = 'Test ≥']
    node2 [label = 'Test °C']

    node1 -> node2
  }
")