-
Notifications
You must be signed in to change notification settings - Fork 0
/
chapter3.tex
52 lines (43 loc) · 1.74 KB
/
chapter3.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
\chapter{Results}
\label{chap:results}
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat \textcite{ref1}. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur \textcite{ref2}. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum \textcite{ref3}.
Table can be cited as \Cref{tab:chap-3-portrait} or \Cref{tab:chap-3-landscape}.
The portrait table is \Cref{tab:chap-3-portrait}, and landscape table is \Cref{tab:chap-3-landscape}.
\afterpage{
\clearpage
\begin{table}[ht]
\centering
\begin{tabular}{ccc}
\toprule
x & f(x) & g(x) \\
\midrule
1 & 6 & 4 \\
2 & 6 & 3 \\
3 & 6 & 2 \\
4 & 6 & 2 \\
\bottomrule
\end{tabular}
\caption{This is an example portrait table.}
\label{tab:chap-3-portrait}
\end{table}
\clearpage
}
\afterpage{
\clearpage
\begin{sidewaystable}[ht]% Landscape page
\centering
\begin{tabular}{lccrrrrrrrrrr}
\toprule
x & f(x) & g(x) & A & B & C & D & E & F & G & H & I & J \\
\midrule
2 & 6 & 3 & 1.0 & 2.0 & 3.0 & 4.0 & 5.0 & 6.0 & 7.0 & 8.0 & 9.0 & 10.0 \\
1 & 6 & 4 & 1.0 & 2.0 & 3.0 & 4.0 & 5.0 & 6.0 & 7.0 & 8.0 & 9.0 & 10.0 \\
3 & 6 & 2 & 1.0 & 2.0 & 3.0 & 4.0 & 5.0 & 6.0 & 7.0 & 8.0 & 9.0 & 10.0 \\
4 & 6 & 2 & 1.0 & 2.0 & 3.0 & 4.0 & 5.0 & 6.0 & 7.0 & 8.0 & 9.0 & 10.0 \\
\bottomrule
\end{tabular}
\caption{This is an example landscape table.}
\label{tab:chap-3-landscape}
\end{sidewaystable}
\clearpage
}