I am making a table with tabular. I want to skip the row separator in select lines but I haven't seen or figured out a way to do this.
I do not want a separator associated with 'Export', 'Coregistration', etc...
I left all my code inplace and commented, in case any of my optional packcages
disrupt normal behavior.
TIA !
wbg
Code: Select all
\documentclass[letterpaper,12pt]{article}
%\usepackage{graphicx}
%\usepackage{courier}
%\usepackage{amsmath}
%\usepackage[left=2cm,top=2.0cm,bottom=1.5cm, right=2cm,nohead,nofoot]{geometry}
%\usepackage{float}
%\usepackage{parskip}
%\usepackage{url}
%\newcommand{\dis}{\displaystyle}
%\newcommand{\del}{\partial}
%\newcommand{\pd}[2]{\frac{\partial #1}{\partial #2}}
%\newcommand{\degree}{^\circ}
%\newcommand{\s}{\text{ }} %one space in math mode
%\newcommand{\tab}{\hspace*{0.5 cm}}
%\newcommand{\sml}{\tiny}
%\newcommand{\med}{\scriptsize}
%\newcommand{\norm}{\normalsize}
%\setlength{\parskip}{0.5cm}
%\setlength{\footskip}{1.0cm}
\begin{document}
\begin{center}\textbf{Output Summary}\end{center}
\vspace*{2cm}
\begin{table}[H]
\centering
\begin{tabular}{l @{ ................................................ }l }
\vspace*{3mm }
\begin{med}\emph{Theoretical Name}\end{med} & \begin{med}\emph{Filename}\end{med} \\
Export %NO SEP HERE% \\\\
$PWI_{scaled}$ & ScaledPWI.nii \\
$M_{blood}$ & Mblood.nii \\\\
Coregistration %NO SEP HERE% \\\\
$T2_{rT1}$ & T2-rT1.nii \\
$M_{rT1-blood}$ & Mblood-rT1.nii \\
$PWI_{rT1-scaled}$ & ScaledPWI-rT1.nii \\\\
EpiCorrection %NO SEP HERE% \\\\
$M_{rT1-blood-dist-corr}$ & MBlood-rT1-EpiCorr.nii \\
$PWI_{rT1-scaled-dist-corr}$ & ScaledPWI-rT1-EpiCorr.nii \\
Transform files & v.nhdr \\\\
PVCorrection %NO SEP HERE% \\\\
$Mask_{gm-wm}$ & /T1/GmWm-Mask.nii \\
$PWI_{PVC}$ & ScaledPWI-rT1-EpiCorr-PVC.nii \\
$M_{blood-PVC}$ & Mblood-rT1-EpiCorr-PVC.nii \\
$CBF_{Normalized}$ & ScaledPWI-rT1-EpiCorr-PVC-Norm.nii
\end{tabular}
\end{table}
\end{document}