pandoc 降价为 pdf,在图像旁边显示文件名
pandoc markdown to pdf showing file names next to image
当我使用 pandoc 将 markdown 文件转换为 pdf 时,任何图像链接如
![](path/to/name_of_file)
pdf 包含图像,但图像下方有一个 "Figure n:"。我怎样才能抑制这种行为?
其次,如果我使用
包含 header
\usepackage{graphicx}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{\includegraphics[width=3cm]{/Users/pdd/Documents/DATA/Work/Logo/DCM logo email image.jpg}}
在我的 template.latex 文件中,pdf 包含图像但在图像前显示图像名称,在图像下方插入一条水平线并将 "Heading 1" 放在页面右侧作为额外 header。同样,我该如何抑制这种行为?
非常感谢
保罗
如果您为图像使用不包含任何空格的文件名,则标题会消失。这是解决此问题的简单快捷的解决方案,即使它不是最令人满意的。
当我使用 pandoc 将 markdown 文件转换为 pdf 时,任何图像链接如
![](path/to/name_of_file)
pdf 包含图像,但图像下方有一个 "Figure n:"。我怎样才能抑制这种行为?
其次,如果我使用
包含 header\usepackage{graphicx}
\usepackage{fancyhdr}
\pagestyle{fancy}
\lhead{\includegraphics[width=3cm]{/Users/pdd/Documents/DATA/Work/Logo/DCM logo email image.jpg}}
在我的 template.latex 文件中,pdf 包含图像但在图像前显示图像名称,在图像下方插入一条水平线并将 "Heading 1" 放在页面右侧作为额外 header。同样,我该如何抑制这种行为?
非常感谢
保罗
如果您为图像使用不包含任何空格的文件名,则标题会消失。这是解决此问题的简单快捷的解决方案,即使它不是最令人满意的。