放错位置的 \noalign \hline

放错位置的 \noalign \hline

\noalign不幸的是我无法自行解决该错误:

在此处输入图片描述

\begin{document}
\noindent  \LARGE{\textbf{John Smith}}  \\
\vspace{-2ex} 
\hline 
\normalsize

\begin{center}
\begin{tabular}{l l}
Name of University    & \hspace{1in} \href{mailto:[email protected]}     {[email protected]} \\
Department/Institution    & \hspace{1in}  \href{www.johnsmith.com} {www.johnsmith.com}   \\
Address             & \hspace{1in} Skype: \Absender  \\
City Name, State 12345-6789 & \hspace{1in} Phone: +1 (123) 456-7899 \\
\end{tabular}
\end{center}

我不明白如何解决这个问题。

答案1

使用\hrulefill外部表格环境作为水平线和表格列中的常量空间,在声明行中给出如下内容:

\documentclass{article}
\usepackage{hyperref}
\begin{document}
\noindent  \LARGE{\textbf{John Smith}} 

\noindent\hrulefill 

\normalsize

\begin{center}
\begin{tabular}{l @{\hskip1in}l}
Name of University    &  \href{mailto:[email protected]}     {[email protected]} \\
Department/Institution    &   \href{www.johnsmith.com} {www.johnsmith.com}   \\
Address             &  Skype: Absender  \\ %%removed \ from \Absender
City Name, State 12345-6789 &  Phone: +1 (123) 456-7899 \\
\end{tabular}
\end{center}
\end{document}

输出:

在此处输入图片描述

答案2

\\我遇到了这个问题,我错过了之前行尾的换行符\hline

答案3

我刚遇到这个问题,只需更改\hline\hrule即可。无需任何额外的包。

相关内容