Christophe Dervieux
Christophe Dervieux
You can indeed you `number_section = FALSE` in `gitbook()` but it is not possible in `bs4_book()`. Setting that would let you set manual number but you'll loose some feature like...
@maelle you added the feature of `subdir` in #1036 It seems it was chosen to point book source to the main repo. However, it makes also sense to point to...
Hi, Can you reformat you code so that we can more easily use it ? https://yihui.org/issue/#please-format-your-issue-correctly
Hi, Thanks for you patience. Do you manage to do what you want with **rmarkdown** and `pdf_document` format ? Just trying to see if this is a specific **rticles** topic...
Seems like `graphicx` is not loaded by default and you need to ask for it https://github.com/rstudio/rticles/blob/e894ed5f44caeef4a333fedaef4a5df7e60884d6/inst/rmarkdown/templates/ieee/resources/template.tex#L349-L350 The template was community contributed and it seems it is not documented in the...
Ok I think there could be an issue with the template as this issue is usually when graphicx is not used. * remove `graphics: true` in the YAML * add...
Strange. I don't have an issue when using in the template. Example used ````markdown --- title: Bare Demo of IEEEtran.cls for IEEE Conferences affiliation: institution-columnar: true ## one column per...
Glad it works, forget my last answer then. > ``` > header-includes: > - \usepackage{graphicx} > ``` This should be the same if you do this ``` output: rticles::ieee_article: extra_dependencies:...
Okay I am relieved ! So this is a matter of having graphicx package maybe loaded by default, or having a switch in YAML to do so because currently `graphics:...
The part in question which cause an error was added 5 years ago by @Emaasit ```` $if(graphics)$ \usepackage{graphicx} % We will generate all images so they have a width \maxwidth....