使用 markdown 包更改图像大小

使用 markdown 包更改图像大小

我正在使用 markdown 包在 latex 文档中呈现 markdown 文件:

\usepackage{markdown}

\begin{document}
  \markdownInput{test.md}
\end{document}

在 markdown 文件本身中,我想添加一个图像,如下所示:

![alt text](test.png "My Test Image")

这是可行的,但不幸的是,我找不到通过包修改图像大小和对齐的方法markdown

有办法吗?请注意,我不想直接修改 tex 文件。

相关内容