Generate LaTeX table code by importing your table in this Online LaTeX Generator
To wrap text inside tables, update your the column inside your \begin{tabular}{} tag.
Eg: If you want the first column to take a maximum 30% of the line width and wrap the remaining text, change the first l to p{0.3\linewidth}
% from
\begin{tabular}{@{}lll@{}}
% to
\begin{tabular}{@{}p{0.3\linewidth}ll@{}}Add * to the end of the tag. eg:
\begin{figure*}
\end{figure*}
\begin{table*}
\end{table*}You can insert one LaTeX document inside another by using the \input{} tag.
Eg: If your project is organized as follows
project_dir/
|-- 00_main.tex
|-- 01_intro.tex
|-- 02_body.tex
|-- 03_conclusion.texThen you can include the contents from all the files inside 00_main.tex by including the following lines in it.
\input{01_intro}
\input{02_body}
\input{03_conclusion}You can reference any section in the text by adding a \label{} to that section and using the \ref{} tag to that label. Eg:
% use label reference in text
Section \ref{Introduction} introduces the problem statement
% create label for the section
\section{Introduction}
\label{Introduction}