hijiangtao / resume

个人中文简历 Latex 源码 https://hijiangtao.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Q&A - 如何在模版上添加照片

renqii opened this issue · comments

找不到添加照片的选项,请问要如何在简历上添加照片?有什么latex语句可以直接添加吗?

@renqii 你好,本简历模版没有提供图片插入功能。

如果需要的话 Latex 提供有 figure 语法可以用来插入图片,可以参考 https://www.overleaf.com/learn/latex/Inserting_Images

另外,如果需要插入图片的话,可能会用到这两个包

\usepackage{graphicx} %插入图片的宏包
\usepackage{float} %设置图片浮动位置的宏包

一个简单的插入图片示例如下:

\documentclass{article}
\usepackage{graphicx}
\graphicspath{ {./images/} }

\begin{document}
The universe is immense and it seems to be homogeneous, 
in a large scale, everywhere we look at.

\includegraphics{universe}

There's a picture of a galaxy above
\end{document}