I have the following table:
\documentclass[Journal]{IEEEtran}
\usepackage[utf8]{inputenc}
\usepackage[table]{xcolor}
%\arrayrulecolor{mycolor}
\setlength{\arrayrulewidth}{0.5mm}
\setlength{\tabcolsep}{4pt}
\usepackage{tikz}
\def\checkmark{\tikz\fill[scale=0.4](0,.35) -- (.25,0) -- (1,.7) -- (.25,.15) -- cycle;}
\usepackage{tabularx,ragged2e}
\usepackage{caption}
\usepackage{booktabs}
\usepackage{fancyhdr} % for header footer
\begin{document}
\begin{table*}
\centering
\caption{Some caption}
\label{table:tab1}
\begin{tabular}{rcccccc}
\toprule
\textbf{Column 1} & \multicolumn{1}{c}{\textbf{Column 2}} & \multicolumn{1}{c}{\textbf{Column 3}} & \multicolumn{1}{c}{\textbf{Column 4}} & \multicolumn{1}{c}{\textbf{ Column 5}} & \multicolumn{1}{c}{\textbf{ Column 6}} & \multicolumn{1}{c}{\textbf{ Column 7}} \\
\midrule
ABC et al [21] & & &\checkmark&& \checkmark& \shortstack{Some text goes here\\and some here}\\
\midrule
XYZ et al [23] & & \checkmark& \checkmark& & & \shortstack{Similarly some text here\\and some here}\\
\bottomrule
\end{tabular}%
\label{tab:dvar}%
\end{table*}%
\end{document}
This code results in the following table:

I want the second line of column 7's first cell "and some here" to start just below "Some text goes here". And the same for all cells of column 7. In simple words I want both the rows in each cell of column 7 to be left aligned. If you notice in the current scenario the first line is left aligned but the second isn't. How do I do it. Appreciated.


lin last column like: \begin{tabular}{rcccccl}? – koleygr Apr 06 '18 at 09:46