Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
use longtable
Browse files Browse the repository at this point in the history
some tables are longer than one page,
therefore tables are now created as longtables.
  • Loading branch information
joergsteffens committed Oct 17, 2014
1 parent bddedff commit 8624106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions manuals/scripts/generate-resoure-descriptions.py
Expand Up @@ -103,7 +103,7 @@ def getLatexDefaultValue( self, data ):

def getResourceDirectivesTable(self, resourcename):
result="\\begin{center}\n"
result+="\\begin{tabular}{ l | l | l | l }\n"
result+="\\begin{longtable}{ l | l | l | l }\n"
result+="\\hline \n"
result+="\\multicolumn{1}{ c|}{\\textbf{%(name)-80s}} &\n" % { 'name': "configuration directive name" }
result+="\\multicolumn{1}{|c|}{\\textbf{%(type)-80s}} &\n" % { 'type': "type of data" }
Expand Down Expand Up @@ -158,7 +158,7 @@ def getResourceDirectivesTable(self, resourcename):
result+="\\\\ \n\n" % ( strings )

result+="\\hline \n"
result+="\\end{tabular}\n"
result+="\\end{longtable}\n"
result+="\\end{center}\n"
result+="\n"
return result
Expand Down

0 comments on commit 8624106

Please sign in to comment.