
I have big problem with tables. I need to make a table which width is \textwidth and i want to set width of cells manual, no automatically by latex compiler (i use LEd). In fact, i want to set everything manual in my table. Which environment should i use to do what i want?
My actual table looks like this:
Code: Select all
\begin{table}[h!]
\begin{tabular*}{\textwidth}[t]{|*{10}{p{0.1\textwidth}|}}
\hline
\multicolumn{4}{|l}{\tw{Def.} \wyr{($\s$-ciało)} Niech $\X\neq\emptyset,\ \F\subseteq 2^\X$;} & \multicolumn{6}{|l|}{\tw{Tw.} \wyr{($\s$-ciało generowane)} Niech $\X\neq\emptyset,\ \G\subseteq 2^\X$;}\\
\multicolumn{4}{|l}{Rodzinę $\F$ nazywamy \underline{$\s$-ciałem}, jeśli:} & \multicolumn{6}{|l|}{Wówczas istnieje najmniejsze $\s$-ciało $S(\G)$, zawierające $\G$.}\\
\cline{5-10}
\multicolumn{4}{|l}{\mbox{ }\mbox{ }(i) $\emptyset\in\F$} & \multicolumn{6}{|c|}{$S(\G)=\bigcap\{\F$ $|$ $\F$ jest $\s$-ciałem oraz $\G\subseteq\F\}$ --- \textcolor{red}{\bf $\s$-ciało generowane}}\\
\cline{5-10}
\multicolumn{4}{|l|}{\mbox{ }(ii) $A\in\F\Rightarrow\X\backslash A\in\F$} & \multicolumn{6}{c|}{\tw{Ozn.} $\B(\X):=S(\mathcal{O})$ --- \textcolor{red}{\bf rodzina zbiorów borelowskich}}\\
\cline{5-10}
\multicolumn{4}{|l|}{(iii) $\{A_n\}_{n=1}^{\infty}\subseteq\F\Rightarrow\bigcup_{n=1}^{\infty}A_n\in\F$} & \multicolumn{6}{c|}{\tw{Def.} Parę $(\X,\ \F)$ nazywamy \textcolor{red}{\bf przestrzenią mierzalną.}}\\
\hline
\end{tabular*}
\end{table}
and i want to create then two columns under, each contains 5 columns in size 0.1\textwidth, but i have problem with alignment.
Exactly i wish to for example \multicolumn{5}{|c|}{...} will save size 5*0.1\textwidth and suitable alignment.
Could anyone help me?
P.S. sorry for my english, i used to write in polish.
Hello again,
now i know what i want to do.
I want to set manually the width of column made by instruction \multicolumn{i-j}.
How to do this?