I want add a list inside a table. My actual code is the following
\documentclass[12pt,a4paper,twoside,openright]{book}
\usepackage{booktabs}
\usepackage{array}
\newcolumntype{L}{>{\centering\arraybackslash}m{4cm}}
\begin{document}
\begin{table}[t]
\centering
\begin{tabular}{LLL}
\multicolumn{3}{c}{\textbf{Neuromarketing Tools}}\\
\midrule
Metabolic Brain's Activities & Electrical Brain's Activities & Without Brain's Activities\\
\midrule
Position Emission Tomography (PET) & Electroencephalography (EEG) & Eye tracking\\
Functional Magnetic Resonance Imaging (FMRI) & Magnetoencephalography (MEG) & Skin conductance\\
& Steady State Topography (SST) & Facial coding\\
& Transcranial Magnetic Stimulation (TMS) & Facial electromyography\\
\bottomrule
\end{tabular}
\caption{Classification of neuromarketing tools.}
\label{tab:neuro_tools}
\end{table}
\end{document}
an the result is
But that is not what I want. I need the items are listed (with dots) and not disposed in the same rows. I hope my question is clear.
Any suggestion?
EDIT:
I've tried to add \itemize
\documentclass[12pt,a4paper,twoside,openright]{book}
\usepackage{booktabs}
\usepackage{array}
\newcolumntype{L}{>{\centering\arraybackslash}m{4cm}}
\begin{document}
\begin{table}[t]
\centering
\begin{tabular}{LLL}
\multicolumn{3}{c}{\textbf{Neuromarketing Tools}}\\
\midrule
Metabolic Brain's Activities & Electrical Brain's Activities & Without Brain's Activities\\
\midrule
\begin{itemize}
\item Position Emission Tomography (PET)
\item Functional Magnetic Resonance Imaging (FMRI)
\end{itemize}
& \begin{itemize}
\item Electroencephalography (EEG)
\item Magnetoencephalography (MEG)
\item Steady State Topography (SST)
\item Transcranial Magnetic Stimulation (TMS)
\end{itemize}
& \begin{itemize}
\item Eye tracking
\item Skin conductance
\item Facial coding
\item Facial electromyography
\end{itemize}\\
\bottomrule
\end{tabular}
\caption{Classification of neuromarketing tools.}
\label{tab:neuro_tools2}
\end{table}
\end{document}
it's close to the solution but there are again some issue:




\begin{itemize}\item...\item .\end{itemize}to put a list in a cell of teh table – David Carlisle Oct 16 '18 at 08:31\multirowcommand in this column and add them inside aminipage, insideitemize(the minipagepossibly needed just with it's optional parameter to align vertical with tho other cells) – koleygr Oct 16 '18 at 08:32\midrule– thoraz Oct 16 '18 at 08:43pcolumn is more or less same as aminipagebut here you are only needing to use\multicolumn{1}{p}to replace themcolumn bypso it would be simpler to usepin the tabular preamble and then just add the list directly – David Carlisle Oct 16 '18 at 09:57@{}. I havepin my answer... – koleygr Oct 16 '18 at 10:10