mitchelloharawild / vitae

R Markdown Résumés and CVs

Home Page:https://pkg.mitchelloharawild.com/vitae/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to Remove Bottom Text?

amarakon opened this issue · comments

When I export to PDF using awesomecv, it shows this at the bottom:
NAME · CURRICULUM VITAE

I don't want it to show that.

I have a pull request (#182) that does this. Have a look at the commit or my fork to implement.

Thanks to you both. I've added a show_footer option for awesomecv. To remove the footer, you would write:

output: 
  vitae::awesomecv:
    show_footer: false

Thanks for adding this, it makes it much easier. Here is the temporary solution I used before you added this option:

header-includes: |
  \pagestyle{empty}
  \AtBeginDocument{\pagenumbering{gobble}}