这个 \author 字段有什么问题?

这个 \author 字段有什么问题?

我似乎无法让 Pandoc\author{}正确地将 LaTeX 命令渲染为 pdf。这是我的输入:

\documentclass{article}
\usepackage{geometry}
\usepackage{fancyhdr}
\usepackage{amsmath ,amsthm ,amssymb}
\usepackage{graphicx}
\usepackage{hyperref}

\title{An unoffensive title}
\author{Athan Clark \\ url{[email protected]}}
\date{Forever, 2014}

\begin{document}
\maketitle
\tableofcontents
\newpage

Hello world!

\end{document}

我是不是漏掉了一个标志pandoc?我的版本比较新,

$~> pandoc --version
pandoc 1.12.2.1
Compiled with texmath 0.6.5.2, highlighting-kate 0.5.5.1.

答案1

您缺少了一个\之前url

\documentclass{article}
\usepackage{geometry}
\usepackage{fancyhdr}
\usepackage{amsmath ,amsthm ,amssymb}
\usepackage{graphicx}
\usepackage{hyperref}

\title{An unoffensive title}
\author{Athan Clark \\ \url{[email protected]}}
\date{Forever, 2014}

\begin{document}
\maketitle
\tableofcontents
\newpage

Hello world!

\end{document}

相关内容