I use tabulary package for automatic width adjustment, but I have a blank line in the first row.

\documentclass{article} \usepackage{tabulary} \begin{document} \begin{table}[htbp] \begin{tabulary}{1.0\textwidth}{L|L|L|L|L} \hline & \hbox{Name} & \hbox{Function} & \hbox{Properties} & \hbox{Relationships} \\\hline\hline 7 & \hbox{System Maintenance Database} & Stores all kinds of errors occurred during operation from all components in a specified way & Only error related information is stored & \\ 9 & Main Database & & \\ \hline \end{tabulary} \caption{Data elements} \label{data} \end{table} \end{document} What's wrong? How do I remove it?


\hboxis not documented in the LaTeX manual and for a reason: its behavior can be surprising. But why do you think you need it?