示例#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
def width(i):
    #FIXME need to investigate bibtex' source
    s = i.pop()
    i.push(utils.bibtex_len(s))
示例#6
0
def width(i):
    #FIXME need to investigate bibtex' source
    s = i.pop()
    i.push(utils.bibtex_len(s))