-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtable.tex
60 lines (54 loc) · 2.1 KB
/
table.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
57
58
59
60
% several different sample tables
% not intended to be compiled alone
% define commands for super and sub scripts in text
\newcommand{\super}[1]{\ensuremath{^{\textrm{#1}}}}
\newcommand{\sub}[1]{\ensuremath{_{\textrm{#1}}}}
% sample tables
\begin{center}
\begin{tabular}{l||r|}
\hline
B\sub{1g} & 1 \\ \hline
B\sub{2g} & 1 \\ \hline
E\sub{1g} & 1 \\
\hline
\end{tabular}
\end{center}
\begin{center}
\begin{tabular}{l||r|r|r|r|}
\hline
& E & C\sub{2} & $\sigma$\sub{xz} & $\sigma$\sub{yz} \\ \hline \hline
A\sub{1} & 1 & 1 & 1 & 1 \\ \hline
A\sub{2} & 1 & 1 & -1 & -1 \\ \hline
B\sub{1} & 1 & -1 & 1 & -1 \\ \hline
B\sub{2} & 1 & -1 & -1 & 1 \\
\hline
\end{tabular}
\end{center}
\begin{center}
\begin{tabular}{r|c|c|c|c|}
& E & C\sub{2} & i & $\sigma$\sub{h} \\ \hline \hline
\textbf{x} & 1 & -1 & -1 & 1 \\ \hline
\textbf{y} & 1 & -1 & -1 & 1 \\ \hline
\textbf{z} & 1 & 1 & -1 & -1 \\
\hline
\end{tabular}
\end{center}
% large (13x13) table
\begin{center}
\begin{tabular}{l||r|r|r|r|r|r|r|r|r|r|r|r|}
& E & 2C\sub{6} & 2C\sub{3} & C\sub{2} & 3C\sub{2}\super{'} & 3C\sub{2}\super{''} & i & 2S\sub{3} & 2S\sub{6} & $\sigma$\sub{h} & 3$\sigma$\sub{d} & 3$\sigma$\sub{v} \\ \hline \hline
A\sub{1g} & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 & 1 \\ \hline
A\sub{2g} & 1 & 1 & 1 & 1 & -1 & -1 & 1 & 1 & 1 & 1 & -1 & -1 \\ \hline
B\sub{1g} & 1 & -1 & 1 & -1 & 1 & -1 & 1 & -1 & 1 & -1 & 1 & -1 \\ \hline
B\sub{2g} & 1 & -1 & 1 & -1 & -1 & 1 & 1 & -1 & 1 & -1 & -1 & 1 \\ \hline
E\sub{1g} & 2 & 1 & -1 & -2 & 0 & 0 & 2 & 1 & -1 & -2 & 0 & 0 \\ \hline
E\sub{2g} & 2 & -1 & -1 & 2 & 0 & 0 & 2 & -1 & -1 & 2 & 0 & 0 \\ \hline
A\sub{1u} & 1 & 1 & 1 & 1 & 1 & 1 & -1 & -1 & -1 & -1 & -1 & -1 \\ \hline
A\sub{2u} & 1 & 1 & 1 & 1 & -1 & -1 & -1 & -1 & -1 & -1 & 1 & 1 \\ \hline
B\sub{1u} & 1 & -1 & 1 & -1 & 1 & -1 & -1 & 1 & -1 & 1 & -1 & 1 \\ \hline
B\sub{2u} & 1 & -1 & 1 & -1 & -1 & 1 & -1 & 1 & -1 & 1 & 1 & -1 \\ \hline
E\sub{1u} & 2 & 1 & -1 & -2 & 0 & 0 & -2 & -1 & 1 & 2 & 0 & 0 \\ \hline
E\sub{2u} & 2 & -1 & -1 & 2 & 0 & 0 & -2 & 1 & 1 & -2 & 0 & 0 \\
\hline
\end{tabular}
\end{center}