Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
flozano committed Sep 16, 2023
1 parent f5b6667 commit daebbac
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
13 changes: 11 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# inti 0.6.3

- To improve:
- `gdocs2qmd()`
- change params: template ==> theme
- reference-doc: style_rticle.docx

- Yupana2improve:
- Observation plots
- Include distribution in sketch design
- Improve PCA supplementary variables
- Select the dimension in PCA
- Sub module for PCA with variable contribution and dimension correlation
- Include lattice

# inti 0.6.2

- gdocs2qmd()
- `gdocs2qmd()`
- Bug with: "```Unknown element type at this position: UNSUPPORTED```"
- The function works for articles and thesis
- Include the cover page using a table
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:::

```{r}
list.files(path = "files", pattern = paste0("logo-", params$template), full.names = T) %>%
list.files(path = "files", pattern = paste0("logo-", params$theme), full.names = T) %>%
knitr::include_graphics()
```

Expand Down
Binary file modified inst/rmarkdown/templates/rticles/skeleton/files/style_unalm.docx
Binary file not shown.
4 changes: 2 additions & 2 deletions inst/rmarkdown/templates/rticles/skeleton/manuscript.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ crossref:
tbl-title: Tabla
tbl-prefix: Tabla
# params:
# template: ""
# theme: ""
# author: ""
# advisor: ""
# coadvisor: ""
Expand All @@ -49,7 +49,7 @@ params <- doc$params
if(length(params) > 0) {
cover <- list.files(path = "files/"
, pattern = paste0("cover-", params$template)
, pattern = paste0("cover-", params$theme)
, full.names = T) %>%
knitr::knit_child(quiet = TRUE) %>%
cat(sep = '\n')
Expand Down

0 comments on commit daebbac

Please sign in to comment.