English | Português Brasileiro | Español
This plugin allows the adding of references for monograph chapters in OMP.
The latest release of this plugin is compatible with the following PKP applications:
- OMP 3.4.0
To download the plugin, go to the Releases page and download the tar.gz package of the latest release compatible with your website.
- Enter the administration area of your OMP website through the Dashboard.
- Navigate to
Settings>Website>Plugins>Upload a new plugin. - Under Upload file select the file referencesForChapters.tar.gz.
- Click Save and the plugin will be installed on your website.
After installing and enabling the plugin, a new field will be displayed in the form used to create/edit chapters. Its functioning is similar to the submission's references field.
The plugin adds a new section to the chapter page, displaying the chapter references at the end of the main section. This only happens if the Default Theme is being used, as shown below.
To display the chapter references in the chapter page for other themes, it's necessary to make a small adjustment to the OMP theme being used. You'll need to add the following strip of code to the templates/frontend/objects/chapter.tpl file, adding it to the position you want to exhibit the references.
{* Chapter references *}
{if $chapterCitations || $chapter->getData('chapterCitationsRaw')}
<div class="item references">
<h2 class="label">
{translate key="submission.citations"}
</h2>
<div class="value">
{if $chapterCitations}
{foreach from=$chapterCitations item=$chapterCitation}
<p>{$chapterCitation->getCitationWithLinks()|strip_unsafe_html}</p>
{/foreach}
{else}
{$chapter->getData('chapterCitationsRaw')|escape|nl2br}
{/if}
</div>
</div>
{/if}This plugin is licensed under the GNU General Public License v3.0
Copyright (c) 2025 - 2026 Lepidus Tecnologia

