\author{}
Ich kann Pandoc nicht dazu bringen, den LaTeX-Befehl richtig in ein PDF umzuwandeln . Hier ist meine Eingabe:
\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}
Fehlt mir eine Flagge pandoc
? Meine Version ist relativ neu, sie ist
$~> pandoc --version
pandoc 1.12.2.1
Compiled with texmath 0.6.5.2, highlighting-kate 0.5.5.1.
Antwort1
Dir fehlt ein \
Vorher 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}