Skip to content

Commit

Permalink
site: update documentation for research config
Browse files Browse the repository at this point in the history
  • Loading branch information
adfaure committed Nov 13, 2023
1 parent 018e131 commit 63e3095
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions content/blog/how-to-use.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,18 @@ sort_by = "date"
# Here the two dedicated templates
template = "publications.html"
page_template = "publication-page.html"

# Configure sections under which your publications will be displayed
extra.publications_types = [
{ title = "Journal articles", type = "journals" },
{ title = "Thesis", type = "thesis" },
{ title = "Conferences and workshops ", type = "conferences" },
{ title = "Preprints", type = "preprint" }
]

# To assign a publication to a section,
# add the variable `extra.type = "type-you-want"` to the frontmatter of your publications

+++

## Content
Expand All @@ -201,10 +213,10 @@ tree content/research
content/research
├── _index.md
├── paper1
│ ├── bib
│ ├── data.bib
│ └── index.md
└── thesis
├── bib
├── data.bib
├── index.md
├── thesis.pdf
└── thesis_slides.pdf
Expand All @@ -218,7 +230,7 @@ title = "Article 1"
date = 2021-05-18

[extra]
type = "Conference"
type = "conferences"
authors = [ "Kodama Mononoke" ]
publication_types = "Conference paper"
featured = true
Expand Down

0 comments on commit 63e3095

Please sign in to comment.