From fdeb0458eea64c039064a41f7247d35d7d874563 Mon Sep 17 00:00:00 2001 From: Hasan al Rasyid Date: Sun, 13 Mar 2022 08:54:29 +0900 Subject: [PATCH] need to add prototyping for multitable and simpletable --- manuscript.md | 51 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/manuscript.md b/manuscript.md index f0fccc5..6bcae21 100644 --- a/manuscript.md +++ b/manuscript.md @@ -38,6 +38,8 @@ acknowledgements: Part of this work was supported by the German *Deutsche Forschungsgemeinschaft, DFG* project number Ts 17/2--1. +include-headers: | + \newcommand\mC[1]{\multicolumn{1}{c}{#1}} --- @@ -219,7 +221,8 @@ notation: (depending upon the time scales) will be different for layers in different objects. -Table: Simple table using default markdown table. \label{simpleTable} + + +\begin{table} +\centering + + \caption[]{Opacity sources. Prototype for correct table. In half-column mode.} +\begin{tabular}{@{}cc + *{4}{S[table-format=6.3,output-decimal-marker={,}]} +@{}} +\toprule +Lp. & Miejscowość +& \multicolumn{2}{@{}c}{Zapotrzebowanie na wodę, \si{m^3/\day}} \\ +& & \mC{$Q_{\text{śrd}}$} & \mC{$Q_{\text{maxd}}$} \\ +\midrule +1. & X1 & 57,2 & 74,4 \\ +2. & X2 & 82,5 & 107,3 \\ +3. & X3 & 47,3 & 61,5 \\ +4. & X4 & 24,2 & 31,5 \\ +5. & X5 & 211,2 & 274,7 \\ +\bottomrule +\end{tabular} +\end{table} + + +\begin{table*} +\centering + +\caption[]{Opacity sources. Prototype for correct table. In full screen mode. \label{KapSou}} +\begin{tabular}{@{}cc + *{4}{S[table-format=6.3,output-decimal-marker={,}]} +@{}} +\toprule +Lp. & Miejscowość +& \multicolumn{2}{@{}c}{Zapotrzebowanie na wodę, \si{m^3/\day}} +& \multicolumn{2}{c@{}}{Odpływ ścieków, \si{m^3/\day}} \\ +& & \mC{$Q_{\text{śrd}}$} & \mC{$Q_{\text{maxd}}$} & + \mC{$Q_{\text{rdś}}$} & \mC{$Q_{\text{maxd}}$} \\ +\midrule +1. & X1 & 57,2 & 74,4 & 54,3 & 70,7 \\ +2. & X2 & 82,5 & 107,3 & 78,4 & 101,9 \\ +3. & X3 & 47,3 & 61,5 & 44,9 & 58,4 \\ +4. & X4 & 24,2 & 31,5 & 23,0 & 29,9 \\ +5. & X5 & 211,2 & 274,7 & 200,6 & 260,9 \\ +\bottomrule +\end{tabular} +\end{table*}