\author{}
Pandocで 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}