정의되지 않은 제어 순서 문제

정의되지 않은 제어 순서 문제

다음 코드가 있습니다.

\title{Improvement of the Cascadic Multigrid Algorithm with a Gauss Seidel 
Smoother to Efficiently Compute the Fiedler Vector of a Graph Laplacian}
\author{Shivam Gandhi \href{email: [email protected]}
   \and \href{Tufts University Department of Mathematics}}
\date{November 2015}

그러나 다음 오류가 반환됩니다.

Undefined control sequence.
\@author ->Shivam Gandhi \href 
                               {email: [email protected]} \and \href ...
l.19 \maketitle

The control sequence at the end of the top line
of your error message was never \def'ed. If you have
misspelled it (e.g., `\hobx'), type `I' and the correct
spelling (e.g., `I\hbox'). Otherwise just continue,
and I'll forget about whatever was undefined.

논문 작성을 위해 ShareLaTeX를 사용하고 있으므로 컴파일러일 수도 있습니다. 이 문제를 해결하는 방법에 대한 아이디어가 있습니까?

감사해요.

답변1

당신은 이런 것을 원할 수도 있습니다

\documentclass[a4paper]{article}
\usepackage{hyperref}
\begin{document}
\title{Improvement of the Cascadic Multigrid Algorithm with a Gauss Seidel 
Smoother to Efficiently Compute the Fiedler Vector of a Graph Laplacian}
\author{Shivam Gandhi
  \href{mailto:[email protected]}{[email protected]}
  \and \href{http://math.tufts.edu/}{Tufts University Department of Mathematics}}
\date{November 2015}
\maketitle
\end{document}

관련 정보