\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}