-2

Can anyone give an idea on how to make this table? enter image description here

sebo1234
  • 608
  • 5
  • 18

1 Answers1

1

Use \begin{table} [...] \end{table}
Here is a minimal working example:

\begin{table}
\centering
    \begin{tabular}{l r}
                        & 119 Responses\\
    Field               & Percentage \\
    \hline
    Very convenient       & 63\% \\
    Sowewhat convenient   & 28\% \\
    Neutral               &  5\% \\
    Somewhat inconvenient &  2\% \\
    Very inconvenient     &  3\% \\
    \end{tabular}
\end{table}

\end{document}

It looks like this:
enter image description here

sebo1234
  • 608
  • 5
  • 18