Author: Carl Friedrich Bolz <[email protected]>
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}
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to