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


Python Environment.digest方法代码示例

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


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

示例1: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
    def digest(self, tokens):
        Environment.digest(self, tokens)

        # Give subclasses a hook before going on
        self.processRows()

        self.applyBorders()

        self.linkCells()
开发者ID:PatrickMassot,项目名称:plastex,代码行数:11,代码来源:Arrays.py

示例2: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
    def digest(self, tokens):
        if self.macroMode != Environment.MODE_END:
            # Drop any whitespace before the first item
            for tok in tokens:
                if tok.isElementContentWhitespace:
                    continue
#               if tok.nodeName != 'item':
#                   log.warning('dropping non-item from beginning of list')
#                   continue
                tokens.push(tok)
                break
        Environment.digest(self, tokens) 
开发者ID:Chuvi-w,项目名称:lisiynos,代码行数:14,代码来源:Lists.py

示例3: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
    def digest(self, tokens):
        res = Environment.digest(self, tokens)

        loc = self.attributes.get('loc')
        if loc and 'h' in loc:
            self.float = False
        else:
            self.float = True

        # Apply captions to objects
        if self.macroMode == self.MODE_BEGIN:
            # Locate all caption nodes and nodes that are 
            # capable of being captioned.
            all = self.allChildNodes
            captions = [x for x in all if isinstance(x, (Caption, Array.caption))]
            objects = [x for x in all if getattr(x, 'captionable', False)] 
            # If there is only one caption, apply it to the float
            if len(captions) == 1:
                captions[0].attached = True
                self.title = captions[0]
            # If there are the same number of captions as there are
            # captionable items, apply the captions to the objects.
            if len(captions) == len(objects):
                while captions and objects:
                    captions[0].attached = True
                    objects.pop(0).title = captions.pop(0)
        return res
开发者ID:AllenDowney,项目名称:plastex-oreilly,代码行数:29,代码来源:Floats.py

示例4: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
    def digest(self, tokens):
        # If any of our ancestors are in Math Mode, we should be also.
        # Otherwise our source property returns LaTeX with too many
        # line breaks.
        parentNode = self.parentNode
        while(hasattr(parentNode, 'mathMode') and parentNode.parentNode is not None):
            if parentNode.mathMode:
                self.mathMode = parentNode.mathMode
                break
            parentNode = parentNode.parentNode

        Environment.digest(self, tokens)

        # Give subclasses a hook before going on
        self.processRows()

        self.applyBorders()

        self.linkCells()
开发者ID:NextThought,项目名称:nti.plasTeX,代码行数:21,代码来源:Arrays.py

示例5: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
    def digest(self, tokens):
        """ Sort and group index entries """
        if isinstance(self, Environment):
            Environment.digest(self, tokens)
            if self.macroMode == self.MODE_END:
                return
            # Throw it all away, we don't need it.  We'll be generating
            # our own index entries below.
            while self.childNodes:
                self.pop()
        else:
            Command.digest(self, tokens)
        doc = self.ownerDocument
        current = self
        entries = sorted(self.ownerDocument.userdata.get('index', []))
        prev = IndexEntry([], None)
        for item in entries:
            # See how many levels we need to add/subtract between this one
            # and the previous
            common = 0
            for prevkey, itemkey in zip(zip(prev.sortkey, prev.key),
                                        zip(item.sortkey, item.key)):
                if prevkey == itemkey:
                    common += 1
                    continue
                break

#           print
#           print item
#           print (prev.key, prev.sortkey), (item.key, item.sortkey), common

            # Pop out to the common level
            i = common
            while i < len(prev.key):
#               print 'POP'
                current = current.parentNode
                i += 1

            # Add the appropriate number of levels
            i = common
            while i < len(item.key):
#               print 'ADD', item.sortkey[i]
                newidx = self.Index()
                newidx.key = item.key[i]
                newidx.sortkey = item.sortkey[i]
                newidx.parentNode = current
                current.append(newidx)
                current = newidx
                i += 1

            # Add the current page and format it
            current.pages.append(IndexDestination(item.type, item.node))
            if item.format is not None:
                text = doc.createTextNode(str(len(current.pages)))
                ipn = item.format.getElementsByTagName('index-page-number')
                if ipn:
                    ipn = ipn[0]
                    if ipn.parentNode:
                        ipn.parentNode.replaceChild(text, ipn)
                item.node.append(item.format)
            else:
                text = doc.createTextNode(str(len(current.pages)))
                item.node.append(text)
            prev = item
开发者ID:NextThought,项目名称:nti.plasTeX,代码行数:66,代码来源:Index.py

示例6: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
 def digest(self, tokens):
     tokens.push(self.ownerDocument.createElement('par'))
     Environment.digest(self, tokens)
开发者ID:bahuafeng,项目名称:LaTex2Docx,代码行数:5,代码来源:Document.py

示例7: digest

# 需要导入模块: from plasTeX import Environment [as 别名]
# 或者: from plasTeX.Environment import digest [as 别名]
 def digest(self, tokens):
     Environment.digest(self, tokens)
     self.caption = self.attributes.get('caption', '')
开发者ID:PatrickMassot,项目名称:plastex,代码行数:5,代码来源:Definitions.py


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