當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。