Files
the-sourdough-framework/book/tables/table-bakers-math-example.tex
cedounet 77d3a9c75b Improve the look of tables (#99)
In order tho make the tables look better in document:
    1) Remove the vertical separation
    2) Add different width for top/mid/bottom rules
    3) Center them in the page

Co-authored-by: Cédric Andrieu <cedric@cirrus.com>
2023-05-25 13:36:30 +02:00

13 lines
685 B
TeX

\input{./vars}
\begin{document}
\begin{tabular}{lrr}
\toprule
\textbf{Ingredient} & \multicolumn{1}{l}{\textbf{Percent}} & \multicolumn{1}{l}{\textbf{Calculation}} \\ \midrule
1000g flour & 100\% & 1000g of 1000g = 100\% \\ \midrule
600g water & 60\% & 600g of 1000g = 60\% \\ \midrule
100g sourdough starter & 10\% & 100g of 1000g = 10\% \\ \midrule
20g salt & 2\% & 20g of 1000g = 2\% \\ \bottomrule
\end{tabular}
\end{document}