I want to reduce the whitespace width between table column line and bullet inside a table. I am using following code to generate the table.
\begin{table}[htb]
\centering
\caption{Table test}
\label{tab:test}
\begin{tabular}{|p{0.05\linewidth}|p{0.3\linewidth}|p{0.25\linewidth}|p{0.3\linewidth}|}
\hline
\textbf{T} & \textbf{Title 1} & \textbf{Title 2} & \textbf{Title 3} \\
\hline
T1 & Text 1 & Text 2 &
\begin{minipage}[t]{0.3\textwidth}
\begin{itemize}
\item Item 1
\end{itemize}
\end{minipage} \\
\hline
\end{tabular}
\end{table}
The output is as follows
I want to reduce the width highlighted in red line in the shown image. Does anyone know how to do this? Thank you


enumitempackage and list optionleftmargin=*. – Zarko May 28 '22 at 03:27