{"id":13791448,"url":"https://github.com/quarto-journals/elsevier","last_synced_at":"2025-05-12T14:30:39.602Z","repository":{"id":47898734,"uuid":"503477480","full_name":"quarto-journals/elsevier","owner":"quarto-journals","description":"Quarto template for Elsevier Journals","archived":false,"fork":false,"pushed_at":"2024-09-20T14:54:48.000Z","size":4959,"stargazers_count":54,"open_issues_count":18,"forks_count":20,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-11-18T06:40:32.021Z","etag":null,"topics":["quarto","quarto-extension","quarto-template"],"latest_commit_sha":null,"homepage":"https://quarto-journals.github.io/elsevier/","language":"TeX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quarto-journals.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-06-14T18:32:44.000Z","updated_at":"2024-10-26T04:46:04.000Z","dependencies_parsed_at":"2024-01-05T23:53:41.499Z","dependency_job_id":"dee7458b-584f-47a1-b838-cc4b80dce467","html_url":"https://github.com/quarto-journals/elsevier","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarto-journals%2Felsevier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarto-journals%2Felsevier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarto-journals%2Felsevier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quarto-journals%2Felsevier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quarto-journals","download_url":"https://codeload.github.com/quarto-journals/elsevier/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253754959,"owners_count":21958933,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["quarto","quarto-extension","quarto-template"],"created_at":"2024-08-03T22:01:00.397Z","updated_at":"2025-05-12T14:30:38.215Z","avatar_url":"https://github.com/quarto-journals.png","language":"TeX","funding_links":[],"categories":["Templates","TeX"],"sub_categories":["Journals"],"readme":"# Elsevier\n\nThis Quarto format will help you create documents for journals published by Elsevier. For more about producing LaTeX output for Elsevier journals, see \u003chttps://www.elsevier.com/authors/policies-and-guidelines/latex-instructions\u003e.\n\n## Creating a New Article\n\nYou can use this as a template to create an article for one of the Elsevier journals. To do this, use the following command:\n\n`quarto use template quarto-journals/elsevier`\n\nThis will install the extension and create an example qmd file and bibiography that you can use as a starting place for your article.\n\n## Installation For Existing Document\n\nYou may also use this format with an existing Quarto project or document. From the quarto project or document directory, run the following command to install this format:\n\n`quarto add quarto-journals/elsevier`\n\n## Usage\n\nTo use the format, you can use the format names `elsevier-pdf` and `elsevier-html`. For example:\n\n`quarto render article.qmd --to elsevier-pdf`\n\nor in your document yaml\n\n``` yaml\nformat:\n  pdf: default\n  elsevier-pdf:\n    keep-tex: true    \n```\n\nYou can view a preview of the rendered template at \u003chttps://quarto-journals.github.io/elsevier/\u003e.\n\n## Format Options\n\nThe Elsevier format supports a number of options for customizing the format and appearance of the document. Specify these under the `journal` key.\n\n---\n\n**`name`**\n\nThe name of journal that this article will be submitted to. If not provided, this will default to 'Elsevier'.\n\n---\n\n**`formatting`**\n\n`preprint` - default, which produces a standard preprint format\n\n`review` - produces a document with additional spacing between elements (good for notes and comments)\n\n`doubleblind` - omits the title block, allow for a doubleblind review\n\n---\n\n**`model`**\n\n`1p` - the `1p` model of Elsevier journal formats. Always single column.\n\n`3p` - the `3p` model of Elsevier journal formats. Sometimes single column, sometimes two column. Refer to the specific journal for guidance.\n\n`5p` - the `5p` model of Elsevier journal formats. Always two column.\n\n---\n\n**`layout`**\n\n`onecolumn` - for `3p` model documents, use a single column format (default)\n\n`twocolumn` - for `3p` model documents, use a two column format\n\n---\n\n**`cite-style`**\n\n`number` - use numbered formatting for citations (default).\n\n`numbername` - use numbered name formatting citations.\n\n`authoryear` - use author / year formatting (harvard) for citations.\n\n`super` - use numbered superscript formatting for citations.\n\nPlease refer to the specific journal for guidance.\n\n---\n\n**`graphical-abstract`**\n\nProduces a separate page before the main document with a graphical abstract.\n\n---\n\n**`highlights`**\n\nProduces a separate page before the main document with a list of highlights.\n\n---\n\nFor example:\n\n``` yaml\nformat:\n  elsevier-pdf:\n    journal:\n      name: Journal Name\n      formatting: preprint\n      model: 3p\n      layout: onecolumn\n      cite-style: number\n      graphical-abstract: \"![](abstract.png)\"\n      highlights:\n        - Highlight 1\n        - Highlight 2 \n        - Highlight 3\n```\n\n## Additional Examples:\n\n### Two column format\n\nNote per Elsevier's instructions both model: 3p and layout: twocolumn should be specified for proper two column layout.\n\n```yaml\nformat:\n  elsevier-pdf:\n    journal:\n      formatting: preprint\n      model: 3p\n      layout: twocolumn\n      cite-style: number\n```      \n\n### Include a graphical abstract and highlights\n\n```yaml\nformat:\n  elsevier-pdf:\n    journal:\n      cite-style: authoryear\n      graphical-abstract: \"![](abstract.png)\"\n      highlights:\n        - Highlight 1\n        - Highlight 2 \n        - Highlight 3\n```\n\n### Put the title and abstract on their own page\n\n```yaml\nformat:\n  elsevier-pdf:\n    journal:\n      cite-style: number\n    include-in-header: \n      text: |\n        \\newpageafter{author}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquarto-journals%2Felsevier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquarto-journals%2Felsevier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquarto-journals%2Felsevier/lists"}