我似乎無法讓 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
你缺少了一個\
before 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}