这是输入:
\documentclass{book}
\usepackage{graphicx}
\usepackage{tikz}
\begin{document}
\chapter{Introduction}
\begin{figure}
\centering
\begin{tikzpicture}
\draw [thick, ->] (0,1) -- (2,1);
\end{tikzpicture}
\caption{Some Caption}
\end{figure}
\end{document}
我运行了以下命令:
$ pandoc hello.tex -t json
{"blocks":[{"t":"Header","c":[1,["introduction",[],[]],
[{"t":"Str","c":"Introduction"}]]},{"t":"RawBlock","c":["latex","\\centering"]}],"pandoc-api-version":[1,17,3,1],"meta":{}}
这是版本信息:
$ pandoc --version
pandoc 2.1.2
Compiled with pandoc-types 1.17.3.1, texmath 0.10.1.2, skylighting 0.6
您知道为什么原始文本中仅包含\centering
吗?为什么与tikz相关的内容不包含在文本中?