0% found this document useful (0 votes)
11 views2 pages

Different Forms of Tables (Part-3)

Uploaded by

028RONIT LAHA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views2 pages

Different Forms of Tables (Part-3)

Uploaded by

028RONIT LAHA
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

\documentclass{article}

\usepackage{multirow}
\usepackage{geometry}
\title{\textbf{Different Forms of Table} \\ \textbf{(Part-3)}}
\author{Ronit Laha}
\date{April 2, 2024}
\begin{document}
\maketitle
\listoftables
\section{List of tables}
To create a list of tables use the \verb|\listoftables{}| command. The caption of each
table will be used to generate this list.
\begin{table}[h!]
\centering
\begin{tabular}{||c c c c||}
\hline
Col1 & Col2 & Col2 & Col3 \\ [0.5ex]
\hline\hline
1 & 6 & 87837 & 787 \\
2 & 7 & 78 & 5415 \\
3 & 545 & 778 & 7507 \\
4 & 545 & 18744 & 7560 \\
5 & 88 & 788 & 6344 \\ [1ex]
\hline
\end{tabular}
\caption{This is the caption for the first table.}
\label{table:1}
\end{table}
\begin{table}[h!]
\centering
\begin{tabular}{||c c c c||}
\hline
Col1 & Col2 & Col2 & Col3 \\ [0.5ex]
\hline\hline
4 & 545 & 18744 & 7560 \\
5 & 88 & 788 & 6344 \\ [1ex]
\hline
\end{tabular}
\caption{This is the caption for the second table.}
\label{table:2}
\end{table}
\begin{table}[h!]
\centering
\begin{tabular}{|c c c c c c c c c c|}
\hline
\multicolumn{10}{|c|} {Demo of Complex Form of Table}\\
\hline
Weights & \textbf{$\tau$} & \textbf{$E^{(C)}$} & \textbf{$T^{(D)}$} & \textbf{$\beta^{(Avg)}$} & \
textbf{$F^{(50+100)}$} & \textbf{$Ct$} & \textbf{$W^{(C)}$} & \textbf{$Bo^{(\alpha)}$} & \textbf{$Bo^{(\
gamma)}$} \\
$(\alpha)$ & $(w_2^{(nl)})$ & $(w_4^{(nl)})$ & $(w_6^{(nl)})$ & $(w_8^{(nl)})$ & $(w_{10}^{(nl)})$ & $
(w_{12}^{(nl)})$ & $(w_{14}^{(nl)})$ & $(w_{16}^{(nl)})$ & $(w_{18}^{(nl)})$ \\
\hline
\hline
$+0.01$ & $0.081$ & $0.131$ & $0.013$ & $0.132$ & $0.150$ & $0.122$ & $-0.074$ & $0.014$ & $0.002$ \\
$-0.01$ & $0.082$ & $0.138$ & $0.007$ & $0.139$ & $0.159$ & $0.128$ & $-0.091$ & $0.007$ & $-0.005$ \\
$+0.03$ & $0.080$ & $0.126$ & $0.019$ & $0.126$ & $0.142$ & $0.117$ & $-0.060$ & $0.019$ & $0.009$ \\
\hline
\end{tabular}
\caption{Table 3: Creating Complex Tables-1.}
\label{tab:table3}
\end{table}
\section{Creating Complex Tables}
Here we will see how to create complex forms of tables by incorporating various mathematical symbolic
representations like $\tau, \beta$, etc. Furthermore, we will see how to use both subscripts and superscripts
involving exponents, indexes, and some special operators in the same mathematical expressions, such as $\
[ (w_{8}^{(nl)}) \], \[ (w_{16}^{(nl)}) \]$. Table 3 displays all of the types.
\section{Assignment to be done}
The following Table 4 is to be executed as an assignment.
\begin{table}[h!]
\begin{tabular}{|*{18}{c|}}
\hline
\multicolumn{9}{|c}{k-means clustering} & \multicolumn{9}{|c|}{Fuzzy c-means clustering} \\ \hline
\multicolumn{3}{|c}{50 clusters} & \multicolumn{3}{|c}{60 clusters} & \multicolumn{3}{|c}{70 clusters} &
\multicolumn{3}{|c}{50 clusters} & \multicolumn{3}{|c}{60 clusters} & \multicolumn{3}{|c|}{70 clusters} \\ \
hline
CJ & HT & SVD &CJ & HT & SVD &CJ & HT & SVD &CJ & HT & SVD &CJ & HT & SVD &CJ & HT & SVD
\\ \hline
& & & & & & & & & & & & & & & & & \\ \hline
\end{tabular}
\caption{Creating Complex Tables-2.}
\label{table:4}
\end{table}
\end{document}

You might also like