Preprints Section of Publications Page #3242
-
I want to add a "preprints" section to the publications page. I tried just entering "preprints" as a year, and while this does add the section, the name of the section now overlaps the title (see the picture below). It would be great if there were an easy way to add a preprints section since so many academics have papers they want to highlight which have not been published yet. |
Beta Was this translation helpful? Give feedback.
Replies: 10 comments
-
I added:
To this file https://github.com/sdaza/sdaza.github.com/blob/source/_layouts/bib.html Then, the bib entries could be included in the preprint field, an example:
You can use the same logic to add any field you want (https://sdaza.com/publications/). Using Zotero, you can add those fields in the Extra section:
|
Beta Was this translation helpful? Give feedback.
-
@sdaza Thanks for the suggestion. I do want a separate section for preprints though outside of other years, since those papers are often working papers and don't fall into a specific year nicely. |
Beta Was this translation helpful? Give feedback.
-
just a short comment, it is a trend that published papers include also a preprint... |
Beta Was this translation helpful? Give feedback.
-
Thanks. I do think this is a solution for a different issue. |
Beta Was this translation helpful? Give feedback.
-
yes, I agree. |
Beta Was this translation helpful? Give feedback.
-
You can do that quite easily by tweaking the configuration of the jekyll/scholar module in _config.yml add: in _pages/publications.md file, replace everything by:
in your bibtex No need to manually group by type/year when jekyll/scholar can already do it! |
Beta Was this translation helpful? Give feedback.
-
Thanks so much for your help! I tried this, but it creates a section for "Journal Articles", one for "Conference Articles", and one for "Unpublished". It also leaves weird text near the top. I assume I'm doing something incorrect. Should my full _pages/publications.md file be:
|
Beta Was this translation helpful? Give feedback.
-
I was able to use the configuration that @William-N-Havard suggested: My
I changed a bit the type headers adding these lines to _base.scss in the publication section:
An example here: https://sdaza.com/publications/ |
Beta Was this translation helpful? Give feedback.
-
I tried this approach, but I am unable to change Unpublished to Preprints |
Beta Was this translation helpful? Give feedback.
-
In the scholar:
# other codes
type_names: { Unpublished: Preprints } |
Beta Was this translation helpful? Give feedback.
You can do that quite easily by tweaking the configuration of the jekyll/scholar module
in _config.yml add:
sort_by: year, month
order: descending, descending
type_order: [unpublished, article, inbook, conference, incollections, inproceedings, proceedings, book, misc, techreport]
type_names: {unpublished: Pre-Prints / In Preparation}
in _pages/publications.md file, replace everything by:
in your bibtex
use @Unpublished instead of @Article
No need to manually group by type/year when jekyll/scholar can already do it!