Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Examples using biblatex #37

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ The name of journal that this article will be submitted to. If not provided, thi

**`cite-style`**

This only works with natbib, that is, if you are _not_ using the `nonatbib` classoption.

`number` - use numbered formatting for citations (default).

`numbername` - use numbered name formatting citations.
Expand All @@ -99,6 +101,29 @@ Produces a separate page before the main document with a list of highlights.

---

**`classoption`**

Pass options to the elsarticle class.

For example, the `nonatbib` option will allow you to use `citeproc` or `biblatex` as citation engines.

Example using citeproc:
```
elsevier-pdf:
classoption: nonatbib
cite-method: citeproc
```

Example using biblatex:
```
elsevier-pdf:
classoption: nonatbib
cite-method: biblatex
biblatexoptions: "style=authoryear, maxcitenames=2, backend=biber"
```

---

For example:

``` yaml
Expand Down