rstudio / pagedown

Paginate the HTML Output of R Markdown with CSS for Print
https://pagedown.rbind.io
Other
891 stars 129 forks source link

Skip location requirement while including date #151

Closed tjbencomo closed 4 years ago

tjbencomo commented 4 years ago

Thank you for developing this great package! It saves me from dealing with Latex. I was wondering if there's a way to hide the location for certain sections. In the example resume, this would mean removing "Qingdao, China" so it looks like the paper citation below

Screen Shot 2019-11-08 at 9 51 26 PM

Unfortunately when I try to remove the location and leave the date, the date shifts to the location spot. If I remove both, the formatting for the sections below go wacky.

Screen Shot 2019-11-08 at 9 56 05 PM

Is there a solution to that doesn't require the location but still places the date on the left?

cderv commented 4 years ago

I think you can do what is included in the doc for resume

The description, location, and time period can each be N/A if the relevant information is not available.

With the example of the template for resume


Education {data-icon=graduation-cap data-concise=true}
--------------------------------------------------------------------------------

### Beijing University of Chemical Technology

B.S. in Information and Computing Sciences

N/A

2010

Thesis: Dyadic wavelet and its application in edge detection

Will suppress the location but keep the date at the right place.

Did you try already ?

tjbencomo commented 4 years ago

Ah, I missed that in the documentation. That works, thanks for the help!