posquit0 / Awesome-CV

:page_facing_up: Awesome CV is LaTeX template for your outstanding job application
LaTeX Project Public License v1.3c
23.03k stars 4.79k forks source link

profile photo won't load #263

Open harut2005 opened 5 years ago

harut2005 commented 5 years ago

for this example the directory of the profile photo should be either "../examples/profile" or "profile", because both files are already in the same directory

sawaYch commented 2 years ago

Edit: I am using vscode tex workshop extension. You're correct and this fix the problem. I faced same issue while compiling coverletter.tex:

Latexmk: Missing input file: './examples/profile' from line
  '/home/user/Documents/Awesome-CV/examples/coverletter.tex:104: LaTeX Error: File `./examples/profile' not found.'

actually the profile.png exist in examples/profile.png, but not examples/examples/profile.png

sawaYch commented 2 years ago

encounter another issue in this fix. After changing the path of image in coverletter.tex, the make command will fail to build.

sawaYch commented 2 years ago

encounter another issue in this fix. After changing the path of image in coverletter.tex, the make command will fail to build.

I have a workaround on this issue. The image path in coverletter.tex should change to 'profile' Then move the profile.png to root directory, then create a symlink of profile.png to examples dir (from root dir): ln -s ./examples/profile.png ./profile.png