6.4.7.12.3. Keyed Lists

6.4.7.12.3. Keyed Lists

Start python section to interscript/weavers/latex.py[15]
   329: #line 356 "latex_weaver.ipk"
   330:   def begin_keyed_list(self):
   331:     self._writeline('\\begin{description}')
   332: 
   333:   def end_keyed_list(self):
   334:     self._writeline('\\end{description}')
   335: 
   336:   def begin_keyed_list_item(self,key):
   337:     self._write('\\item[')
   338:     self.write(key)
   339:     self._write(']')
   340: 
   341:   def end_keyed_list_item(self):
   342:     pass
   343: 
End python section to interscript/weavers/latex.py[15]