我添加了该makecell
包以便在tabular
环境的一列内插入换行符。
除了文本尺寸缩小外,一切都完美而流畅:
\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{subscript}
\usepackage{xunicode,xltxtra,url,parskip} %other packages for formatting
\usepackage[big]{layaureo}
\usepackage{titlesec}
\usepackage[normalem]{ulem}
\usepackage{parskip}
\usepackage{eqparbox,array}
\usepackage{lastpage}
\usepackage{libertine}
\usepackage{hyperref}
\usepackage{makecell}
\begin{document}
\begin{tabular}{L{mylhead}p{0.95\textwidth-\mylheadwd}}
\textsc{\thead[cr]{Prof.~Dr.\\A.~Einstein}} & \thead[cl]{Physics Department\\University of the Universe}\\
& e-mail: \href{mailto:[email protected]}{[email protected]}\\\multicolumn{2}{c}{} \\
\textsc{\thead[cr]{Prof.\\M.~Curie}} & \thead[cl]{Department of Physics \\University of the Universe}\\
& e-mail: \href{mailto:[email protected]}{[email protected]}\\
\end{tabular}
\end{document}
注意:我使用了。12pt
里面documentclass
的尺寸\thead
比外面的尺寸小(例如电子邮件地址)。
重置是makecell
序言中指定的内容吗?
答案1
\thead
(不是)出于某种原因\makecell
将字体大小设置为。添加到您的序言中\footnotesize
\renewcommand\theadfont{\normalsize\scshape}
笔记:该\scshape
命令位于此代码中,因为 OP 包含\textsc{\thead{...}}
命令