-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_c.tex
56 lines (55 loc) · 1.38 KB
/
table_c.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
\begin{table}[H]
\caption{Снятие вольт-амперной характеристики (ВАХ) неоновой лампы}
\label{tab:diod}
\pgfkeys{/pgf/number format/.cd,
fixed, 1000 sep={\,}}
% \newlength\Colsep
\setlength\Colsep{10pt}
\xdef\Table{data/table_c.dat}
\pgfplotstableset{
multicolumn names, % allows to have multicolumn names
col sep=tab, % the seperator in our .csv file
precision=3,
% fixed zerofill,
columns/c/.style={
column name={$C$, мкФ},
},
columns/t/.style={
column name={$t$, сек},
},
columns/n/.style={
column name={$n$, периодов},
},
columns/T/.style={
column name={$T$, с},
},
empty cells with={\textbf{--}},
every head row/.style={
before row={\toprule},
after row={
\midrule}
},
every last row/.style={after row=\bottomrule},
every row/.style={after row=\midrule},
columns={c,t,n,T},
dec sep align,
% dec zerofill
% fixed,fixed zerofill,
% precision=2
}
\centering
\noindent\begin{minipage}[c][][c]{1.1\textwidth}
\begin{minipage}[t][][b]{0.5\textwidth}
\pgfplotstabletypeset[
% skip rows between index={0}{50},
skip rows between index={5}{10},
]{\Table}
\end{minipage}%\hfill
\begin{minipage}[t][][b]{0.5\textwidth}
\pgfplotstabletypeset[
skip rows between index={0}{5},
skip rows between index={50}{500},
]{\Table}
\end{minipage}%
\end{minipage}
\end{table}