A really Latex beginner but adventurer is writing, then the question might look strange. I tried this though. I have defined the new column style but I do not know how to remove the indentation in each table cell. In this simple example how can I get rid of the gap between the "Number of terms" and the left vertical line of the table?
\documentclass{article}
\usepackage{amsmath}
\usepackage{geometry}
\usepackage{array}
\begin{document}
\parindent = 0pt
\the \parindent
\large{TEXT}
\newcolumntype{R}[2]{
>{ \minipage[c][#1][c]{#2} }
l <
{\endminipage}
}
\begin{center}
\begin{tabular} {|R{1cm}{.2\textwidth} R{1cm}{.2\textwidth} R{1cm}{.2\textwidth} R{1cm}{.2\textwidth}}
Number of terms & $\sin(\dfrac{\pi}{6})$ & $\epsilon_t$ & $\epsilon_a$ \tabularnewline
1 & 0.52360 & 0.047198 & \tabularnewline
2 & 0.49967 & 0.00065164 & 0.047880 \tabularnewline
3 & 0.50000 & 0.0000042652 & 0.00065590 \tabularnewline
4 & 0.50000 & 0.000000016261954 & 0.00000428144 \tabularnewline
\end{tabular}
\end{center}
\end{document}
Even though I have set the \parindent to the zero value.



\tabcolsepat the beginning of the first column. the initial@{}overrides that setting, as shown in this answer. – barbara beeton Aug 20 '16 at 21:01\tabcolsepzero. It applies for every cell. @barbarabeeton – Reza Aug 20 '16 at 21:27\newcolumntype{R}[2]. I can either\tabcolsept=0ptand control by argument #2, or just remove the space by@{}in the beginning of the first column. Either way the width of the cell is controlled by the definition. – Reza Aug 20 '16 at 21:58