コード例 #1
0
def tie_or_space(word, tie='~', space = ' '):
    if bibtex_len(word) < enough_chars:
        return tie
    else:
        return space
コード例 #2
0
def text_length(i):
    s = i.pop()
    i.push(utils.bibtex_len(s))
コード例 #3
0
def tie_or_space(word, tie='~', space = ' '):
    if bibtex_len(word) < enough_chars:
        return tie
    else:
        return space
コード例 #4
0
def text_length(i):
    s = i.pop()
    i.push(utils.bibtex_len(s))
コード例 #5
0
ファイル: builtins.py プロジェクト: crodehacke/PISMcr
def width(i):
    #FIXME need to investigate bibtex' source
    s = i.pop()
    i.push(utils.bibtex_len(s))
コード例 #6
0
ファイル: builtins.py プロジェクト: OVii/communityvisweb
def width(i):
    #FIXME need to investigate bibtex' source
    s = i.pop()
    i.push(utils.bibtex_len(s))