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

Custom author order (IEEE template) #263

Merged
merged 5 commits into from
Dec 20, 2019
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
rticles 0.14
---------------------------------------------------------------------

- Added custom author ordering for the IEEE template (thanks, @DunLug, #263).

- Added a multi-line authoring option in the IEEE template (thanks, @DunLug, #264).

- Added the `citation_sorting` YAML option to change the biblatex's sorting option in `ieee_article()` output (thanks, @DunLug, #265).
Expand Down
11 changes: 11 additions & 0 deletions inst/rmarkdown/templates/ieee_article/skeleton/skeleton.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ affiliation:
institution-columnar: true ## one column per institution (multiple autors eventually)
# wide: true ## one column wide author/affiliation fields

#author: ## A custom author ordering field that breaks institution grouping.
# - name: Eldon Tyrell
# mark: 4
# email: eldon@starfleet-academy.star
# - name: Michael Shell
# mark: 1
# - name: Roy Batty
# mark: 4
# email: roy@replicant.offworld
## Authors cited in institution field are ignored when author field exists

#author_multiline: ## Put authors in a given order, with multiline possibility. Authors cited in institution are ignored if exists
# - line: ## Create a new author line
# - name: Michael Shell
Expand Down