I'm trying to design a cover head with a large journal title on the left and smaller volume and issue numbers opposite on the right. I've tried to design that with a tabular, but it doesn't seem to handle font size changes well: the larger text is still placed on the same baseline as it would if it was normalize, and hence sticks out of the cell.
Code: Select all
\documentclass{article}
\usepackage{tabularx} % tabularx for automatic full width table
\usepackage{multirow} % multirow for cells that span several rows
\begin{document}
\noindent
\begin{tabularx}{\textwidth}{@{\vrule}X@{\vrule}r@{\vrule}}
\hline
\multirow[t]{2}{*}{{\Huge journal title}} & vol 1\\ \cline{2--2}
& issue 1\\
\hline
\end{tabularx}
\end{document}
Any suggestions? Do I have to use a tikz picture instead?