Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Profile picture feture with moderncv theme #174

Merged
merged 3 commits into from
Oct 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions docs/user_guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,23 @@ To be answered.

## Can I add a profile picture?

### `moderncv`

There is a built-in command in the `moderncv` package.

\photo A command for a photo. Takes the image file name as a required argument. Takes the height of the photo and the thickness of the photo frame as optional arguments.

\photo[<photo height >][< frame thickness >]{<photo file name >}

You can add the line into the `Preamble.j2.tex` file that is in the `moderncv` folder after initializing (run ```rendercv new "Your Name"``` command first). Keep in mind that the root directory for outputs will be the `rendercv_output` folder (when running ```rendercv render Your_Name_CV.yaml``` command). So, for example, when you have your JPG in the folder where you have your `Your_Name_CV.yaml` file then you can add the picture path so (on Windows):
```
\photo[3cm][1pt]{<<"../MyCVphoto.jpg">>}
```

See more on the [user guide for `moderncv`](https://ctan.math.washington.edu/tex-archive/macros/latex/contrib/moderncv/manual/moderncv_userguide.pdf).

### Other themes

To be answered.

## How can I switch the order of `company` and `position` in ExperienceEntry?
Expand Down