Omar HernandezJun 05, 2025 03:55 PM
Mark EhlertJun 05, 2025 04:30 PM
Posted Jun 05, 2025 03:55 PM
How do I identify the illustrator in official RDA? Rafael Bernal ; dibujo Ricardo Pelaéz ; guión Luis Humberto Crosthwaite
------------------------------
Omar Hernandez
UNAM
------------------------------
Posted Jun 05, 2025 04:30 PM
If you are referring to illustrator relationship elements in Official RDA, they are found under the Manifestation, not Expression, entity: contributor agent of still image with narrower elements contributor [X] of still image. For a person, the narrower element is contributor person of still image, to which a few LC-PCC policy statements are linked.
The PCC is aiming to use "illustrator" as the relationship label in MARC and BIBFRAME records rather than formal RDA element names.
--
Mark K. Ehlert (he/him/his) Alma: NA04
Cataloging and Metadata Librarian Primo VE: NA04
O'Shaughnessy-Frey Library, University of St. Thomas
Land Acknowledgment
Minnesota NACO Funnel Coordinator
<https://library.stthomas.edu>
Original Message:
Sent: 6/5/2025 4:55:00 PM
From: Omar Hernandez
Subject: illustrator
How do I identify the illustrator in official RDA? Rafael Bernal ; dibujo Ricardo Pelaéz ; guión Luis Humberto Crosthwaite
------------------------------
Omar Hernandez
UNAM
------------------------------
This thread already has a best answer. Would you like to mark this message as the new best answer?
';
if ($discussionImgModal.length == 0) {
$("form").append(modalHtml);
$discussionImgModal = $("#discussion-img-modal");
$discussionImgModal.find(".close").on('click', function () {
$discussionImgModal.modal("hide");
});
}
loadImage($discussionImgModal, source, title);
}
});
function loadImage($discussionImgModal, source, title) {
var discussionImg = $discussionImgModal.find("#modalImg")[0];
discussionImg.onload = function () {
$discussionImgModal.modal("show");
};
discussionImg.src = source;
$discussionImgModal.find("#caption").html(title);
}
var replyInlineParam = HigherLogic.Util.getParameterByName('ReplyInline');
if (!HigherLogic.Util.stringIsNullOrWhiteSpace(replyInlineParam)) {
var $replyInline = $('.reply-inline[data-message-key="' + replyInlineParam + '"]');
if ($replyInline.length > 0) {
openEditor($replyInline);
}
}
$('.reply-inline').on('click',
function () {
hl_common_ui_blockUI();
var $this = $(this);
if ($('.inline-reply-snippet').length > 0) {
hl_common_ui_unBlockUI();
$('.inline-reply-snippet').find('.modal.inline-confirm').modal('show');
$('.inline-reply-snippet').find('.modal.inline-confirm').data('reply-id', $this.prop('id'));
} else {
openEditor($this);
}
});
function openEditor($this) {
$('.inline-reply-snippet').remove();
var postData = { MessageKey: $this.data('message-key'), currentUrl: window.location.href };
HigherLogic.Util.post(
'/higherlogic/ui/mvc/eGroups/eGroups/GetReplyInline',
JSON.stringify(postData),
'html'
).done(function (data) {
var redirectUrl = $(data).data('redirect-url');
if (redirectUrl) {
// gives return location for unauthenticated user redirect to login
redirectUrl = hl_common_util_updateQueryStringParameter(redirectUrl,
'ReturnUrl',
encodeURIComponent(window.location.href));
// gives return location for unsubscribed user redirect to subscribe
window.location.href = hl_common_util_updateQueryStringParameter(redirectUrl,
'PostByLink',
encodeURIComponent(window.location.href));
return;
}
$this.closest('li').append(data);
var $div = $('#' + $(data).first('div').prop('id'));
var bottomOfDiv = $div.offset().top + 500;
$('html, body').animate({
scrollTop: bottomOfDiv - $(window).height()
},
1000);
hl_common_ui_unBlockUI();
});
}
});