Possible Duplicate:
How to merge columns in a table?

How can I make a table of the type above? I am writing a seminar report using the report class.
Possible Duplicate:
How to merge columns in a table?

How can I make a table of the type above? I am writing a seminar report using the report class.
This is just a quick answer to your question. I will update it if the code is too vague.
\documentclass[letterpaper]{article}
\usepackage{amsmath,amssymb}
\usepackage{booktabs,multirow}
\usepackage{hhline}
\begin{document}
%\renewcommand{\arraystretch}{1.2} % Uncomment to get better display
\begin{tabular}{|c|c|c|}
\hline
\multirow{2}{*}{UVLO START} &\multicolumn{2}{c|}{MAXIMUM DUTY CYCLE}\\
\hhline{~--}
& $< 50\%$&$< 50\%$ \\\hline
8.5V& UC3845 & UC3845\\ \hline
16V & UC3845 & UC3845\\ \hline
\end{tabular}
\end{document}
This results in:

If you add \renewcommand{\arraystretch}{1.2} above \begin{tabular} you will get a better display. See below:

multirow, see e.g. http://tex.stackexchange.com/questions/35126/combine-4-cells-in-a-table – Torbjørn T. Jun 05 '12 at 13:20