带有交叉线的流程图可以记为 OPML 吗?

发布于 2024-12-06 17:52:36 字数 202 浏览 1 评论 0原文

是否有一个标准来引用 OPML 中的思维导图或流程图中的交叉线。例如,使用锚点和链接。好像gliffy等在线流程图编辑器可以导入OPML,但导出的只是xml,而不是OPML。简而言之:此流程图可以用 OPML 进行编码,还是 OPML 仅限于没有交叉引用的概述?

Is there a standard to reference cross-lines in a mindmap or flowchart in OPML.For example with anchors and links. It seems that flowchart editors online such as gliffy can import OPML but export is only xml, not OPML. Put simply: can this flowchart be coded in OPML, or is OPML limited to outlining without cross references?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尘曦 2024-12-13 17:52:36

简单地说:这个流程图可以用 OPML 编码吗...?

是的,但是您必须提出自己的编码约定,并且没有大纲软件知道如何利用该约定。

最简单的编码是三重存储,您通常将其视为 3 列的表,但在 OPML 中可能如下所示:

  • 级别 1:主题: 仅列出网络中的每个节点
    • 第 2 级:谓词:列出来自每个节点的弧类型
      • 第 3 级:对象:列出主题节点每种类型弧的端点。

您可能还想为节点提供一个密钥,这样您就不会一遍又一遍地重复相同的长标签(就像规范化数据库一样)。

在您给出的具体示例中,它可能如下所示:

  • #1
    • 文本:
      • 有问题吗?
    • 如果是:
      • #2
    • 其他:
      • #3
  • #2
    • 文本:
      • “给自己倒杯饮料。”
    • 下一步:
      • #4
  • #3
    • 文本:
      • “太棒了!需要喝一杯。”

(等等)

如果你想了解更多关于这个概念的信息,RDF是一个通用的投影标准将图转化为树结构。

您绝对可以将 RDF 提升到 OPML,但是特定于 RDF 的工具可以利用图形结构并实际上用它做一些事情,而大纲程序只处理树,可能无法利用额外的信息。

但是,有一些基于图形模型构建的大纲工具。 Mac 版 Tinderbox 就是一个例子。

Put simply: can this flowchart be coded in OPML...?

Yes, but you'd have to come up with your own conventions for how to encode it, and no outline software would know how take advantage of the convention.

The absolute simplest encoding would be a triple store, which you usually think of as a table of 3 columns, but in OPML could look like this:

  • level 1: subject: just list every node in the network
    • level 2: predicate: list the types of arcs coming out of each node.
      • level 3: object: list the end points for each type of arc for the subject node.

You probably also want to give the nodes a key so you're not repeating the same long labels over and over again (just like normalizing a database).

In the specific example you gave, it might look like this:

  • #1
    • text:
      • is there a problem?
    • ifso:
      • #2
    • else:
      • #3
  • #2
    • text:
      • "Pour yourself a drink."
    • next:
      • #4
  • #3
    • text:
      • "Excellent! This calls for a drink."

(etc.)

If you want to know more about this concept, RDF is a generalized standard for projecting graphs into a tree structure.

You can absolutely lift RDF up into OPML, but RDF-specific tools can take advantage of the graph structure and actually do something with it, whereas outliners only deal with trees and probably can't take advantage of the extra information.

However, there are some outlining tools that are built on a graph model. Tinderbox for mac is one example.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文