Path: utzoo!censor!geac!torsqnt!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!usc!ucla-cs!twinsun!dorab From: dorab@rise.twinsun.com (Dorab Patel) Newsgroups: comp.text.tex Subject: solution to half-height vrule Message-ID: <1990Nov26.222040.15767@twinsun.com> Date: 26 Nov 90 22:20:40 GMT Sender: news@twinsun.com Organization: Twin Sun, Inc Lines: 17 Originator: dorab@rise Nntp-Posting-Host: rise Here is how I finally solved my problem of a half-height vrule in a cell of a tabular environment in LaTeX. The idea was to have the baseline of the row centered vertically in the cell. Then, it is a simple matter to have the vrule only extend downwards. \documentstyle{article} \begin{document} \begin{tabular}{|c|c|c|} \hline \parbox{0.5in}{this is a test of the emergency broadcast system} & 123 & \vrule height 0.5ex \\ \hline \end{tabular} \end{document} Thanks to Don Hosek for showing the way. 'dorab