[pypy-commit] extradoc extradoc: tentative change: use booktabs

cfbolz noreply at buildbot.pypy.org
Fri Sep 7 10:22:50 CEST 2012


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: extradoc
Changeset: r4763:8b07393dbb13
Date: 2012-09-06 21:05 +0200
http://bitbucket.org/pypy/extradoc/changeset/8b07393dbb13/

Log:	tentative change: use booktabs

diff --git a/talk/vmil2012/tool/table_template.tex b/talk/vmil2012/tool/table_template.tex
--- a/talk/vmil2012/tool/table_template.tex
+++ b/talk/vmil2012/tool/table_template.tex
@@ -1,7 +1,7 @@
 \begin{center}
 {\smaller
-    \begin{tabular}{ |l{% for c in head %} {% if not loop.first %} |r {% endif %} {% endfor %} }
-    \hline
+    \begin{tabular}{ l{% for c in head %} {% if not loop.first %} r {% endif %} {% endfor %} }
+    \toprule
     {% for col in head %}
         \textbf{ {{col|safe}} }
         {% if not forloop.last %}
@@ -9,7 +9,7 @@
         {% endif %}
     {% endfor %}
     \\
-    \hline
+    \midrule
     {% for row in table %}
         {% for cell in row %}
             {{cell}}
@@ -19,7 +19,7 @@
         {% endfor %}
         \\
     {% endfor %}
-    \hline
+    \bottomrule
     \end{tabular}
 }
 \end{center}


More information about the pypy-commit mailing list