I have difficulties with adjustbox. I had created a subsection and inside it is a table and this table moves to another subsection and I do not know how to fix this problem. I hope your help, please:
use
\documentclass[14pt,a4paper]{extarticle}
example of subsection
\subsection{Operacionalización de Variables}
\begin{quote}
\begin{table}[]
\begin{adjustbox}{max width=\textwidth}
\begin{tabular}{|l|l|c|l|c|}
\hline
\textbf{Variable} & \textbf{Dimension} & \multicolumn{1}{l|}{\textbf{Indicador}} & \textbf{Sub Indicador} & \multicolumn{1}{l|}{\textbf{Escala de Medición}} \\ \hline
\multirow{2}{*}{\begin{tabular}[c]{@{}l@{}}Factores \\ Demográficos\end{tabular}} & Sexo & \begin{tabular}[c]{@{}c@{}}Hombre \\ Mujer\end{tabular} & & Nominal \\ \cline{2-5}
& Lugar de residencia & \begin{tabular}[c]{@{}c@{}}zona urbana \\ zona urbana marginal\\ zona marginal\end{tabular} & & Nominal \\ \hline
\multicolumn{1}{|c|}{\begin{tabular}[c]{@{}c@{}}Factores \\ Economicos\end{tabular}} & \multicolumn{1}{c|}{Condición económica} & Ingresos & \multicolumn{1}{c|}{\begin{tabular}[c]{@{}c@{}}\textless{}1000\\ 1001 -1200\\ 1200 -1300\\ 1300 -1600\\ \textgreater{}1600\end{tabular}} & Ordinal \\ \hline
\end{tabular}
\end{adjustbox}
\end{table}
\end{quote}


\begin{table}...\end{table}? This will make the box with the tabular float around to where ever TeX thinks there is enough space. – gernot Jul 23 '18 at 14:30\begin {table}? – royer Jul 23 '18 at 14:35\begin{table}...\end{table}and replace\textwidthby\linewidth. Note that parts of your page may stay blank if the table doesn't fit at this point. Moreover, using\begin{quote}...\end{quote}` reduces the width available for the tabular. – gernot Jul 23 '18 at 14:39