[Tex/LaTex] special table in latex

tables

I would like to make a table like this in the image please can someone tell how I can do thatenter image description here

    \begin{table}[!h]
\begin{center}
\begin{tabular}{l|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}|p{1.2cm}}
\cline{2-10}
&\multicolumn{3}{|c|} {\bf $N_{min}$ Amis }& \multicolumn{3}{|c|} {\bf $N_{moy}$ Amis  }& \multicolumn{3}{|c|} {\bf $N_{max}$ Amis }\\ %\multicolumn{2}{|p{2.5cm}|} {\bf 750 Pages }& %\multicolumn{2}{|p{2.5cm}|} {\bf 1000 Pages }\\
\cline{2-10}
& \bf AS& \bf A\& A & \bf Pub& \bf AS& \bf A\& A & \bf Pub & \bf AS & \bf A\& A & \bf Pub \\
\hline

\multicolumn{1}{|l|}{$N_{moy}$ Amis} &\bf 25.66& \bf 26.66& \bf 27&\bf 33& \bf 33& \bf 33& \bf 39.66& \bf 39.66& \bf 39.5\\
\hline
\multicolumn{1}{|p{3.5cm}|}{Moy Pages cibles } &\bf 25.66& \bf 62& \bf 100& \bf 33& \bf 71.33& \bf 100& \bf 39.66& \bf 80.33& \bf 100\\

\hline

\end{tabular}
\end{center}

\bf{\caption{Partager Publication dans le réseau 1}}
\end{table}

Best Answer

It is virtually impossible to rela te your image to the posted code, but anyway I offer this, if it is not what you need then please edit the question to make it clearer. Also please note that \bf is an obsolete command (and even when used never takes an argument. It is not \bf{...} but {\bf ...} or better \bfseries.

enter image description here

\documentclass{article}



\begin{document}



\noindent X\dotfill X

\begin{table}[htbp]
\centering
\footnotesize
\bfseries

\hspace*{-2cm}\begin{tabular}{|l|l|*{11}{p{.8cm}|}}
\cline{3-11}
\multicolumn{2}{l|}{}&\multicolumn{3}{|c|} { $N_{min}$ Amis }& \multicolumn{3}{c|} { $N_{moy}$ Amis  }& \multicolumn{3}{c|} { $N_{max}$ Amis }\\ 
\cline{3-11}
\multicolumn{2}{l|}{}&  AS&  A\&A &  Pub&  AS&  A\&A &  Pub &  AS &  A\&A &  Pub \\
\hline
\raisebox{-5pt}{xxx}&$N_{moy}$ Amis & 25.66&  26.66&  27& 33&  33&  33&  39.66&  39.66&  39.5\\
\cline{2-11}
 &Moy Pages cibles & 25.66&  62&  100&  33&  71.33&  100&  39.66&  80.33&  100\\
\hline
\end{tabular}\hspace*{-2cm}
\end{table}

\noindent X\dotfill X

\end{document}
Related Question