I'm using a table inside a new environment to create a list of definitions, but some of the things being defined are two words. I want to have the first word on one line and the other word on the next line but everything I try gives an error or an incorrect out. (This works fine if it's only one word.) Here is what I have so far:
\documentclass{article}
\usepackage{fullpage}
\setlength\parindent{0pt}
\newenvironment{defn}[2]
{\begin{tabular}{p{1in} p{5in}}
\hfill\underline{#1} & #2
}
{\\ \end{tabular}}
\begin{document}
\begin{defn}
{Jib\\ Jab} {Here is the definition of the word Jib Jab}
\end{example}
\begin{defn}
{Def2} {Here is the definition of the word Def2}
\end{defn}
\end{document}

\underline{Jib\\ Jab}which is not allowed us for underlining words. Welcome to site! – Zarko Nov 04 '16 at 23:30