Esempio n. 1
0
def tie_or_space(word, tie='~', space = ' '):
    if bibtex_len(word) < enough_chars:
        return tie
    else:
        return space
Esempio n. 2
0
def text_length(i):
    s = i.pop()
    i.push(utils.bibtex_len(s))
Esempio n. 3
0
def tie_or_space(word, tie='~', space = ' '):
    if bibtex_len(word) < enough_chars:
        return tie
    else:
        return space
Esempio n. 4
0
def text_length(i):
    s = i.pop()
    i.push(utils.bibtex_len(s))
Esempio n. 5
0
def width(i):
    #FIXME need to investigate bibtex' source
    s = i.pop()
    i.push(utils.bibtex_len(s))
Esempio n. 6
0
def width(i):
    #FIXME need to investigate bibtex' source
    s = i.pop()
    i.push(utils.bibtex_len(s))