当前位置: 首页>>代码示例>>Python>>正文


Python nodes.math方法代码示例

本文整理汇总了Python中docutils.nodes.math方法的典型用法代码示例。如果您正苦于以下问题:Python nodes.math方法的具体用法?Python nodes.math怎么用?Python nodes.math使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在docutils.nodes的用法示例。


在下文中一共展示了nodes.math方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: visit_Text

# 需要导入模块: from docutils import nodes [as 别名]
# 或者: from docutils.nodes import math [as 别名]
def visit_Text(self, node):
        parent = node.parent
        while parent:
            if isinstance(parent, node_blacklist):
                return
            parent = parent.parent
        rawtext = node.rawsource
        data = rawtext.split("@@")
        if len(data) == 1:
            return
        nodes = []
        for i in range(len(data)):
            text = data[i]
            if i % 2 == 0:
                nodes.append(Text(text))
            else:
                formula = eval(text, pygrim.__dict__)
                latex = formula.latex()
                #nodes.append(literal(text, text))
                nodes.append(math(latex, Text(latex)))
                #nodes.append(math_block(latex, Text(latex)))
        node.parent.replace(node, nodes) 
开发者ID:fredrik-johansson,项目名称:fungrim,代码行数:24,代码来源:grinx.py

示例2: get_tokens

# 需要导入模块: from docutils import nodes [as 别名]
# 或者: from docutils.nodes import math [as 别名]
def get_tokens(self, txtnodes):
        # A generator that yields ``(texttype, nodetext)`` tuples for a list
        # of "Text" nodes (interface to ``smartquotes.educate_tokens()``).

        texttype = {True: 'literal', # "literal" text is not changed:
                    False: 'plain'}
        for txtnode in txtnodes:
            nodetype = texttype[isinstance(txtnode.parent,
                                           (nodes.literal,
                                            nodes.math,
                                            nodes.image,
                                            nodes.raw,
                                            nodes.problematic))]
            yield (nodetype, txtnode.astext()) 
开发者ID:skarlekar,项目名称:faces,代码行数:16,代码来源:universal.py

示例3: math_role

# 需要导入模块: from docutils import nodes [as 别名]
# 或者: from docutils.nodes import math [as 别名]
def math_role(role, rawtext, text, lineno, inliner, options={}, content=[]):
    set_classes(options)
    i = rawtext.find('`')
    text = rawtext.split('`')[1]
    node = nodes.math(rawtext, text, **options)
    return [node], [] 
开发者ID:skarlekar,项目名称:faces,代码行数:8,代码来源:roles.py


注:本文中的docutils.nodes.math方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。