6.14.7.12.3. Keyed Lists

Start python section to interscript/weavers/latex.py[15 /19 ] Next Prev First Last
   352: #line 379 "latex_weaver.ipk"
   353:   def begin_keyed_list(self):
   354:     self._writeline('\\begin{description}')
   355: 
   356:   def end_keyed_list(self):
   357:     self._writeline('\\end{description}')
   358: 
   359:   def begin_keyed_list_item(self,key):
   360:     self._write('\\item[')
   361:     self.write(key)
   362:     self._write(']')
   363: 
   364:   def end_keyed_list_item(self):
   365:     pass
   366: 
End python section to interscript/weavers/latex.py[15]