Похоже, я не могу заставить 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}