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