aboutsummaryrefslogtreecommitdiff
path: root/model_8/resources/10-table.tex
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2024-05-23 10:17:05 +0200
committerSébastien Dailly <sebastien@dailly.me>2024-05-23 10:17:05 +0200
commitfd3029c88396f877f50d0f91ce72c6a732961485 (patch)
tree0f93e54a903fb2e9ad798962c985fdf3b9d4ef01 /model_8/resources/10-table.tex
parent3b1107a34f2f2db787157f11ab68d7b468f603ec (diff)
Model_8: correction in the table table color
Diffstat (limited to 'model_8/resources/10-table.tex')
-rw-r--r--model_8/resources/10-table.tex21
1 files changed, 20 insertions, 1 deletions
diff --git a/model_8/resources/10-table.tex b/model_8/resources/10-table.tex
index a3b2488..cfa2f62 100644
--- a/model_8/resources/10-table.tex
+++ b/model_8/resources/10-table.tex
@@ -4,6 +4,25 @@
\colorlet{tableHeader}{red!80!black}
\rowcolors{1}{lightgray!10}{lightgray!50}
+% The tables using the mode are represented like this :
+%
+% \toprule
+% \textbf{%
+% …
+% } & \textbf{%
+% …
+% } \\
+% \midrule
+% \endfirsthead
+%
+% Here, we are updating the toprule command to set the color in the background,
+% and define the text color.
+%
+% In the midrule command, we restore the command `textbf` to the previous
+% definition.
+
+% Update the color for the header row
\def\toprule{\rowcolor{tableHeader}\global\def\textbf{\newbf}}
-\def\midrule{}
+% Restore the previous color after the header
+\def\midrule{\global\def\textbf{\oldbf}}
\def\bottomrule{}