CINXE.COM

Control Subfields

<!DOCTYPE HTML> <!--[if gt IE 9]><!--><html class="documentation-viewer bibformats no-js" lang="en" dir="ltr"><!--<![endif]--> <head> <meta charset="utf-8"> <!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame --> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Control Subfields</title> <meta name="description" content="" /> <!-- Dublin Core Metadata --> <meta name="DC.Title" content="Control Subfields" /> <meta name="DCTERMS.Alternative" content="Control Subfields"> <meta name="DC.Subject" content="" /> <meta name="DC.Description" content=""> <meta name="DC.Publisher" content="OCLC" /> <meta name="DC.Creator" content=""> <meta name="DC.Contributor" content=""/> <meta name="DCTERMS.Created" scheme="DCTERMS.W3CTDF" content="2024-9-13"> <meta name="DCTERMS.Issued" scheme="DCTERMS.W3CTDF" content="2024-9-13"> <meta name="DCTERMS.Modified" scheme="DCTERMS.W3CTDF" content="2024-8-12"> <meta name="DC.Language" content="en"> <meta name="DC.Modified" content="2024-8-12" /> <meta name="DC.Rights" content="https://policies.oclc.org/en/copyright.html" /> <meta name="twitter:title" content="Control Subfields" /> <meta name="twitter:card" content="summary_large_image" /> <meta name="twitter:site" content="@OCLC" /> <meta name="twitter:domain" content="www.oclc.org" /> <meta name="twitter:image" content="https://www.oclc.org/content/dam/oclc/logos/oclc/og_image_oclc.png" /> <meta property="og:image" content="https://www.oclc.org/content/dam/oclc/logos/oclc/og_image_oclc.png" /> <meta property="og:type" content="website" /> <meta property="og:site_name" content="OCLC" /> <meta property="og:title" content="Control Subfields" /> <meta property="og:locale" content="en" /> <meta property="og:url" content="https://www.oclc.org/bibformats/en/controlsubfields.html" /> <meta name="viewport" content="width=device-width" /> <link rel="canonical" href="https://www.oclc.org/bibformats/en/controlsubfields.html"/> <link rel="alternate" href="https://www.oclc.org/bibformats/en/controlsubfields.html" hreflang="en"/> <!-- News Article Script --> <!-- Mobile presentation --> <meta name="viewport" content="width=device-width" /> <!-- Favicons --> <link rel="icon" href="/apps/settings/wcm/designs/oclc/images/favicon.ico" sizes="32x32"/> <link rel="icon" href="/apps/settings/wcm/designs/oclc/images/icon.svg" type="image/svg+xml"/> <link rel="apple-touch-icon" href="/apps/settings/wcm/designs/oclc/images/apple-touch-icon.png"/> <script type="text/javascript"> if(typeof String.prototype.trim !== 'function') { String.prototype.trim = function() { return this.replace(/^\s+|\s+$/g, ''); } } </script> <!-- Modernizr: http://www.modernizr.com/ --> <script src="/etc.clientlibs/oclc/clientlibs/oclc/modernizr.min.js"></script> <script src="/etc.clientlibs/oclc/clientlibs/oclc/jquery.min.js"></script> <script src="/etc.clientlibs/oclc/clientlibs/oclc/jquery/oclc.min.js"></script> <script src="/etc.clientlibs/oclc/clientlibs/oclc/jquery/animation.min.js"></script> <link rel="stylesheet" href="/etc.clientlibs/clientlibs/social/thirdparty/bootstrap3.min.css" type="text/css"> <script src="/etc.clientlibs/clientlibs/granite/jquery.min.js"></script> <script src="/etc.clientlibs/clientlibs/granite/utils.min.js"></script> <script src="/etc.clientlibs/clientlibs/granite/jquery/granite.min.js"></script> <script src="/etc.clientlibs/foundation/clientlibs/jquery.min.js"></script> <script src="/etc.clientlibs/clientlibs/social/thirdparty/bootstrap3.min.js"></script> <script type="text/javascript" src="/apps/oclc/clientlibs/oclc/jquery-ui/source/jquery-ui.min.js"></script> <script type="text/javascript"> (function ($) { $(function () { yepnope([{ load: '/apps/settings/wcm/designs/oclc/js/jquery/jquery.easing.js' }, { test: $("#faq-set").length, yep: ['/apps/settings/wcm/designs/oclc/js/faqs-functions-v0.1.js'] }, { // FancyBox for modals: http://fancybox.net test: ($("a.modal-media").length || $("a.modal").length || $("a.img-gallery").length || $("a.modal-iframe").length || $(".modal-youtube").length), yep: ['/apps/settings/wcm/designs/oclc/js/jquery/fancybox/jquery.fancybox.pack.js', '/apps/settings/wcm/designs/oclc/js/jquery/fancybox/jquery.fancybox.css', '/apps/settings/wcm/designs/oclc/js/jquery/fancybox/helpers/jquery.fancybox-media.js', '/apps/settings/wcm/designs/oclc/js/modal-functions-v0.1.js'] }, { // Sitebar show/hide test: ($("#sitebar-sites").length), yep: ['/apps/settings/wcm/designs/oclc/js/jquery/jquery.hoverIntent.minified.js', '/apps/settings/wcm/designs/oclc/js/sitebar-functions-v0.1.js'] }, { // Showhide test: ($(".showhide").length), yep: ['/apps/settings/wcm/designs/oclc/js/showhide-functions-v0.1.js'] }, { test: $.autocomplete, nope: '/apps/oclc/clientlibs/oclc/jquery-ui/source/jquery-ui.min.js', complete: function () { if ($("#search-terms").autocomplete) { $("#search-terms").autocomplete({ source: function (request, response) { var s_siteVal = $("#s_site").val(), s_clientVal = $("#s_client").val(), uri = '/apps/oclc/suggest?q='; uri = uri + request.term + '&site=' + encodeURIComponent(s_siteVal) + '&client=' + encodeURIComponent(s_clientVal); $.ajax({ url: uri, dataType: "json", type: "GET", success: function (data) { response(data); } }); //ajax closed } //source closed }); //autocomplete closed } if ($("#result-search-terms").autocomplete) { $("#result-search-terms").autocomplete({ source: function (request, response) { var sr_siteVal = $("#sr_site").val(), sr_clientVal = $("#sr_client").val(), uri = '/apps/oclc/suggest?q='; uri = uri + request.term + '&site=' + encodeURIComponent(sr_siteVal) + '&client=' + encodeURIComponent(sr_clientVal); $.ajax({ url: uri, dataType: "json", type: "GET", success: function (data) { response(data); } }); //ajax closed } //source closed }); //autocomplete closed } } }]); }); }(jQuery)); </script> <!-- TypeKit --> <link rel="stylesheet" href="https://use.typekit.net/xyd8noe.css"> <script src="/apps/settings/wcm/designs/oclc/js/documentation-functions-v0.1.js" type="text/javascript"></script> <!-- Style sheets --> <link rel="stylesheet" href="/apps/settings/wcm/designs/oclc/jquery-ui-custom.css"/> <link rel="stylesheet" href="/apps/settings/wcm/designs/oclc/oclc-bibformats-v2/main.css?v=20241121"/> <!-- OneTrust Cookies Consent Notice start --> <script type="text/javascript" src="https://cdn.cookielaw.org/consent/999c7907-ac3c-4ce1-9125-172f53ec926f/OtAutoBlock.js"></script> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" data-document-language="true" type="text/javascript" charset="UTF-8" data-domain-script="999c7907-ac3c-4ce1-9125-172f53ec926f"></script> <script type="text/javascript"> function OptanonWrapper() { } </script> <!-- OneTrust Cookies Consent Notice end --> <!-- Start VWO Async SmartCode --> <link rel="preconnect" href="https://dev.visualwebsiteoptimizer.com"/> <script type='text/javascript' id='vwoCode'> window._vwo_code || (function() { var account_id=743027, version=2.0, settings_tolerance=2000, hide_element='body', hide_element_style = 'opacity:0 !important;filter:alpha(opacity=0) !important;background:none !important', /* DO NOT EDIT BELOW THIS LINE */ f=false,w=window,d=document,v=d.querySelector('#vwoCode'),cK='_vwo_'+account_id+'_settings',cc={};try{var c=JSON.parse(localStorage.getItem('_vwo_'+account_id+'_config'));cc=c&&typeof c==='object'?c:{}}catch(e){}var stT=cc.stT==='session'?w.sessionStorage:w.localStorage;code={use_existing_jquery:function(){return typeof use_existing_jquery!=='undefined'?use_existing_jquery:undefined},library_tolerance:function(){return typeof library_tolerance!=='undefined'?library_tolerance:undefined},settings_tolerance:function(){return cc.sT||settings_tolerance},hide_element_style:function(){return'{'+(cc.hES||hide_element_style)+'}'},hide_element:function(){return typeof cc.hE==='string'?cc.hE:hide_element},getVersion:function(){return version},finish:function(){if(!f){f=true;var e=d.getElementById('_vis_opt_path_hides');if(e)e.parentNode.removeChild(e)}},finished:function(){return f},load:function(e){var t=this.getSettings(),n=d.createElement('script'),i=this;if(t){n.textContent=t;d.getElementsByTagName('head')[0].appendChild(n);if(!w.VWO||VWO.caE){stT.removeItem(cK);i.load(e)}}else{n.fetchPriority='high';n.src=e;n.type='text/javascript';n.onerror=function(){_vwo_code.finish()};d.getElementsByTagName('head')[0].appendChild(n)}},getSettings:function(){try{var e=stT.getItem(cK);if(!e){return}e=JSON.parse(e);if(Date.now()>e.e){stT.removeItem(cK);return}return e.s}catch(e){return}},init:function(){if(d.URL.indexOf('__vwo_disable__')>-1)return;var e=this.settings_tolerance();w._vwo_settings_timer=setTimeout(function(){_vwo_code.finish();stT.removeItem(cK)},e);var t=d.currentScript,n=d.createElement('style'),i=this.hide_element(),r=t&&!t.async&&i?i+this.hide_element_style():'',c=d.getElementsByTagName('head')[0];n.setAttribute('id','_vis_opt_path_hides');v&&n.setAttribute('nonce',v.nonce);n.setAttribute('type','text/css');if(n.styleSheet)n.styleSheet.cssText=r;else n.appendChild(d.createTextNode(r));c.appendChild(n);this.load('https://dev.visualwebsiteoptimizer.com/j.php?a='+account_id+'&u='+encodeURIComponent(d.URL)+'&vn='+version)}};w._vwo_code=code;code.init();})(); </script> <!-- End VWO Async SmartCode --> <script> dataLayer = [{ 'site': 'bibformats', 'language': 'en_us' }]; </script> <!-- Google Tag Manager --> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl+ '&gtm_auth=iGoSLkTwa8G0GRiDWDJMVw&gtm_preview=env-2&gtm_cookies_win=x';f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-TC83QFB');</script> <!-- End Google Tag Manager --> </head> <body> <!-- Google Tag Manager (noscript) --> <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TC83QFB&gtm_auth=iGoSLkTwa8G0GRiDWDJMVw&gtm_preview=env-2&gtm_cookies_win=x" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <!-- End Google Tag Manager (noscript) --> <div class="header_microbar iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="header_microbar iparsys parsys"></div> </div> </div> <div class="cont-main"> <header class="top-navigation"> <div class="cont-page"> <div class="header iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="header iparsys parsys"><div class="button section"> <button type="button" id="navigation-menu" class="cmp-button"> <span class="cmp-button__icon cmp-button__icon--menu" aria-hidden="true" translate="no">menu</span> </button> </div> <div class="globallogo parbase section"> <!-- logo --> <a href="https://www.oclc.org/en/home.html"> <img src="/content/dam/oclc/annual-report/2023/images/logo_oclc.svg" border="0" alt="OCLC logo" class=""> </a> </div> <div class="textimage parbase section"> <p><a href="https://www.oclc.org/bibformats/en/home.html">BibFormats</a></p> <div class="clear"></div> <style> .cq-image-placeholder { background: url("default/placeholders/img.png" ) no-repeat scroll 50% 50%; min-width: 74px; min-height: 74px; border: 2px dashed #cccccc; } </style> </div> <div class="customjavascript section"> <script type="text/javascript" src="/apps/settings/wcm/designs/oclc/oclc-bibformats-v2/main.js"></script> </div> <div class="search section"> <link rel="stylesheet" href="/apps/settings/wcm/designs/oclc/coveo/css/CoveoFullSearchNewDesign.css"/> <script src="/apps/settings/wcm/designs/oclc/coveo/js/CoveoJsSearch.js"></script> <link rel="stylesheet" type="text/css" href="/apps/settings/wcm/designs/oclc/coveo/css/oclccoveosearchextension.css"/> <div class="oclc-coveo-search"> <section class="search-box"> <div id="searchbox" class="CoveoSearchInterface" data-pipeline="bibformats_en"> <div class="coveo-search-section"> <div class="CoveoSearchbox" data-enable-omnibox="true" data-inline="false" data-enable-wildcards="true" data-enable-search-as-you-type="false" data-enable-query-suggest-addon="true" data-enable-query-syntax="true" data-enable-field-addon="true" data-auto-focus="false"> </div> </div> </div> <div> <input type="hidden" name="resultsPagePath" value="/content/bibformats/en/search-results.html" id="resultsPagePath"> <input type="hidden" name="accessToken" value="xxc839667d-dd5e-474e-b3ab-c84b434185fe" id="accessToken"> <input type="hidden" name="searchUrl" value="https://platform.cloud.coveo.com/rest/search" id="searchUrl"> <input type="hidden" name="searchWord" value="Search fields, contents, and more..." id="searchWord"> </div> </section> </div> <script type="text/javascript"> //This is to fix the issue with amlib and olib where there are multiple //standalone searchboxes on the same page. This disables all searchboxes //except the last one. coveo doesn't support instantiating multiple global //search boxes on the same page. $('body').find('.oclc-coveo-search:not(:last)').remove(); var searchResultsPage = $('#resultsPagePath').val(); var accessTokenVal = $('#accessToken').val(); var searchUrlVal = $('#searchUrl').val(); var searchWordVal = $('#searchWord').val(); document.addEventListener("DOMContentLoaded", function() { Coveo.SearchEndpoint.endpoints["default"] = new Coveo.SearchEndpoint({ restUri: searchUrlVal, accessToken: accessTokenVal }); var root = Coveo.$$(document).find("#searchbox"); if ("" != searchResultsPage && null != searchResultsPage) { Coveo.initSearchbox(root, searchResultsPage, { Searchbox: { placeholder: searchWordVal } }); } }); </script> </div> <div class="navigation section"> <nav id="navigation-3bf197f68d" class="cmp-navigation" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about.html">About</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield.html">Fixed Field</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints.html">Access Points</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx.html">0xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/1xx.html">1xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx.html">2xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx.html">3xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/4xx.html">4xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx.html">5xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx.html">6xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx.html">7xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx.html">8xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx.html">9xx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0 cmp-navigation__item--active"> <a aria-current="page" class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/controlsubfields.html">Control Subfields</a> </li> </ul> </nav> </div> </div> </div> </div> </div> </header> <div class="cont-page doc-container"> <section id="doc-nav"> <div class="interior-nav-list"> <div class="leftNavigation iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="leftNavigation iparsys parsys"><div class="navigation section"> <nav id="sub-navigation" class="cmp-navigation" itemscope itemtype="http://schema.org/SiteNavigationElement"> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about.html">About</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about/introduction.html">1 Introduction</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about/onlinecataloging.html">2 Online Cataloging</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about/specialcataloging.html">3 Special Cataloging Guidelines</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about/input.html">4 When to Input a New Record</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/about/quality.html">5 Quality Assurance</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield.html">Fixed Field</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/006.html">006 Introduction</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/accm.html">AccM</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/alph.html">Alph</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/audn.html">Audn</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/biog.html">Biog</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/blvl.html">BLvl</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/comp.html">Comp</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/conf.html">Conf</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/cont.html">Cont</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/crtp.html">CrTp</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/ctrl.html">Ctrl</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/ctry.html">Ctry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/dates.html">Dates</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/desc.html">Desc</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/dtst.html">DtSt</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/elvl.html">ELvl</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/entered.html">Entered</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/entw.html">EntW</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/fest.html">Fest</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/file.html">File</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/fmus.html">FMus</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/form.html">Form</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/freq.html">Freq</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/gpub.html">GPub</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/ills.html">Ills</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/indx.html">Indx</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/lang.html">Lang</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/litf.html">LitF</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/ltxt.html">LTxt</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/mrec.html">MRec</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/oclc.html">OCLC</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/orig.html">Orig</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/part.html">Part</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/proj.html">Proj</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/rec.html">Rec stat</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/regl.html">Regl</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/relf.html">Relf</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/replaced.html">Replaced</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/spfm.html">SpFm</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/srce.html">Srce</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/srtp.html">SrTp</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/succ.html">S/L</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/tech.html">Tech</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/time.html">Time</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/tmat.html">TMat</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/trar.html">TrAr</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/fixedfield/type.html">Type</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints.html">Access Points</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints/x00.html">Personal Names--General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints/x10.html">Corporate Names--General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints/x11.html">Meeting Names--General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints/x30.html">Preferred Titles--General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/accesspoints/subjects.html">Subjects--General Information</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx.html">0xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007.html">007 General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007table.html">007 Values Table </a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007comp.html">007 Electronic Resource</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007globe.html">007 Globe</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007kit.html">007 Kit</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007map.html">007 Map</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007micro.html">007 Microform</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007motio.html">007 Motion Picture</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007nonproj.html">007 Nonprojected Graphic</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007notmus.html">007 Notated Music</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007proj.html">007 Projected Graphic</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007remote.html">007 Remote-sensing Image</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007sound.html">007 Sound Recording</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007tact.html">007 Tactile Material</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007text.html">007 Text</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007unspec.html">007 Unspecified</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/007video.html">007 Videorecording</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/010.html">010 Library of Congress Control Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/012.html">012 CONSER Fixed Length Field</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/013.html">013 Patent Control Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/014.html">014 Linkage Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/015.html">015 National Bibliography Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/016.html">016 National Bibliographic Agency Control Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/017.html">017 Copyright or Legal Deposit Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/018.html">018 Copyright Article-Fee Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/019.html">019 OCLC Control Number Cross-Reference</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/020.html">020 International Standard Book Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/022.html">022 International Standard Serial Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/024.html">024 Other Standard Identifier</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/025.html">025 Overseas Acquisition Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/026.html">026 Fingerprint Identifier</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/027.html">027 Standard Technical Report Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/028.html">028 Publisher or Distributor Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/029.html">029 Other System Control Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/030.html">030 CODEN Designation</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/031.html">031 Musical Incipits Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/032.html">032 Postal Registration Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/033.html">033 Date/Time and Place of an Event</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/034.html">034 Coded Cartographic Mathematical Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/035.html">035 System Control Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/036.html">036 Original Study Number for Computer Data Files</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/037.html">037 Source of Acquisition</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/040.html">040 Cataloging Source</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/041.html">041 Language Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/042.html">042 Authentication Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/043.html">043 Geographic Area Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/044.html">044 Country of Publishing/Producing Entity Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/045.html">045 Time Period of Content</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/046.html">046 Special Coded Dates</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/047.html">047 Form of Musical Composition Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/048.html">048 Number of Instruments or Voices Codes</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/049.html">049 Local Holdings</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/050-099.html">050-099 Introduction to Call Numbers</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/050.html">050 Library of Congress Call Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/051.html">051 Library of Congress Copy, Issue, Offprint Statement</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/052.html">052 Geographic Classification</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/055.html">055 Classification Numbers Assigned in Canada</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/060.html">060 National Library of Medicine Call Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/061.html">061 National Library of Medicine Copy Statement</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/066.html">066 Character Sets Present</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/070.html">070 National Agricultural Library Call Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/071.html">071 National Agricultural Library Copy Statement</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/072.html">072 Subject Category Code</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/074.html">074 GPO Item Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/080.html">080 Universal Decimal Classification Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/082.html">082 Dewey Decimal Classification Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/083.html">083 Additional Dewey Decimal Classification Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/084.html">084 Other Classification Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/085.html">085 Synthesized Classification Number Components</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/086.html">086 Government Document Classification Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/088.html">088 Report Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/090.html">090 Locally Assigned LC-type Call Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/092.html">092 Locally Assigned Dewey Call Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/096.html">096 Locally NLM-type Call Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/098.html">098 Other Classification Schemes</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/0xx/099.html">099 Local Free-Text Call Number</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/1xx.html">1xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/1xx/100.html">100 Main Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/1xx/110.html">110 Main Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/1xx/111.html">111 Main Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/1xx/130.html">130 Main Entry--Uniform Title</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx.html">2xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/210.html">210 Abbreviated Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/222.html">222 Key Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/240.html">240 Uniform Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/242.html">242 Translation of Title by Cataloging Agency</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/243.html">243 Collective Uniform Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/245.html">245 Title Statement</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/246.html">246 Varying Form of Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/247.html">247 Former Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/250.html">250 Edition Statement</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/251.html">251 Version Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/254.html">254 Musical Presentation Statement</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/255.html">255 Cartographic Mathematical Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/256.html">256 Computer File Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/257.html">257 Country of Producing Entity</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/258.html">258 Philatelic Issue Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/260.html">260 Publication, Distribution, Etc. (Imprint)</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/263.html">263 Projected Publication Date</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/264.html">264 Production, Publication, Distribution, Manufacture, and Copyright Notice </a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/2xx/270.html">270 Address</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx.html">3xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/300.html">300 Physical Description</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/306.html">306 Playing Time</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/307.html">307 Hours, Etc.</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/310.html">310 Current Publication Frequency</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/321.html">321 Former Publication Frequency</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/334.html">334 Mode of Issuance </a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/335.html">335 Extension Plan</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/336.html">336 Content Type</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/337.html">337 Media Type</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/338.html">338 Carrier Type</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/340.html">340 Physical Medium</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/341.html">341 Accessibility Content</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/342.html">342 Geospatial Reference Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/343.html">343 Planar Coordinate Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/344.html">344 Sound Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/345.html">345 Moving Image Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/346.html">346 Video Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/347.html">347 Digital File Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/348.html">348 Notated Music Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/351.html">351 Organization and Arrangement of Materials</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/352.html">352 Digital Graphic Representation</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/353.html">353 Supplementary Content Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/355.html">355 Security Classification Control</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/357.html">357 Originator Dissemination Control</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/361.html">361 Structured Ownership and Custodial History</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/362.html">362 Dates of Publication and/or Sequential Designation</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/363.html">363 Normalized Date and Sequential Designation</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/365.html">365 Trade Price</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/366.html">366 Trade Availability Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/370.html">370 Associated Place</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/377.html">377 Associated Language</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/380.html">380 Form of Work</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/381.html">381 Other Distinguishing Characteristics of Work or Expression</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/382.html">382 Medium of Performance</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/383.html">383 Numeric Designation of Musical Work or Expression</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/384.html">384 Key</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/385.html">385 Audience Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/386.html">386 Creator/Contributor Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/387.html">387 Representative Expression Characteristics</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/3xx/388.html">388 Time Period of Creation</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/4xx.html">4xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/4xx/490.html">490 Series Statement</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx.html">5xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/500.html">500 General Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/501.html">501 With Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/502.html">502 Dissertation Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/504.html">504 Bibliography, Etc. Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/505.html">505 Formatted Contents Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/506.html">506 Restrictions on Access Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/507.html">507 Scale Note for Visual Materials</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/508.html">508 Creation/Production Credits Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/510.html">510 Citation/References Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/511.html">511 Participant or Performer Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/513.html">513 Type of Report and Period Covered Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/514.html">514 Data Quality Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/515.html">515 Numbering Peculiarities Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/516.html">516 Type of Computer File or Data Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/518.html">518 Date/Time and Place of an Event Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/520.html">520 Summary, Etc</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/521.html">521 Target Audience Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/522.html">522 Geographic Coverage Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/524.html">524 Preferred Citation of Described Materials Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/525.html">525 Supplement Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/526.html">526 Study Program Information Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/530.html">530 Additional Physical Form Available Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/532.html">532 Accessibility Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/533.html">533 Reproduction Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/534.html">534 Original Version Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/535.html">535 Location of Originals/Duplicates Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/536.html">536 Funding Information Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/538.html">538 System Details Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/539.html">539 Fixed-Length Data Elements of Reproduction Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/540.html">540 Terms Governing Use and Reproduction Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/541.html">541 Immediate Source of Acquisition Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/542.html">542 Information Relating to Copyright Status</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/544.html">544 Location of Other Archival Materials Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/545.html">545 Biographical or Historical Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/546.html">546 Language Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/547.html">547 Former Title Complexity Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/550.html">550 Issuing Body Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/552.html">552 Entity and Attribute Information Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/555.html">555 Cumulative Index/Findings Aids Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/556.html">556 Information About Documentation Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/561.html">561 Ownership and Custodial History</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/562.html">562 Copy and Version Identification Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/563.html">563 Binding Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/565.html">565 Case File Characteristics Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/567.html">567 Methodology Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/580.html">580 Linking Entry Complexity Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/581.html">581 Publications About Described Materials Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/583.html">583 Action Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/584.html">584 Accumulation and Frequency of Use Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/585.html">585 Exhibitions Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/586.html">586 Awards Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/588.html">588 Source of Description Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/590.html">590 Local Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/591.html">591-598 Local Note</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/5xx/599.html">599 Differentiable Local Note</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx.html">6xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/600.html">600 Subject Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/610.html">610 Subject Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/611.html">611 Subject Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/630.html">630 Subject Added Entry--Uniform Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/647.html">647 Subject Added Entry--Named Event</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/648.html">648 Subject Added Entry--Chronological Term</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/650.html">650 Subject Added Entry--Topical Term</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/651.html">651 Subject Added Entry--Geographic Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/653.html">653 Index Term--Uncontrolled</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/654.html">654 Subject Added Entry--Faceted Topical Terms</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/655.html">655 Index Term--Genre/Form</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/656.html">656 Index Term--Occupation</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/657.html">657 Index Term--Function</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/658.html">658 Index Term--Curriculum Objective</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/662.html">662 Subject Added Entry--Hierarchical Place Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/688.html">688 Subject Added Entry--Type of Entity Unspecified</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/690.html">690 Local Subject Added Entry--Topical Term</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/691.html">691 Local Subject Added Entry--Geographic Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/695.html">695 Added Class Number</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/696.html">696 Local Subject Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/697.html">697 Local Subject Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/698.html">698 Local Subject Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/6xx/699.html">699 Local Subject Added Entry--Uniform Title</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx.html">7xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/700.html">700 Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/710.html">710 Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/711.html">711 Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/720.html">720 Added Entry--Uncontrolled Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/730.html">730 Added Entry--Uniform Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/740.html">740 Added Entry--Uncontrolled Related/Analytical Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/751.html">751 Added Entry--Geographic Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/752.html">752 Added Entry--Hierarchical Place Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/753.html">753 System Details Access to Computer Files</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/754.html">754 Added Entry--Taxonomic Identification</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/758.html">758 Resource Identifier</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/76x-78x.html">76x-78x Linking Entry Fields--General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/760.html">760 Main Series Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/762.html">762 Subseries Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/765.html">765 Original Language Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/767.html">767 Translation Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/770.html">770 Supplement/Special Issue Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/772.html">772 Supplement Parent Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/773.html">773 Host Item Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/774.html">774 Constituent Unit Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/775.html">775 Other Edition Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/776.html">776 Additional Physical Form Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/777.html">777 Issued With Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/780.html">780 Preceding Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/785.html">785 Succeeding Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/786.html">786 Data Source Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/787.html">787 Other Relationship Entry</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/788.html">788 Parallel Description in Another Language of Cataloging</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/790.html">790 Local Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/791.html">791 Local Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/792.html">792 Local Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/793.html">793 Local Added Entry--Uniform Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/796.html">796 Local Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/797.html">797 Local Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/798.html">798 Local Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/7xx/799.html">799 Local Added Entry--Uniform Title</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx.html">8xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/800.html">800 Series Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/810.html">810 Series Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/811.html">811 Series Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/830.html">830 Series Added Entry--Uniform Title</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/84x-87x.html">84x-87x Holdings Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/850.html">850 Holding Institution</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/851.html">851 Physical Location</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/852.html">852 Location</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/853-855.html">853-855 Captions and Pattern--General Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/853.html">853 Captions and Pattern--Basic Bibliographic Unit</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/854.html">854 Captions and Pattern--Supplementary Material</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/855.html">855 Captions and Pattern--Indexes</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/856.html">856 Electronic Location and Access</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/857.html">857 Electronic Archive Location and Access</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/863-865.html">863-865 Enumeration and Chronology Fields</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/863.html">863 Enumeration and Chronology--Basic Bibliographic Unit</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/864.html">864 Enumeration and Chronology--Supplementary Material</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/865.html">865 Enumeration and Chronology--Indexes</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/866-868.html">866-868 Textual Holdings Statement Fields</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/866.html">866 Textual Holdings--Basic Bibliographic Unit</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/867.html">867 Textual Holdings--Supplementary Material</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/868.html">868 Textual Holdings--Indexes</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/876-878.html">876-878 Item Information Fields</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/876.html">876 Item Information--Basic Bibliographic Unit</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/877.html">877 Item Information--Supplementary Material</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/878.html">878 Item Information--Indexes</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/880.html">880 Alternate Graphic Representation</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/881.html">881 Manifestation Statements</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/882.html">882 Replacement Record Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/883.html">883 Metadata Provenance</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/884.html">884 Description Conversion Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/885.html">885 Matching Information</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/886.html">886 Foreign MARC Information Field</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/887.html">887 Non-MARC Information Field</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/891.html">891 Publication Pattern Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/896.html">896 Local Series Added Entry--Personal Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/897.html">897 Local Series Added Entry--Corporate Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/898.html">898 Local Series Added Entry--Meeting Name</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/8xx/899.html">899 Local Series Added Entry--Uniform Title</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx.html">9xx</a> <ul class="cmp-navigation__group"> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907 Local Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/910.html">910 Local Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/936.html">936 CONSER/OCLC Miscellaneous Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/938.html">938 Vendor-Specific Ordering Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949 Local Data</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/956.html">956 Local Electronic Location and Access</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/987.html">987 Local Romanization/Conversion History</a> </li> <li class="cmp-navigation__item cmp-navigation__item--level-1"> <a class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/9xx/994.html">994 OCLC-MARC Transaction Code</a> </li> </ul> </li> <li class="cmp-navigation__item cmp-navigation__item--level-0 cmp-navigation__item--active"> <a aria-current="page" class="cmp-navigation__item-link" href="https://www.oclc.org/bibformats/en/controlsubfields.html">Control Subfields</a> </li> </ul> </nav> </div> </div> </div> </div> <div class="subscriptionArea iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="subscriptionArea iparsys parsys"></div> </div> </div> <div class="nextSteps iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="nextSteps iparsys parsys"></div> </div> </div> <div class="leftpar parsys"> </div> </div> </section> <main id="doc-content"> <article id="doc-content-pad"> <div class="beforeContent iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="beforeContent iparsys parsys"></div> </div> </div> <div class="par parsys"><div class="text parbase section"> <h1>Control Subfields <br /> </h1> </div> <div class="text parbase section"> <div> <a name="controlsubfields" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a> <table class="fieldsummary" width="580" cellspacing="0"> <tbody> <tr> <td colspan="3" align="left"><h3>Record Type</h3> </td> </tr> <tr> <td colspan="3" align="left"><p>BIB, LBD, LHR</p> </td> </tr> <tr> <td colspan="3" align="left"><h3>Input Standards</h3> </td> </tr> <tr> <td colspan="2" align="left"><strong>Subfields</strong> (R=Repeatable  NR=Nonrepeatable)</td> <td align="left"><strong>Input Standards</strong> (Full/Minimal)</td> </tr> <tr> <td align="left"><a href="#subfieldu">ǂu</a></td> <td align="left"><a href="#subfieldu">Uniform Resource Identifier (NR)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfieldw">ǂw</a></td> <td align="left"><a href="#subfieldw">Bibliographic record control number (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfieldx">ǂx</a></td> <td align="left"><a href="#subfieldx">International Standard Serial Number (NR)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfieldz">ǂz</a></td> <td align="left"><a href="#subfieldz">International Standard Book Number (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield0">ǂ0</a></td> <td align="left"><a href="#subfield0">Authority record control number or standard number (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield1">ǂ1</a></td> <td align="left"><a href="#subfield1">Real World Object URI (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield2">ǂ2</a></td> <td align="left"><a href="#subfield2">Source (NR)</a></td> <td align="left">Required if applicable/Required if applicable</td> </tr> <tr> <td align="left"><a href="#subfield3">ǂ3</a></td> <td align="left"><a href="#subfield3">Materials specified (NR)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield4">ǂ4</a></td> <td align="left"><a href="#subfield4">Relationship (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield5">ǂ5</a></td> <td align="left"><a href="#subfield5">Institution to which field applies (NR)</a></td> <td align="left">Required if applicable/Required if applicable</td> </tr> <tr> <td align="left"><a href="#subfield6">ǂ6</a></td> <td align="left"><a href="#subfield6">Linkage (NR)</a></td> <td align="left">System supplied/System supplied</td> </tr> <tr> <td align="left"><a href="#subfield7">ǂ7</a></td> <td align="left"><a href="#subfield7">Control subfield (NR)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield8">ǂ8</a></td> <td align="left"><a href="#subfield8">Field link and sequence number (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield9">ǂ9</a></td> <td align="left"><a href="#subfield9">Special entry (NR)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td colspan="2" align="left"><a href="#subfielddp"><strong>Data Provenance Subfields</strong></a> (R=Repeatable  NR=Nonrepeatable)</td> <td align="left"><strong>Input Standards</strong> (Full/Minimal)</td> </tr> <tr> <td align="left"><a href="#subfieldedp">ǂe</a></td> <td align="left"><a href="#subfieldedp">Data provenance (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfieldldp">ǂl</a></td> <td align="left"><a href="#subfieldldp">Data provenance (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfieldydp">ǂy</a></td> <td align="left"><a href="#subfieldydp">Data provenance (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td align="left"><a href="#subfield7dp">ǂ7</a></td> <td align="left"><a href="#subfield7dp">Data provenance (R)</a></td> <td align="left">Optional/Optional</td> </tr> <tr> <td colspan="3"><em>[For lists of fields where these subfields are valid, see each subfield section below. Name, repeatability, and input standards may vary from field to field. For more information on variations in name, repeatability, and input standards, see the individual fields.]</em></td> </tr> </tbody> </table> <br /> <hr /> <table class="bfaslayouttable"> <tbody> <tr> <td width="90" align="left"><h3>Definition</h3> </td> <td><p>The subfields included here are used to provide various identifiers, relationships, and sources of terms and codes. They are also used to provide links to other bibliographic records, specific institutions, and other fields within a single bibliographic record. These subfields are defined for many fields throughout the format. However, their descriptions are brought together on this page. These subfields are included in the field-level descriptions elsewhere in this document with links to this page.</p> </td> </tr> <tr> <td width="90" align="left"><h3>Subfields</h3> </td> <td valign="top"> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfieldu" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂu Uniform Resource Identifier</span></td> <td valign="top"><p>For fields where subfield ǂu is defined as the Uniform Resource Identifier (URI), subfield ǂu contains a URI, such as a Uniform Resource Location (URL) or Uniform Resource Name (URN), which provides electronic access to a resource in a standard syntax. This information is used for automated access to an electronic item using one of the Internet protocols or by resolution of a URN. With the exception of fields 856 and 956, subfield ǂu appears with other control subfields grouped at the end of the field.</p> <p>With the exceptions of fields 856, 880, 901-907, 945-949, and 956, subfield ǂu is generally used to link to value-added external or supplementary information such as audio or notational files in field 031, a table of contents in field 505, a bibliography citation in field 510, an abstract in field 520, or a description of the automated process that produced the data in fields 883 and 884. In many of these cases, subfield ǂu may be used in place of other data ordinarily found in that particular field. Do <strong>not </strong>change an existing field to remove data so that it is represented solely by a URI. Subfield ǂu may also be used to provide details to augment what is stated in other subfields.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">505</td> <td width="10" align="right">0<br /> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂu http://lcweb.loc.gov/catdir/toc/99176484.html</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">505</td> <td width="10" align="right">0<br /> </td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt What's wrong with how we live? -- ǂt Kind deeds are never lost -- ǂt An hour early -- ǂt Helping others -- ǂt If you're going to do a job -- ǂt Lessons on character -- ǂt Stand! ǂu http://catdir.loc.gov/catdir/toc/ecip0613/2006013643.html</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">520</td> <td width="10" align="right">3</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂu http://www.ojp.usdoj.gov/bjs/abstract_cchrie98.htm</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">520</td> <td width="10" align="right">4</td> <td width="17" align="left"> </td> <td width="90%" align="left">"Happy Feet" may be too much for many kids younger than 7 and some younger than 8. (Know how well your child separates animated fantasy from reality.) ǂc Family Filmgoer. ǂu http://www.washingtonpost.com/wp-dyn/content/article/2006/11/16/AR2006111600269.html</td> </tr> </tbody> </table> <p><strong>Hexadecimal notation for diacritics and special characters.</strong> When recording a URI in subfield ǂu, you may enter most of the spacing characters listed in the table below as either characters or their hexadecimal equivalents. Do <strong>not</strong> confuse the spacing characters with their non-spacing counterparts. Use of the spacing characters will be limited almost exclusively to URLs.</p> <table class="datatable" cellspacing="0" cellpadding="6" border="1"> <tbody> <tr> <td class="shade" align="left"><strong>Entry method</strong></td> <td class="shade" align="left"><strong>Name</strong></td> <td class="shade" align="left"><strong>Character</strong></td> <td class="shade" align="left"><strong>Alternative entry (hexadecimal value)</strong></td> </tr> <tr> <td rowspan="4" align="left">Enter the character or hexadecimal value</td> <td align="left">Spacing circumflex</td> <td align="left">^</td> <td align="left">%5E</td> </tr> <tr> <td align="left">Spacing underscore</td> <td align="left">_</td> <td align="left">%5F</td> </tr> <tr> <td align="left">Spacing grave</td> <td align="left">`</td> <td align="left">%60</td> </tr> <tr> <td align="left">Spacing tilde</td> <td align="left">~</td> <td align="left">%7E</td> </tr> <tr> <td align="left">Enter the hexadecimal value only</td> <td align="left">Vertical bar</td> <td align="left">N/A</td> <td align="left">%7C</td> </tr> </tbody> </table> <p>Subfield ǂu defined as the URI is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/031.html">031</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/5xx/505.html">505</a>, <a href="https://www.oclc.org/bibformats/en/5xx/506.html">506</a>, <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a>, <a href="https://www.oclc.org/bibformats/en/5xx/514.html">514</a>, <a href="https://www.oclc.org/bibformats/en/5xx/520.html">520</a>, <a href="https://www.oclc.org/bibformats/en/5xx/530.html">530</a>, <a href="https://www.oclc.org/bibformats/en/5xx/538.html">538</a>, <a href="https://www.oclc.org/bibformats/en/5xx/540.html">540</a>, <a href="https://www.oclc.org/bibformats/en/5xx/542.html">542</a>, <a href="https://www.oclc.org/bibformats/en/5xx/545.html">545</a>, <a href="https://www.oclc.org/bibformats/en/5xx/552.html">552</a>, <a href="https://www.oclc.org/bibformats/en/5xx/555.html">555</a>, <a href="https://www.oclc.org/bibformats/en/5xx/561.html">561</a>, <a href="https://www.oclc.org/bibformats/en/5xx/563.html">563</a>, <a href="https://www.oclc.org/bibformats/en/8xx/852.html">852</a>, <a href="https://www.oclc.org/bibformats/en/8xx/856.html">856</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/883.html">883</a>, <a href="https://www.oclc.org/bibformats/en/8xx/884.html">884</a>, and <a href="https://www.oclc.org/bibformats/en/9xx/956.html">956</a>. Additionally, subfield ǂu can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">510</td> <td width="10" align="right">4</td> <td width="17" align="left"> </td> <td width="90%" align="left">Bibliothèque nationale de France. BnF catalogue général, ǂc FRBNF33992002 ǂu http://catalogue.bnf.fr/ark:/12148/cb33992002c/</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">520</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">"A fresh and concise look at Anatolian carpets from the 14th to the 20th centuries, including some of the oldest surviving examples of Turkish carpets. Turkish rugs have been a part of European culture since the 14th century. Far more embedded in the Western consciousness than any other carpet type, they are among the most sought-after of all rugs by museums and collectors today. This book draws on the unparalleled collection at Washington's Textile Museum, as well as from other museums and private collections, dealing with issues such as history, lineage, design origins, and meaning across the whole spectrum of Turkish carpet weaving." ǂu http://books.google.com/books?id=U1A4AAAAMAAJ</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">545<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">Physician, of Fremont, Ohio; served as surgeon with 10th and 72nd Ohio Volunteers during Civil War; after the war resumed medical practice in association with his brother Dr. Robert H. Rice; served one term as state legislator (1880); founder of Trommer Extract of Malt Co. in 1875; U.S. representative from Ohio, 1881-1883 ǂu http://bioguide.congress.gov/scripts/biodisplay.pl?index=R000199</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">555<br /> </td> <td width="10" align="right">8</td> <td width="17" align="left"> </td> <td width="90%" align="left">Finding aid available from the Kansas Historical Society (Topeka) and on its website: ǂu http://www.kshs.org</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">856<br /> </td> <td width="10" align="right">4</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂ3 MyiLibrary ǂu http://www.myilibrary.com?id=74138</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfieldw" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂw Bibliographic record control number</span></td> <td valign="top"><p>For fields where subfield ǂw is defined as the bibliographic record control number, subfield ǂw contains the system control number of the bibliographic resource referenced in the field. The name of subfield ǂw is <em>Record control number</em> in <a href="https://www.oclc.org/bibformats/en/7xx/76x-78x.html">fields 760-787</a>. The control number is preceded by the applicable MARC organization code enclosed in parentheses. See <em><a href="http://www.loc.gov/marc/organizations/orgshome.html">MARC Code List for Organizations</a></em>, which also includes links to Canadian, United Kingdom, and German MARC organization code lists. Subfield ǂw appears with other control subfields grouped at the end of the field.</p> <p>Generally include subfield ǂw only when the cited record control number relates to another bibliographic record with the same language of cataloging as indicated in <a href="https://www.oclc.org/bibformats/en/0xx/040.html">field 040</a> subfield ǂb. For <a href="https://www.oclc.org/bibformats/en/7xx/788.html">field 788</a>, the language of cataloging must differ from the language of cataloging as indicated in field 040 subfield ǂb.</p> <p>In WorldCat, subfield ǂw may be used to cite record control numbers for the Library of Congress, OCLC, national libraries, and other national level bibliographic networks. Subfield ǂw may be repeated when multiple record control numbers apply.</p> <p>Do <strong>not</strong> include local system control numbers in subfield ǂw in WorldCat records.</p> <p>Subfield ǂw defined as the bibliographic record control number is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/885.html">885</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂw can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <p><strong>Library of Congress control numbers</strong></p> <p>The Library of Congress control number (LCCN) in subfield ǂw corresponds to subfield ǂa in <a href="https://www.oclc.org/bibformats/en/0xx/010.html">field 010</a> of the related record. The form input in subfield ǂw is a machine-readable form of the LCCN. There are differences in how the pre-2001 and post-2000 formats of the LCCN are recorded in subfield ǂw.</p> <p><em>LCCN Pre-2001 format</em></p> <ul> <li>Enter the MARC organization code for the Library of Congress enclosed in parentheses, i.e., <em>(DLC)</em><br /> </li> <li>Enter the one-to-three character prefix followed by <em>blanks</em> if fewer than three characters; input three <em>blanks</em> if there is no prefix</li> <li>Enter the two-digit year</li> <li>Omit any separating hyphens</li> <li>Input the six-digit serial number including leading <em>zeros</em> if the number is shorter than six digits</li> <li>Omit the trailing <em>blank</em> following the number<br /> </li> <li>Omit any trailing alphabetic identifiers and revision dates</li> </ul> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂt Inter-American economic affairs. ǂg Vol. 39, no. 3 (winter 1985) ǂx 0020-4943 ǂw (DLC)   50001412 ǂw (OCoLC)1695997</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780</td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Review of existential psychology & psychiatry ǂx 0034-656X ǂw (DLC)sf 77000170 ǂw (OCoLC)1604704</td> </tr> </tbody> </table> <table class="structuredexample" width="692" height="18" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Baltic States & Kaliningrad ǂw (DLC)   95640966 ǂw (OCoLC)30120781</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">785<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Bread and other bakery products ǂx 0575-7967 ǂw (CaOONL)840791186E ǂw (DLC)ce 84079118 ǂw (OCoLC)2443810</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">810</td> <td width="10" align="right">2</td> <td width="17" align="left"> </td> <td width="90%" align="left">Union College (Schenectady, N.Y.). ǂt Union College bulletin ǂw (DLC)sn 98030203 ǂw (OCoLC)7667173</td> </tr> </tbody> </table> <p><em>LCCN Post-2000 format</em></p> <ul> <li>Enter the MARC organization code for the Library of Congress enclosed in parentheses, i.e., <em>(DLC)</em></li> <li>Enter the one-to-two character prefix followed by a <em>blank</em> if fewer than two characters; input two <em>blanks</em> if there is no prefix</li> <li>Enter the four-digit year</li> <li>Omit any separating hyphens</li> <li>Input the six-digit serial number including leading <em>zeros</em> if the number is shorter than six digits</li> </ul> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">776<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Print version: ǂa Hermann, R. L. (Richard Lee). ǂt Landing a federal legal job. ǂd Chicago : American Bar Association, ©2011 ǂz 9781616328351 ǂz 1616328355 ǂw (DLC)  2011000115 ǂw (OCoLC)697153049</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">Public Utilities Commission of Nevada. ǂt Biennial report ǂw (DLC)  2001202263 ǂw (OCoLC)42671476</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">785<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Freedom watch (Toronto, Ont.) ǂw (DLC)cn2001390000 ǂw (OCoLC)45400852</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">785<br /> </td> <td width="10" align="right">0<br /> </td> <td width="17" align="left">0<br /> </td> <td width="90%" align="left">ǂt Estonia, Latvia & Lithuania ǂw (DLC)  2001207682 ǂw (OCoLC)37940120</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Functional foods & nutraceuticals series ; ǂv no. 8 ǂx 2380-0720 ǂw (DLC)  2015202562 ǂw (OCoLC)64385353</td> </tr> </tbody> </table> <p><strong>OCLC control numbers</strong></p> <ul> <li>Enter the MARC organization code for OCLC enclosed in parentheses, i.e., <em>(OCoLC)</em></li> <li>Omit any number signs or prefixes<br /> </li> <li>Enter the OCLC control number of the related record without any spaces between the designation <em>(OCoLC)</em> and the control number</li> </ul> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂt Traffic quarterly. ǂg Vol. 33, no. 4 (Oct. 1979) ǂx 0041-0713 ǂw (DLC)   50001781 ǂw (OCoLC)1695558</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">776<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Online version: ǂa Duggar, Benjamin M. (Benjamin Minge), 1872-1956. ǂt Plant physiology. ǂd New York : The Macmillan Company, 1911 ǂw (OCoLC)894094040</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt ECPER journal for political and economic studies ǂx 1117-2096 ǂw (DLC)  94643577 ǂw (OCoLC)30008846</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">787<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Complemented by (work): ǂt Career education review. Features & reports ǂx 1546-5543 ǂw (DLC)sn 99017010 ǂw (OCoLC)40704688</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830</td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">International criminal justice series ; ǂv v. 1 ǂw (OCoLC)900039145</td> </tr> </tbody> </table> <p><strong>Other control numbers</strong></p> <ul> <li>Enter the applicable MARC organization code enclosed in parentheses, e.g., <em>(CaOONL)</em></li> <li>Enter the control number of the related record without any spaces between the parenthetical designation and the control number</li> </ul> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">Lester B. Pearson College of the Pacific. ǂt Pearson times quarterly ǂx 1497-2867 ǂw (CaOONL)2001300073X ǂw (DLC)cn2001300073 ǂw (OCoLC)45787178</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Saskatchewan Chinese directory & telephone book ǂx 0316-7054 ǂw (CaOONL)750318325 ǂw (DLC)cn 75031832 ǂw (OCoLC)2247778</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">785</td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Renaissance contemporaine ǂx 1624-3676 ǂw (FrPBN)31568781</td> </tr> <tr> <td colspan="4"><em>[Item cataloged in French (i.e., </em>040 ǂb fre<em>) with a control number link for the related record in the database of the Bibliothèque nationale de France]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Acta anatomica ; ǂv Vol. 111, No. 1/2 ǂx 0001-5180 ǂw (DE-101)010000380</td> </tr> <tr> <td colspan="4"><em>[Item cataloged in German (i.e., </em>040 ǂb ger<em>) with a control number link for the related record in the database of the Deutsche Nationalbibliothek]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830</td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Analytical spectroscopy library ; ǂv vol. 1 ǂx 0926-4345 ǂw (NL-LeOCL)036007773 ǂw (OCoLC)906565284</td> </tr> <tr> <td colspan="4"><em>[Item cataloged in Dutch (i.e., </em>040 ǂb dut<em>) with a control number link for the related record in the Gemeenschappelijk Geautomatiseerd Catalogiseersysteem]</em></td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfieldx" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂx International Standard Serial Number</span></td> <td><p>For fields where subfield ǂx is defined as the International Standard Serial Number (ISSN), subfield ǂx contains the ISSN for the continuing bibliographic resource referenced in the field. Enter the ISSN as two groups of four digits, separated by a hyphen.<strong> </strong>If the final character is a lowercase <em>x</em>, enter an uppercase <em>X</em>. Do <strong>not</strong> enter the caption <em>ISSN</em> in subfield ǂx. With the exception of fields <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a> and <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a> where subfield ǂx is a part of the recorded data, subfield ǂx appears with other control subfields grouped at the end of the field. For more information about the ISSN, see <a href="https://www.oclc.org/bibformats/en/0xx/022.html">field 022</a>.</p> <p>Subfield ǂx defined as the ISSN is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a>, <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a>, <a href="https://www.oclc.org/bibformats/en/5xx/534.html">534</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂx can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">490</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Cornell University East Asia papers, ǂx 8756-5293 ; ǂv no. 40</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">510</td> <td width="10" align="right">0<br /> </td> <td width="17" align="left"> </td> <td width="90%" align="left">Chemical abstracts, ǂx 0009-2258</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">730</td> <td width="10" align="right">0</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂi Supplement to (work): ǂa American journal of psychiatry ǂx 0002-953X</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780</td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Atlantic (Boston, Mass. : 1981) ǂx 0276-9077 ǂw (DLC)   82644383 ǂw (OCoLC)7320717</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830</td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Marchés nouveaux ; ǂv no 16 ǂx 0150-7605 ǂw (DLC)  2003255047 ǂw (OCoLC)52407450</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfieldz" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂz International Standard Book Number</span></td> <td><p>For fields where subfield ǂz is defined as the International Standard Book Number (ISBN), subfield ǂz contains the ISBN for the bibliographic resource referenced in the field. Enter the 10- and/or 13-digit ISBN without any hyphens, periods, or spaces. If the final character is a lowercase <em>x,</em> enter an uppercase <em>X</em>. Omit any qualifiers or price information. Do <strong>not</strong> enter the caption <em>ISBN</em> in subfield ǂz. Subfield ǂz appears with other control subfields grouped at the end of the field. For more information about the ISBN, see <a href="https://www.oclc.org/bibformats/en/0xx/020.html">field 020</a>.</p> <p>Subfield ǂz defined as the ISBN is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/5xx/534.html">534</a>, <a href="https://www.oclc.org/bibformats/en/5xx/556.html">556</a>, <a href="https://www.oclc.org/bibformats/en/5xx/581.html">581</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>. Additionally, subfield ǂz can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">534</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂp Reprint. Originally published: ǂc Dordrecht : Springer, ©2006 ǂz 1402046790 ǂz 9781402046797</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂa Highway and Urban Environment Symposium (9th : 2008 : Madrid, Spain). ǂt Highway and urban environment. ǂd Dordrecht : Springer, ©2010 ǂz 9789048130429 ǂz 9048130425 ǂw (DLC)  2009940201 ǂw (OCoLC)401154018 ǂ7 m2am</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">776</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Print version: ǂt Yindu shi chang jing ji ti zhi. ǂd Lanzhou : Lanzhou da xue chu ban she, 1994 ǂz 7311007305 ǂz 9787311007300 ǂw (OCoLC)122969821</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">780</td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">Zuckerman, Tod I. ǂt Environmental insurance litigation ǂz 0071723455 ǂz 9780071723459 ǂw (OCoLC)180778604</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">785</td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt Law of evidence in Washington. ǂb Fourth edition ǂz 032716283X ǂz 9780327162834 ǂw (OCoLC)52338945</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield0" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ0 Authority record control number or standard number</span></td> <td><p>Subfield ǂ0 contains the system control number of the related authority or classification record, or a standard identifier such as an International Standard Name Identifier (ISNI). These identifiers may be in the form of text or a URI. If the identifier is text, the control number or identifier is preceded by the applicable MARC Organization code (for a related authority record) or the Standard Identifier source code (for a standard identifier scheme), enclosed in parentheses. When the identifier is given in the form of a Web retrieval protocol, e.g., HTTP URI, no preceding parenthetical is used.</p> <p>For a listing of organization codes, see <em><a href="http://www.loc.gov/marc/organizations/orgshome.html">MARC Code List for Organizations</a></em>, which also includes links to Canadian, United Kingdom, and German MARC Organization Code lists. For a listing of standard identifiers, see <em><a href="http://www.loc.gov/standards/sourcelist/standard-identifier.html">Standard Identifier Source Codes</a></em>. Subfield ǂ0 is repeatable for different control numbers or identifiers. Subfield ǂ0 usually appears with other control subfields grouped at the end of the field.</p> <p>Include subfield ǂ0 in an access point field (1xx, 6xx, 7xx, or 8xx) only when it refers to the entity represented by the full access point.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">650</td> <td width="10" align="right"> </td> <td width="17" align="left">1</td> <td width="90%" align="left">Birds ǂx Protection ǂ0 http://id.loc.gov/authorities/childrensSubjects/sj96004917</td> </tr> <tr> <td colspan="4"><em>[CYAC subject access point with a URI that identifies the label Birds--Protection]</em></td> </tr> </tbody> </table> <p>Use of OCLC's control headings functionality in the 1xx, 7xx, and 8xx descriptive access point fields and in the 6xx subject access point fields will remove all instances of subfield ǂ0 in the case of names and subjects controlled to the LC/NACO and LCSH authority files. For access point fields where the control heading functionality is available related to other authority files, the control headings functionality will remove all instances of subfield ǂ0 other than the one linking to the authority record to which the access point is controlled.</p> <p>Use of OCLC's control headings functionality is preferable to manually entering subfield ǂ0 in cases where the access point can be controlled to a particular authority file. You may enter other applicable identifiers in subfield ǂ0 such as the International Standard Name Identifier (ISNI) or the Open Researcher and Contributor ID (ORCID) in access points which are not controlled to any associated authority file record. However, such identifiers will be removed if the access point is subsequently controlled to a record in an associated authority file.</p> <p>Local authority record control numbers may be entered in subfield ǂ0 locally. Do <strong>not</strong> add local authority record control numbers to WorldCat records.</p> <p>Subfield ǂ0 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/022.html">022</a>, <a href="https://www.oclc.org/bibformats/en/0xx/033.html">033</a>, <a href="https://www.oclc.org/bibformats/en/0xx/034.html">034</a>, <a href="https://www.oclc.org/bibformats/en/0xx/043.html">043</a>, <a href="https://www.oclc.org/bibformats/en/0xx/050.html">050</a>, <a href="https://www.oclc.org/bibformats/en/0xx/052.html">052</a>, <a href="https://www.oclc.org/bibformats/en/0xx/055.html">055</a>, <a href="https://www.oclc.org/bibformats/en/0xx/060.html">060</a>, <a href="https://www.oclc.org/bibformats/en/0xx/070.html">070</a>, <a href="https://www.oclc.org/bibformats/en/0xx/080.html">080</a>, <a href="https://www.oclc.org/bibformats/en/0xx/082.html">082</a>, <a href="https://www.oclc.org/bibformats/en/0xx/083.html">083</a>, <a href="https://www.oclc.org/bibformats/en/0xx/084.html">084</a>, <a href="https://www.oclc.org/bibformats/en/0xx/085.html">085</a>, <a href="https://www.oclc.org/bibformats/en/0xx/086.html">086</a>, <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/1xx/130.html">130</a>, <a href="https://www.oclc.org/bibformats/en/2xx/240.html">240</a>, <a href="https://www.oclc.org/bibformats/en/2xx/251.html">251</a>, <a href="https://www.oclc.org/bibformats/en/2xx/257.html">257</a>, <a href="https://www.oclc.org/bibformats/en/3xx/310.html">310</a>, <a href="https://www.oclc.org/bibformats/en/3xx/321.html">321</a>, <a href="https://www.oclc.org/bibformats/en/3xx/334.html">334</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/337.html">337</a>, <a href="https://www.oclc.org/bibformats/en/3xx/338.html">338</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/341.html">341</a>, <a href="https://www.oclc.org/bibformats/en/3xx/344.html">344</a>, <a href="https://www.oclc.org/bibformats/en/3xx/345.html">345</a>, <a href="https://www.oclc.org/bibformats/en/3xx/346.html">346</a>, <a href="https://www.oclc.org/bibformats/en/3xx/347.html">347</a>, <a href="https://www.oclc.org/bibformats/en/3xx/348.html">348</a>, <a href="https://www.oclc.org/bibformats/en/3xx/353.html">353</a>, <a href="https://www.oclc.org/bibformats/en/3xx/361.html">361</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/384.html">384</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/387.html">387</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/567.html">567</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/653.html">653</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/6xx/656.html">656</a>, <a href="https://www.oclc.org/bibformats/en/6xx/657.html">657</a>, <a href="https://www.oclc.org/bibformats/en/6xx/658.html">658</a>, <a href="https://www.oclc.org/bibformats/en/6xx/662.html">662</a>, <a href="https://www.oclc.org/bibformats/en/6xx/688.html">688</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/720.html">720</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/752.html">752</a>, <a href="https://www.oclc.org/bibformats/en/7xx/753.html">753</a>, <a href="https://www.oclc.org/bibformats/en/7xx/754.html">754</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/883.html">883</a>, <a href="https://www.oclc.org/bibformats/en/8xx/885.html">885</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ0 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Childress, Eric, ǂe author ǂ1 https://isni.org/isni/0000000043605828 ǂ1 https://orcid.org/0000-0002-7442-635X ǂ0 (viaf)36648407</td> </tr> <tr> <td colspan="4"><em>[Item cataloged in English (i.e., </em>040 ǂb eng<em>) with an uncontrolled access point with ISNI, ORCID, and VIAF standard identifiers]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">348<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">score ǂ2 rdafnm ǂ0 http://rdaregistry.info/termList/formatNoteMus/1007</td> </tr> <tr> <td colspan="4"><em>[Vocabulary term with a link to RDA Format of Notated Music list]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">650</td> <td width="10" align="right"> </td> <td width="17" align="left">7</td> <td width="90%" align="left">Local transit ǂx Ridership ǂ2 fast ǂ0 (OCoLC)fst01001631</td> </tr> <tr> <td colspan="4"><em>[FAST topical subject access point with the control number of the related FAST authority record]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">655</td> <td width="10" align="right"> </td> <td width="17" align="left">7</td> <td width="90%" align="left">Life simulation video games ǂ2 olacvggt ǂ0 http://metadataregistry.org/uri/olac/1041</td> </tr> <tr> <td colspan="4"><em>[Genre term with a link to OLAC's Videogame Genre Form Terms]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">700</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Park, Robert Ezra, ǂd 1864-1944 ǂ0 (NL-LeOCL)069017557</td> </tr> <tr> <td colspan="4"><em>[Item cataloged in Dutch (i.e., </em>040 ǂb dut<em>) with an access point controlled to a record in the NTA Names (Dutch) authority file]</em></td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield1" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ1 Real World Object URI</span></td> <td><p>Subfield ǂ1 contains a Uniform Resource Identifier (URI) that identifies an entity, sometimes referred to as a Thing or Real World Object (RWO), whether actual or conceptual. When dereferenced, the URI points to a description of that entity. A URI that identifies a name or label for an entity is contained in ǂ0.</p> <p>Subfield ǂ1 is repeatable for different URIs. Subfield ǂ1 usually appears with other control subfields grouped at the end of the field.</p> <p>Include subfield ǂ1 in an access point field (1xx, 6xx, 7xx, or 8xx) only when it refers to the entity represented by the full access point.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">600</td> <td width="10" align="right">1</td> <td width="17" align="left">0</td> <td width="90%" align="left">Bourgeois, Louise, ǂd 1911-2010. ǂt Spider ǂ1 http://viaf.org/viaf/189375084</td> </tr> <tr> <td colspan="4"><em>[Subject access point with a URI that identifies the sculpture by Louise Bourgeois]</em></td> </tr> </tbody> </table> <p>Subfield ǂ1 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/022.html">022</a>, <a href="https://www.oclc.org/bibformats/en/0xx/033.html">033</a>, <a href="https://www.oclc.org/bibformats/en/0xx/034.html">034</a>, <a href="https://www.oclc.org/bibformats/en/0xx/043.html">043</a>, <a href="https://www.oclc.org/bibformats/en/0xx/050.html">050</a>, <a href="https://www.oclc.org/bibformats/en/0xx/052.html">052</a>, <a href="https://www.oclc.org/bibformats/en/0xx/055.html">055</a>, <a href="https://www.oclc.org/bibformats/en/0xx/060.html">060</a>, <a href="https://www.oclc.org/bibformats/en/0xx/070.html">070</a>, <a href="https://www.oclc.org/bibformats/en/0xx/080.html">080</a>, <a href="https://www.oclc.org/bibformats/en/0xx/082.html">082</a>, <a href="https://www.oclc.org/bibformats/en/0xx/083.html">083</a>, <a href="https://www.oclc.org/bibformats/en/0xx/084.html">084</a>, <a href="https://www.oclc.org/bibformats/en/0xx/085.html">085</a>, <a href="https://www.oclc.org/bibformats/en/0xx/086.html">086</a>, <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/1xx/130.html">130</a>, <a href="https://www.oclc.org/bibformats/en/2xx/240.html">240</a>, <a href="https://www.oclc.org/bibformats/en/2xx/251.html">251</a>, <a href="https://www.oclc.org/bibformats/en/2xx/257.html">257</a>, <a href="https://www.oclc.org/bibformats/en/3xx/310.html">310</a>, <a href="https://www.oclc.org/bibformats/en/3xx/321.html">321</a>, <a href="https://www.oclc.org/bibformats/en/3xx/334.html">334</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/337.html">337</a>, <a href="https://www.oclc.org/bibformats/en/3xx/338.html">338</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/341.html">341</a>, <a href="https://www.oclc.org/bibformats/en/3xx/344.html">344</a>, <a href="https://www.oclc.org/bibformats/en/3xx/345.html">345</a>, <a href="https://www.oclc.org/bibformats/en/3xx/346.html">346</a>, <a href="https://www.oclc.org/bibformats/en/3xx/347.html">347</a>, <a href="https://www.oclc.org/bibformats/en/3xx/348.html">348</a>, <a href="https://www.oclc.org/bibformats/en/3xx/353.html">353</a>, <a href="https://www.oclc.org/bibformats/en/3xx/361.html">361</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/384.html">384</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/387.html">387</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/567.html">567</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/653.html">653</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/6xx/656.html">656</a>, <a href="https://www.oclc.org/bibformats/en/6xx/657.html">657</a>, <a href="https://www.oclc.org/bibformats/en/6xx/658.html">658</a>, <a href="https://www.oclc.org/bibformats/en/6xx/662.html">662</a>, <a href="https://www.oclc.org/bibformats/en/6xx/690.html">690</a>, <a href="https://www.oclc.org/bibformats/en/6xx/691.html">691</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/720.html">720</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/752.html">752</a>, <a href="https://www.oclc.org/bibformats/en/7xx/753.html">753</a>, <a href="https://www.oclc.org/bibformats/en/7xx/754.html">754</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/883.html">883</a>, <a href="https://www.oclc.org/bibformats/en/8xx/885.html">885</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ1 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Obama, Michelle, ǂd 1964- ǂe author ǂ1 http://viaf.org/viaf/81404344</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Jemison, Mae, ǂd 1965- ǂe author ǂ1 http://id.loc.gov/rwo/agents/n95004729</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield2" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ2 Source</span></td> <td><p>Subfield ǂ2 contains a code that identifies the source document or list from which numbers, terms, or codes appearing in the field were assigned. The name and definition of subfield ǂ2 vary slightly from field to field. Source codes are composed of lowercase alphabetic characters and, in some cases, numeric characters 0 through 9 and the hyphen. Codes vary in length, but most codes have a maximum of 12 characters. Codes are usually based on the title or numbering of the source. See <em><a href="http://www.loc.gov/standards/sourcelist/">Source Codes, Vocabularies, Rules, and Schemes</a></em>. Subfield ǂ2 appears with other control subfields grouped at the end of the field.</p> <p>The code may be followed by edition information or date of publication if the source has been published multiple times. That information is separated from the code by a slash. The omission of edition information or date of publication implies that the current version of the source was used when the record was created.<br /> <br />     ǂ2 msdocs/1975<br />     ǂ2 sears/12th<br /> <br /> The code must be followed by an indication of language if the term appearing in the field is from a translated version of the original source document or list. The 3-character MARC language code is used when an indication of language is needed. See the <em><a href="http://www.loc.gov/marc/languages/">MARC Code List for Languages</a></em>. The language is separated from the code and any edition information or date of publication by a slash.<br /> <br />     ǂ2 fei/eng</p> <p>Subfield ǂ2 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/015.html">015</a>, <a href="https://www.oclc.org/bibformats/en/0xx/017.html">017</a>, <a href="https://www.oclc.org/bibformats/en/0xx/022.html">022</a>, <a href="https://www.oclc.org/bibformats/en/0xx/024.html">024</a>, <a href="https://www.oclc.org/bibformats/en/0xx/026.html">026</a>, <a href="https://www.oclc.org/bibformats/en/0xx/031.html">031</a>, <a href="https://www.oclc.org/bibformats/en/0xx/033.html">033</a>, <a href="https://www.oclc.org/bibformats/en/0xx/034.html">034</a>, <a href="https://www.oclc.org/bibformats/en/0xx/041.html">041</a>, <a href="https://www.oclc.org/bibformats/en/0xx/043.html">043</a>, <a href="https://www.oclc.org/bibformats/en/0xx/044.html">044</a>, <a href="https://www.oclc.org/bibformats/en/0xx/046.html">046</a>, <a href="https://www.oclc.org/bibformats/en/0xx/047.html">047</a>, <a href="https://www.oclc.org/bibformats/en/0xx/048.html">048</a>, <a href="https://www.oclc.org/bibformats/en/0xx/052.html">052</a>, <a href="https://www.oclc.org/bibformats/en/0xx/055.html">055</a>, <a href="https://www.oclc.org/bibformats/en/0xx/072.html">072</a>, <a href="https://www.oclc.org/bibformats/en/0xx/080.html">080</a>, <a href="https://www.oclc.org/bibformats/en/0xx/082.html">082</a>, <a href="https://www.oclc.org/bibformats/en/0xx/083.html">083</a>, <a href="https://www.oclc.org/bibformats/en/0xx/084.html">084</a>, <a href="https://www.oclc.org/bibformats/en/0xx/086.html">086</a>, <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/1xx/130.html">130</a>, <a href="https://www.oclc.org/bibformats/en/2xx/210.html">210</a>, <a href="https://www.oclc.org/bibformats/en/2xx/240.html">240</a>, <a href="https://www.oclc.org/bibformats/en/2xx/251.html">251</a>, <a href="https://www.oclc.org/bibformats/en/2xx/257.html">257</a>, <a href="https://www.oclc.org/bibformats/en/3xx/334.html">334</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/337.html">337</a>, <a href="https://www.oclc.org/bibformats/en/3xx/338.html">338</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/341.html">341</a>, <a href="https://www.oclc.org/bibformats/en/3xx/342.html">342</a>, <a href="https://www.oclc.org/bibformats/en/3xx/344.html">344</a>, <a href="https://www.oclc.org/bibformats/en/3xx/345.html">345</a>, <a href="https://www.oclc.org/bibformats/en/3xx/346.html">346</a>, <a href="https://www.oclc.org/bibformats/en/3xx/347.html">347</a>, <a href="https://www.oclc.org/bibformats/en/3xx/353.html">353</a>, <a href="https://www.oclc.org/bibformats/en/3xx/365.html">365</a>, <a href="https://www.oclc.org/bibformats/en/3xx/366.html">366</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/383.html">383</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/5xx/506.html">506</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/520.html">520</a>, <a href="https://www.oclc.org/bibformats/en/5xx/524.html">524</a>, <a href="https://www.oclc.org/bibformats/en/5xx/540.html">540</a>, <a href="https://www.oclc.org/bibformats/en/5xx/583.html">583</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/6xx/656.html">656</a>, <a href="https://www.oclc.org/bibformats/en/6xx/657.html">657</a>, <a href="https://www.oclc.org/bibformats/en/6xx/658.html">658</a>, <a href="https://www.oclc.org/bibformats/en/6xx/662.html">662</a>, <a href="https://www.oclc.org/bibformats/en/6xx/690.html">690</a>, <a href="https://www.oclc.org/bibformats/en/6xx/691.html">691</a>, <a href="https://www.oclc.org/bibformats/en/6xx/695.html">695</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/752.html">752</a>, <a href="https://www.oclc.org/bibformats/en/7xx/754.html">754</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/852.html">852</a>, <a href="https://www.oclc.org/bibformats/en/8xx/856.html">856</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/885.html">885</a>, <a href="https://www.oclc.org/bibformats/en/8xx/887.html">887</a>, <a href="https://www.oclc.org/bibformats/en/8xx/891.html">891</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ2 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">015</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">GBA260520 ǂ2 bnb</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">086</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">E 46.26:3 ǂ2 ksdocs</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">337</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">zonder medium ǂb n ǂ2 rdamedia/dut</td> </tr> <tr> <td colspan="4"><em>[Item cataloged in Dutch (i.e., </em>040 ǂb dut<em>) with a translation of a term from the RDA list of media types]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">506<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ3 Use copy ǂf Restrictions unspecified ǂ2 star ǂ5 MiAaHDL</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">655</td> <td width="10" align="right"> </td> <td width="17" align="left">7</td> <td width="90%" align="left">Topographic maps ǂ2 lcgft</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield3" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ3 Materials specified</span></td> <td><p>Subfield ǂ3 contains an indication of the part of the described material to which the field applies. Subfield ǂ3 appears at the beginning of the field in cases where it is intended for display, otherwise it appears with other control subfields grouped at the end of the field.</p> <p>Subfield ǂ3 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/033.html">033</a>, <a href="https://www.oclc.org/bibformats/en/0xx/034.html">034</a>, <a href="https://www.oclc.org/bibformats/en/0xx/037.html">037</a>, <a href="https://www.oclc.org/bibformats/en/0xx/041.html">041</a>, <a href="https://www.oclc.org/bibformats/en/0xx/046.html">046</a>, <a href="https://www.oclc.org/bibformats/en/0xx/050.html">050</a>, <a href="https://www.oclc.org/bibformats/en/2xx/250.html">250</a>, <a href="https://www.oclc.org/bibformats/en/2xx/251.html">251</a>, <a href="https://www.oclc.org/bibformats/en/2xx/260.html">260</a>, <a href="https://www.oclc.org/bibformats/en/2xx/264.html">264</a>, <a href="https://www.oclc.org/bibformats/en/3xx/300.html">300</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/337.html">337</a>, <a href="https://www.oclc.org/bibformats/en/3xx/338.html">338</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/341.html">341</a>, <a href="https://www.oclc.org/bibformats/en/3xx/344.html">344</a>, <a href="https://www.oclc.org/bibformats/en/3xx/345.html">345</a>, <a href="https://www.oclc.org/bibformats/en/3xx/346.html">346</a>, <a href="https://www.oclc.org/bibformats/en/3xx/347.html">347</a>, <a href="https://www.oclc.org/bibformats/en/3xx/351.html">351</a>, <a href="https://www.oclc.org/bibformats/en/3xx/353.html">353</a>, <a href="https://www.oclc.org/bibformats/en/3xx/361.html">361</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/383.html">383</a>, <a href="https://www.oclc.org/bibformats/en/3xx/384.html">384</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a>, <a href="https://www.oclc.org/bibformats/en/5xx/500.html">500</a>, <a href="https://www.oclc.org/bibformats/en/5xx/506.html">506</a>, <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/520.html">520</a>, <a href="https://www.oclc.org/bibformats/en/5xx/521.html">521</a>, <a href="https://www.oclc.org/bibformats/en/5xx/524.html">524</a>, <a href="https://www.oclc.org/bibformats/en/5xx/530.html">530</a>, <a href="https://www.oclc.org/bibformats/en/5xx/533.html">533</a>, <a href="https://www.oclc.org/bibformats/en/5xx/534.html">534</a>, <a href="https://www.oclc.org/bibformats/en/5xx/535.html">535</a>, <a href="https://www.oclc.org/bibformats/en/5xx/538.html">538</a>, <a href="https://www.oclc.org/bibformats/en/5xx/540.html">540</a>, <a href="https://www.oclc.org/bibformats/en/5xx/541.html">541</a>, <a href="https://www.oclc.org/bibformats/en/5xx/542.html">542</a>, <a href="https://www.oclc.org/bibformats/en/5xx/544.html">544</a>, <a href="https://www.oclc.org/bibformats/en/5xx/546.html">546</a>, <a href="https://www.oclc.org/bibformats/en/5xx/555.html">555</a>, <a href="https://www.oclc.org/bibformats/en/5xx/561.html">561</a>, <a href="https://www.oclc.org/bibformats/en/5xx/562.html">562</a>, <a href="https://www.oclc.org/bibformats/en/5xx/563.html">563</a>, <a href="https://www.oclc.org/bibformats/en/5xx/565.html">565</a>, <a href="https://www.oclc.org/bibformats/en/5xx/581.html">581</a>, <a href="https://www.oclc.org/bibformats/en/5xx/583.html">583</a>, <a href="https://www.oclc.org/bibformats/en/5xx/584.html">584</a>, <a href="https://www.oclc.org/bibformats/en/5xx/585.html">585</a>, <a href="https://www.oclc.org/bibformats/en/5xx/586.html">586</a>, <a href="https://www.oclc.org/bibformats/en/5xx/590.html">590</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/6xx/656.html">656</a>, <a href="https://www.oclc.org/bibformats/en/6xx/657.html">657</a>, <a href="https://www.oclc.org/bibformats/en/6xx/690.html">690</a>, <a href="https://www.oclc.org/bibformats/en/6xx/691.html">691</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/851.html">851</a>, <a href="https://www.oclc.org/bibformats/en/8xx/852.html">852</a>, <a href="https://www.oclc.org/bibformats/en/8xx/856.html">856</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/891.html">891</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ3 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">264</td> <td width="10" align="right"> </td> <td width="17" align="left">1</td> <td width="90%" align="left">ǂ3 1988-2005: ǂa Earleville, MD : ǂb Costume Society of America, ǂc 1988-2014</td> </tr> <tr> <td>264</td> <td>3</td> <td>1</td> <td>ǂ3 2006-2014: ǂa Hillsborough, NJ : ǂb Costume Society of America</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">336</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">performed music ǂb prm ǂ2 rdacontent ǂ3 audio disc</td> </tr> <tr> <td>336</td> <td> </td> <td> </td> <td>notated music ǂb ntm ǂ2 rdacontent ǂ3 score</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">500</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ3 Correspondence ǂa Gift of E. Mowbray Tate, July 1980</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">546</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ3 DVD ǂa Dialogue and subtitles in English</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">856</td> <td width="10" align="right">4</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂ3 MyiLibrary ǂu http://www.myilibrary.com?id=40266</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield4" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ4 Relationship</span></td> <td><p>Subfield ǂ4 contains a three-character code or URI that specifies the relationship from the entity described in the record to the entity referenced in the field. More than one relationship code or URI may be used if the named entity has more than one function. See <em><a href="http://www.loc.gov/marc/relators/">MARC Code List for Relators</a></em>. Subfield ǂ4 appears with other control subfields grouped at the end of the field.</p> <p>Subfield ǂ4 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/2xx/270.html">270</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/662.html">662</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/720.html">720</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>. Additionally, subfield ǂ4 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Poe, Edgar Allan, ǂd 1809-1849, ǂe author ǂ4 aut</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Wagner, Kate, ǂe composer, ǂe instrumentalist ǂ4 cmp ǂ4 itr</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">110</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Victoria. ǂb Office of the Racing Integrity Commissioner, ǂe author ǂ4 aut</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">700</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Utgard, Russell O., ǂe degree supervisor ǂ4 dgs</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">710</td> <td width="10" align="right">2</td> <td width="17" align="left"> </td> <td width="90%" align="left">Mozarteum-Orchester, ǂe performer ǂ4 prf<br /> </td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield5" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ5 Institution to which field applies</span></td> <td><p>Subfield ǂ5 contains the code of the institution that holds the item to which the field applies. The code is used for access points and notes that do not apply to the universal description of the item or may apply universally to the item but are of limited interest. Subfield ǂ5 is used primarily for rare materials as well as for data related to special collections and projects, such as cooperative preservation programs, of interest beyond the institution creating the record. See <em><a href="http://www.loc.gov/marc/organizations/orgshome.html">MARC Code List for Organizations</a></em>, which also includes links to Canadian, United Kingdom, and German MARC Organization Code lists. Subfield ǂ5 appears with other control subfields grouped at the end of the field.</p> <p>Subfield ǂ5 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/026.html">026</a>, <a href="https://www.oclc.org/bibformats/en/0xx/037.html">037</a>, <a href="https://www.oclc.org/bibformats/en/2xx/246.html">246</a>, <a href="https://www.oclc.org/bibformats/en/3xx/361.html">361</a>, <a href="https://www.oclc.org/bibformats/en/5xx/500.html">500</a>, <a href="https://www.oclc.org/bibformats/en/5xx/501.html">501</a>, <a href="https://www.oclc.org/bibformats/en/5xx/506.html">506</a>, <a href="https://www.oclc.org/bibformats/en/5xx/526.html">526</a>, <a href="https://www.oclc.org/bibformats/en/5xx/533.html">533</a>, <a href="https://www.oclc.org/bibformats/en/5xx/538.html">538</a>, <a href="https://www.oclc.org/bibformats/en/5xx/540.html">540</a>, <a href="https://www.oclc.org/bibformats/en/5xx/541.html">541</a>, <a href="https://www.oclc.org/bibformats/en/5xx/561.html">561</a>, <a href="https://www.oclc.org/bibformats/en/5xx/562.html">562</a>, <a href="https://www.oclc.org/bibformats/en/5xx/563.html">563</a>, <a href="https://www.oclc.org/bibformats/en/5xx/580.html">580</a>, <a href="https://www.oclc.org/bibformats/en/5xx/583.html">583</a>, <a href="https://www.oclc.org/bibformats/en/5xx/584.html">584</a>, <a href="https://www.oclc.org/bibformats/en/5xx/585.html">585</a>, <a href="https://www.oclc.org/bibformats/en/5xx/588.html">588</a>, <a href="https://www.oclc.org/bibformats/en/6xx/653.html">653</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/720.html">720</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/740.html">740</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/885.html">885</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ5 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <p>Other options for information specific to your institution include using Local bibliographic data (LBD), Local holdings records (LHR), or fields that are not retained in the WorldCat record. For more information, see 3.4, <a href="https://www.oclc.org/bibformats/en/about/specialcataloging.html#localinformationinrecords">Local Information in Records</a>.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">500</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">Library copy inscribed on front free endpaper: "Thomas Eaton Swettenham from his Godmother the Dowager Countess of Winterton Dec. 25th 1844" ǂ5 InU<br /> </td> </tr> <tr> <td colspan="4"><em>[Record for a rare book]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">506</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">Digital version available with no restrictions. ǂf Unrestricted online access ǂ2 star ǂ5 NNC</td> </tr> <tr> <td colspan="4"><em>[Digital preservation record]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">533</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">Electronic reproduction. ǂb New York, N.Y. : ǂc Columbia University Libraries, ǂd 2008. ǂn Digitized by the Internet Archive ǂ5 NNC</td> </tr> <tr> <td colspan="4"><em>[Digital preservation record]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">710</td> <td width="10" align="right">2</td> <td width="17" align="left"> </td> <td width="90%" align="left">Pre-1801 Imprint Collection (Library of Congress), ǂe curator ǂ4 cur ǂ5 DLC</td> </tr> <tr> <td colspan="4"><em>[Record for a rare book]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">710<br /> </td> <td width="10" align="right">2</td> <td width="17" align="left"> </td> <td width="90%" align="left">Warwick Castle (Warwick, England). ǂb Shakespeare Library, ǂe former owner ǂ4 fmo ǂ5 DFo</td> </tr> <tr> <td colspan="4"><em>[Record for a rare book]</em></td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><a name="subfield6" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a><span class="subfieldname">ǂ6 Linkage</span></td> <td valign="top"><p>Subfield ǂ6 contains data that link fields that are different script representations of the same text. Subfield ǂ6 contains the tag of an associated field and an occurrence number. It may also contain a code that identifies the first script encountered in a left-to-right scan of the field and an indication that the orientation for a display of the data is right-to-left. A variable field tag other than 880 may be linked to <a href="https://www.oclc.org/bibformats/en/8xx/880.html">field 880</a> which contains a non-Latin script representation of the same data. Subfield ǂ6 is always the first subfield in the field.</p> <p>In 2019, the scope of subfield ǂ6 was broadened in MARC 21 to allow for the recording of script identification codes taken from ISO 15924, <em>Information and Documentation - Codes for the Representation of Names of Scripts</em>. OCLC accommodates the four-character alphabetic codes taken from ISO 15924 in subfield ǂ6. However, OCLC does not currently accommodate the three-digit numerical codes taken from ISO 15924.</p> <p>Non-Latin scripts appearing in 880 fields in a record are collectively identified in <a href="https://www.oclc.org/bibformats/en/0xx/066.html">field 066</a>.</p> <p>For more information about multiscript record models and specifications for character sets, see <em><a href="http://www.loc.gov/marc/specifications/">MARC 21 Specifications for Record Structure, Character Sets, and Exchange Media</a></em>.</p> <p>Subfield ǂ6 is system supplied when non-Latin script is entered, and it does not appear in OCLC online displays. Do <strong>not</strong> manually add subfield ǂ6.</p> <p>Subfield ǂ6 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/013.html">013</a>, <a href="https://www.oclc.org/bibformats/en/0xx/015.html">015</a>, <a href="https://www.oclc.org/bibformats/en/0xx/017.html">017</a>, <a href="https://www.oclc.org/bibformats/en/0xx/018.html">018</a>, <a href="https://www.oclc.org/bibformats/en/0xx/020.html">020</a>, <a href="https://www.oclc.org/bibformats/en/0xx/022.html">022</a>, <a href="https://www.oclc.org/bibformats/en/0xx/024.html">024</a>, <a href="https://www.oclc.org/bibformats/en/0xx/026.html">026</a>, <a href="https://www.oclc.org/bibformats/en/0xx/027.html">027</a>, <a href="https://www.oclc.org/bibformats/en/0xx/028.html">028</a>, <a href="https://www.oclc.org/bibformats/en/0xx/030.html">030</a>, <a href="https://www.oclc.org/bibformats/en/0xx/031.html">031</a>, <a href="https://www.oclc.org/bibformats/en/0xx/032.html">032</a>, <a href="https://www.oclc.org/bibformats/en/0xx/033.html">033</a>, <a href="https://www.oclc.org/bibformats/en/0xx/034.html">034</a>, <a href="https://www.oclc.org/bibformats/en/0xx/035.html">035</a>, <a href="https://www.oclc.org/bibformats/en/0xx/036.html">036</a>, <a href="https://www.oclc.org/bibformats/en/0xx/037.html">037</a>, <a href="https://www.oclc.org/bibformats/en/0xx/040.html">040</a>, <a href="https://www.oclc.org/bibformats/en/0xx/041.html">041</a>, <a href="https://www.oclc.org/bibformats/en/0xx/043.html">043</a>, <a href="https://www.oclc.org/bibformats/en/0xx/044.html">044</a>, <a href="https://www.oclc.org/bibformats/en/0xx/045.html">045</a>, <a href="https://www.oclc.org/bibformats/en/0xx/046.html">046</a>, <a href="https://www.oclc.org/bibformats/en/0xx/050.html">050</a>, <a href="https://www.oclc.org/bibformats/en/0xx/052.html">052</a>, <a href="https://www.oclc.org/bibformats/en/0xx/055.html">055</a>, <a href="https://www.oclc.org/bibformats/en/0xx/072.html">072</a>, <a href="https://www.oclc.org/bibformats/en/0xx/080.html">080</a>, <a href="https://www.oclc.org/bibformats/en/0xx/082.html">082</a>, <a href="https://www.oclc.org/bibformats/en/0xx/083.html">083</a>, <a href="https://www.oclc.org/bibformats/en/0xx/084.html">084</a>, <a href="https://www.oclc.org/bibformats/en/0xx/085.html">085</a>, <a href="https://www.oclc.org/bibformats/en/0xx/086.html">086</a>, <a href="https://www.oclc.org/bibformats/en/0xx/088.html">088</a>, <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/1xx/130.html">130</a>, <a href="https://www.oclc.org/bibformats/en/2xx/210.html">210</a>, <a href="https://www.oclc.org/bibformats/en/2xx/222.html">222</a>, <a href="https://www.oclc.org/bibformats/en/2xx/240.html">240</a>, <a href="https://www.oclc.org/bibformats/en/2xx/242.html">242</a>, <a href="https://www.oclc.org/bibformats/en/2xx/243.html">243</a>, <a href="https://www.oclc.org/bibformats/en/2xx/245.html">245</a>, <a href="https://www.oclc.org/bibformats/en/2xx/246.html">246</a>, <a href="https://www.oclc.org/bibformats/en/2xx/247.html">247</a>, <a href="https://www.oclc.org/bibformats/en/2xx/250.html">250</a>, <a href="https://www.oclc.org/bibformats/en/2xx/251.html">251</a>, <a href="https://www.oclc.org/bibformats/en/2xx/254.html">254</a>, <a href="https://www.oclc.org/bibformats/en/2xx/255.html">255</a>, <a href="https://www.oclc.org/bibformats/en/2xx/256.html">256</a>, <a href="https://www.oclc.org/bibformats/en/2xx/257.html">257</a>, <a href="https://www.oclc.org/bibformats/en/2xx/258.html">258</a>, <a href="https://www.oclc.org/bibformats/en/2xx/260.html">260</a>, <a href="https://www.oclc.org/bibformats/en/2xx/263.html">263</a>, <a href="https://www.oclc.org/bibformats/en/2xx/264.html">264</a>, <a href="https://www.oclc.org/bibformats/en/2xx/270.html">270</a>, <a href="https://www.oclc.org/bibformats/en/3xx/300.html">300</a>, <a href="https://www.oclc.org/bibformats/en/3xx/306.html">306</a>, <a href="https://www.oclc.org/bibformats/en/3xx/307.html">307</a>, <a href="https://www.oclc.org/bibformats/en/3xx/310.html">310</a>, <a href="https://www.oclc.org/bibformats/en/3xx/321.html">321</a>, <a href="https://www.oclc.org/bibformats/en/3xx/334.html">334</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/337.html">337</a>, <a href="https://www.oclc.org/bibformats/en/3xx/338.html">338</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/341.html">341</a>, <a href="https://www.oclc.org/bibformats/en/3xx/342.html">342</a>, <a href="https://www.oclc.org/bibformats/en/3xx/343.html">343</a>, <a href="https://www.oclc.org/bibformats/en/3xx/344.html">344</a>, <a href="https://www.oclc.org/bibformats/en/3xx/345.html">345</a>, <a href="https://www.oclc.org/bibformats/en/3xx/346.html">346</a>, <a href="https://www.oclc.org/bibformats/en/3xx/347.html">347</a>, <a href="https://www.oclc.org/bibformats/en/3xx/348.html">348</a>, <a href="https://www.oclc.org/bibformats/en/3xx/351.html">351</a>, <a href="https://www.oclc.org/bibformats/en/3xx/352.html">352</a>, <a href="https://www.oclc.org/bibformats/en/3xx/353.html">353</a>, <a href="https://www.oclc.org/bibformats/en/3xx/355.html">355</a>, <a href="https://www.oclc.org/bibformats/en/3xx/357.html">357</a>, <a href="https://www.oclc.org/bibformats/en/3xx/362.html">362</a>, <a href="https://www.oclc.org/bibformats/en/3xx/363.html">363</a>, <a href="https://www.oclc.org/bibformats/en/3xx/365.html">365</a>, <a href="https://www.oclc.org/bibformats/en/3xx/366.html">366</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/383.html">383</a>, <a href="https://www.oclc.org/bibformats/en/3xx/384.html">384</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a>, <a href="https://www.oclc.org/bibformats/en/5xx/500.html">500</a>, <a href="https://www.oclc.org/bibformats/en/5xx/501.html">501</a>, <a href="https://www.oclc.org/bibformats/en/5xx/502.html">502</a>, <a href="https://www.oclc.org/bibformats/en/5xx/504.html">504</a>, <a href="https://www.oclc.org/bibformats/en/5xx/505.html">505</a>, <a href="https://www.oclc.org/bibformats/en/5xx/506.html">506</a>, <a href="https://www.oclc.org/bibformats/en/5xx/507.html">507</a>, <a href="https://www.oclc.org/bibformats/en/5xx/508.html">508</a>, <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a>, <a href="https://www.oclc.org/bibformats/en/5xx/511.html">511</a>, <a href="https://www.oclc.org/bibformats/en/5xx/513.html">513</a>, <a href="https://www.oclc.org/bibformats/en/5xx/514.html">514</a>, <a href="https://www.oclc.org/bibformats/en/5xx/515.html">515</a>, <a href="https://www.oclc.org/bibformats/en/5xx/516.html">516</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/520.html">520</a>, <a href="https://www.oclc.org/bibformats/en/5xx/521.html">521</a>, <a href="https://www.oclc.org/bibformats/en/5xx/522.html">522</a>, <a href="https://www.oclc.org/bibformats/en/5xx/524.html">524</a>, <a href="https://www.oclc.org/bibformats/en/5xx/525.html">525</a>, <a href="https://www.oclc.org/bibformats/en/5xx/526.html">526</a>, <a href="https://www.oclc.org/bibformats/en/5xx/530.html">530</a>, <a href="https://www.oclc.org/bibformats/en/5xx/532.html">532</a>, <a href="https://www.oclc.org/bibformats/en/5xx/533.html">533</a>, <a href="https://www.oclc.org/bibformats/en/5xx/534.html">534</a>, <a href="https://www.oclc.org/bibformats/en/5xx/535.html">535</a>, <a href="https://www.oclc.org/bibformats/en/5xx/536.html">536</a>, <a href="https://www.oclc.org/bibformats/en/5xx/538.html">538</a>, <a href="https://www.oclc.org/bibformats/en/5xx/540.html">540</a>, <a href="https://www.oclc.org/bibformats/en/5xx/541.html">541</a>, <a href="https://www.oclc.org/bibformats/en/5xx/542.html">542</a>, <a href="https://www.oclc.org/bibformats/en/5xx/544.html">544</a>, <a href="https://www.oclc.org/bibformats/en/5xx/545.html">545</a>, <a href="https://www.oclc.org/bibformats/en/5xx/546.html">546</a>, <a href="https://www.oclc.org/bibformats/en/5xx/547.html">547</a>, <a href="https://www.oclc.org/bibformats/en/5xx/550.html">550</a>, <a href="https://www.oclc.org/bibformats/en/5xx/552.html">552</a>, <a href="https://www.oclc.org/bibformats/en/5xx/555.html">555</a>, <a href="https://www.oclc.org/bibformats/en/5xx/556.html">556</a>, <a href="https://www.oclc.org/bibformats/en/5xx/561.html">561</a>, <a href="https://www.oclc.org/bibformats/en/5xx/562.html">562</a>, <a href="https://www.oclc.org/bibformats/en/5xx/563.html">563</a>, <a href="https://www.oclc.org/bibformats/en/5xx/565.html">565</a>, <a href="https://www.oclc.org/bibformats/en/5xx/567.html">567</a>, <a href="https://www.oclc.org/bibformats/en/5xx/580.html">580</a>, <a href="https://www.oclc.org/bibformats/en/5xx/581.html">581</a>, <a href="https://www.oclc.org/bibformats/en/5xx/583.html">583</a>, <a href="https://www.oclc.org/bibformats/en/5xx/584.html">584</a>, <a href="https://www.oclc.org/bibformats/en/5xx/585.html">585</a>, <a href="https://www.oclc.org/bibformats/en/5xx/586.html">586</a>, <a href="https://www.oclc.org/bibformats/en/5xx/588.html">588</a>, <a href="https://www.oclc.org/bibformats/en/5xx/590.html">590</a>, <a href="https://www.oclc.org/bibformats/en/5xx/599.html">599</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/653.html">653</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/6xx/656.html">656</a>, <a href="https://www.oclc.org/bibformats/en/6xx/657.html">657</a>, <a href="https://www.oclc.org/bibformats/en/6xx/658.html">658</a>, <a href="https://www.oclc.org/bibformats/en/6xx/662.html">662</a>, <a href="https://www.oclc.org/bibformats/en/6xx/690.html">690</a>, <a href="https://www.oclc.org/bibformats/en/6xx/691.html">691</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/720.html">720</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/740.html">740</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/752.html">752</a>, <a href="https://www.oclc.org/bibformats/en/7xx/753.html">753</a>, <a href="https://www.oclc.org/bibformats/en/7xx/754.html">754</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/851.html">851</a>, <a href="https://www.oclc.org/bibformats/en/8xx/852.html">852</a>, <a href="https://www.oclc.org/bibformats/en/8xx/853.html">853</a>, <a href="https://www.oclc.org/bibformats/en/8xx/854.html">854</a>, <a href="https://www.oclc.org/bibformats/en/8xx/855.html">855</a>, <a href="https://www.oclc.org/bibformats/en/8xx/856.html">856</a>, <a href="https://www.oclc.org/bibformats/en/8xx/863.html">863</a>, <a href="https://www.oclc.org/bibformats/en/8xx/864.html">864</a>, <a href="https://www.oclc.org/bibformats/en/8xx/865.html">865</a>, <a href="https://www.oclc.org/bibformats/en/8xx/866.html">866</a>, <a href="https://www.oclc.org/bibformats/en/8xx/867.html">867</a>, <a href="https://www.oclc.org/bibformats/en/8xx/868.html">868</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/882.html">882</a>, <a href="https://www.oclc.org/bibformats/en/8xx/886.html">886</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">902</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">903</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">904</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">905</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">906</a>, <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">907</a>, <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945</a>, <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">946</a>, <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">947</a>, <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">948</a>, <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">949</a>, and <a href="https://www.oclc.org/bibformats/en/9xx/956.html">956</a>.</p> <p>The structure and syntax for the linkage subfield is:</p> <p>ǂ6 <em>[linking tag]-[occurrence number]/[script identification code]/[field orientation code]</em></p> <p><strong>Linking tag</strong> is the first data element in the subfield and is required if the subfield is used. It is the three-digit tag of the associated field.</p> <p><strong>Occurrence number</strong> is separated from the linking tag by a hyphen and is required if the subfield is used. It is a two-digit number. A different occurrence number is assigned to each set of associated fields within a record. The function of the occurrence number is to permit the matching of associated fields rather than sequencing fields within the record. An occurrence number may be assigned at random for each set of associated fields. An occurrence number of less than two digits is right justified and the unused position contains a zero.</p> <p>When there is no associated Latin script field to which a field containing non-Latin script is linked, field 880 is used alone and the occurrence number in subfield ǂ6 is 00. The linking tag within subfield ǂ6 will contain the tag of the associated field if it had existed in the record.</p> <p><strong>Script identification code</strong> is used only in field 880 and is separated from the occurrence number by a slash. This code identifies the non-Latin script found in the field. The entire field does not need to be in the script identified in subfield ǂ6. If more than one script is present in the field, subfield ǂ6 will contain the identification of the first script encountered in a left-to-right scan of the field.</p> <p>The following codes are used:</p> <table width="250" height="60" cellspacing="0" cellpadding="1" border="2"> <tbody> <tr> <td><strong>Code</strong></td> <td><strong>Script</strong></td> </tr> <tr> <td>$1</td> <td>Chinese, Japanese, Korean</td> </tr> <tr> <td>(2</td> <td>Hebrew</td> </tr> <tr> <td>(3</td> <td>Arabic</td> </tr> <tr> <td>(B</td> <td>Latin</td> </tr> <tr> <td>(N</td> <td>Cyrillic</td> </tr> <tr> <td>(S</td> <td>Greek</td> </tr> </tbody> </table> <br /> <p>For scripts other than those listed above, OCLC implemented four-character alphabetic identification codes based on the <em><a href="http://www.unicode.org/iso15924/codelists.html">ISO 15924 Code Lists</a></em>.</p> <p><strong>Field orientation code</strong> is used only in field 880 and is separated from the script identification code by a slash. The contents of field 880 are always recorded in their logical order, from the first character to the last, regardless of field orientation. For display of the field, the default field orientation is left-to-right. When the field contains text that has a right-to-left orientation, field orientation code <em>r</em> is used.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr> <td> </td> <td>066</td> <td> </td> <td> </td> <td>ǂc (N</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 880-01 ǂa I︠U︡rasov, M. K. ǂq (Mikhail Konstantinovich), ǂe author</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">880</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 100-01/(N ǂa Юрасов, М. К. ǂq (Михаил Константинович), ǂe author</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>The linked fields appear in OCLC online displays as:</em></td> </tr> <tr valign="top"> <td rowspan="2"><strong>⎡<br /> ⎣</strong></td> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td>Юрасов, М. К. ǂq (Михаил Константинович), ǂe author</td> </tr> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td>I︠U︡rasov, M. K. ǂq (Mikhail Konstantinovich), ǂe author</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr> <td> </td> <td>066</td> <td> </td> <td> </td> <td>ǂc Thai</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">100</td> <td width="10" align="right">0</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 880-04 ǂa Sīsak Wanliphōdom, ǂd 1938- ǂe author</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">880</td> <td width="10" align="right">0</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 100-04/Thai ǂa ศรีศักร วัลลิโภดม, ǂd 1938- ǂe author</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>The linked fields appear in OCLC online displays as:</em></td> </tr> <tr valign="top"> <td rowspan="2"><strong>⎡<br /> ⎣</strong></td> <td width="30" align="left">100</td> <td width="10" align="right">0</td> <td width="17" align="left"> </td> <td>ศรีศักร วัลลิโภดม, ǂd 1938- ǂe author</td> </tr> <tr valign="top"> <td width="30" align="left">100</td> <td width="10" align="right">0</td> <td width="17" align="left"> </td> <td>Sīsak Wanliphōdom, ǂd 1938- ǂe author</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr> <td> </td> <td>066</td> <td> </td> <td> </td> <td>ǂc $1</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">245<br /> </td> <td width="10" align="right">1<br /> </td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂ6 880-02 ǂa Shushō Kantei no mae de = ǂb Tell the Prime Minister / ǂc Oguma Eiji</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">880</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂ6 245-02/$1 ǂa 首相官邸の前で = ǂb Tell the Prime Minister / ǂc 小熊英二</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>The linked fields appear in OCLC online displays as:</em></td> </tr> <tr valign="top"> <td rowspan="2"><strong>⎡<br /> ⎣</strong></td> <td width="30" align="left">245</td> <td width="10" align="right">1</td> <td width="17" align="left">0</td> <td>首相官邸の前で = ǂb Tell the Prime Minister / ǂc 小熊英二</td> </tr> <tr valign="top"> <td width="30" align="left">245</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left">0</td> <td>Shushō Kantei no mae de = ǂb Tell the Prime Minister / ǂc Oguma Eiji</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr> <td> </td> <td>066</td> <td> </td> <td> </td> <td>ǂc (3</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">264</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 880-05 ǂa Miṣr al-Jadīdah, al-Qāhirah : ǂb al-Maktab al-ʻArabī lil-Maʻārif, ǂc 2017</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">880</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 264-05/(3/r ǂa مصر الجديدة، القاهرة : ǂb المكتب العربي للمعارف، ǂc 2017</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>The linked fields appear in OCLC online displays as:</em></td> </tr> <tr valign="top"> <td rowspan="2"><strong>⎡<br /> ⎣</strong></td> <td width="30" align="left">264<br /> </td> <td width="10" align="right">1<br /> </td> <td width="17" align="left"> </td> <td>مصر الجديدة، القاهرة : ǂb المكتب العربي للمعارف، ǂc 2017</td> </tr> <tr valign="top"> <td width="30" align="left">264</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left"> </td> <td>Miṣr al-Jadīdah, al-Qāhirah : ǂb al-Maktab al-ʻArabī lil-Maʻārif, ǂc 2017</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr> <td> </td> <td>066</td> <td> </td> <td> </td> <td>ǂc (2</td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">880</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ6 500-00/(2/r ǂa "נדפס מחדש ע"פ דפוסים קדמונים, בתוספת מראי מקומות ושינויי נוסחאות"</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>The unlinked field appears in OCLC online displays as:</em></td> </tr> <tr valign="top"> <td> </td> <td width="30" align="left">500</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td>"נדפס מחדש ע"פ דפוסים קדמונים, בתוספת מראי מקומות ושינויי נוסחאות"</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield7" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ7 Control subfield</span></td> <td><p>Subfield ǂ7 contains one-character codes that indicate special characteristics of a linked entry, series access point, or availability of access to a remote electronic resource. Subfield ǂ7 contains up to four one-character codes in the case of <a href="https://www.oclc.org/bibformats/en/7xx/76x-78x.html">fields 760-787</a>, up to two one-character codes in the case of <a href="https://www.oclc.org/bibformats/en/8xx.html">fields 800-830 and 896-899</a>, and a single one-character code in the case of <a href="https://www.oclc.org/bibformats/en/8xx/856.html">field 856</a>. Subfield ǂ7 is named Control subfield in all fields where it occurs except field 856 where it is named Access status. In all fields except 856, subfield ǂ7 character positions are designated <em>/0</em>, <em>/1</em>, <em>/2</em>, etc. In current cataloging, subfield ǂ7 generally appears with other control subfields grouped at the end of the field. Subfield ǂ7 is used infrequently in fields 760-787, 800-830, and 896-899.</p> <p>Except in field 856, the definition of each character position in subfield ǂ7 is dependent on the field in which it is used. Since the definitions of the codes within subfield ǂ7 are dependent on the position in which they occur, the coding of any character position after the first mandates that each preceding character position also contains a code. Succeeding character positions do not need to be coded. For example, if in fields 760-787 positions <em>/0</em> and <em>/1</em> are not applicable, but position <em>/2</em> is, then positions <em>/0</em> and <em>/1</em> contain code <em>n</em>.</p> <p>Subfield ǂ7 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/3xx/361.html">361</a>, 720, <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/856.html">856</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ7 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <p>Although MARC 21 also defines subfield ǂ7 for use in <a href="https://www.oclc.org/bibformats/en/5xx/533.html">field 533</a>, OCLC has implemented that subfield as <a href="https://www.oclc.org/bibformats/en/5xx/539.html">field 539</a>.</p> <p><strong>Fields 760-787</strong></p> <p>Up to four character positions that indicate special characteristics of the linked entry defined as follows:</p> <p><strong>/0 - Type of main entry heading.</strong> Code indicating either the type of name contained in subfield ǂa or the preferred title in subfield ǂt. The codes correspond to the 1xx field in the record for the related item, i.e., <a href="https://www.oclc.org/bibformats/en/1xx/100.html">field 100</a> for personal names, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">field 110</a> for corporate names, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">field 111</a> for meeting names, and <a href="https://www.oclc.org/bibformats/en/1xx/130.html">field 130</a> for preferred titles. Code <em>n</em> is used when no other codes apply.</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>p</strong></td> <td><strong>Personal name</strong></td> </tr> <tr> <td><strong>c</strong></td> <td><strong>Corporate name</strong></td> </tr> <tr> <td><strong>m</strong></td> <td><strong>Meeting name</strong></td> </tr> <tr> <td><strong>u</strong></td> <td><strong>Uniform title</strong></td> </tr> <tr> <td><strong>n</strong></td> <td><strong>Not applicable</strong></td> </tr> </tbody> </table> </dd> </dl> <p><strong>/1 - Form of name.</strong> Code indicating the form of the name contained in subfield ǂa. The code corresponds to the value of the 1st indicator in the 1xx field in the record for the related item, and must be interpreted in conjunction with the value in position <em>/0</em>.</p> <p>For position <em>/0</em> coded <em>p</em>, position <em>/1</em> contains one of the following codes:</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>0</strong></td> <td><strong>Forename</strong></td> </tr> <tr> <td><strong>1</strong></td> <td><strong>Surname</strong></td> </tr> <tr> <td><strong>3</strong></td> <td><strong>Family name</strong></td> </tr> </tbody> </table> </dd> </dl> <p>For position <em>/0</em> coded <em>c</em> or <em>m</em>, position <em>/1</em> contains one of the following codes:</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>0</strong></td> <td><strong>Inverted name</strong></td> </tr> <tr> <td><strong>1</strong></td> <td><strong>Jurisdiction name</strong></td> </tr> <tr> <td><strong>2</strong></td> <td><strong>Name in direct order</strong></td> </tr> </tbody> </table> </dd> </dl> <p>For position <em>/0</em> coded <em>u</em> or <em>n</em>, position<em> /1</em> contains the following code:</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>n</strong></td> <td><strong>Not applicable</strong></td> </tr> </tbody> </table> </dd> </dl> <p><strong>/2 - Type of record.</strong> Code indicating the type of record for the related item. The code corresponds to the code in <em><a href="https://www.oclc.org/bibformats/en/fixedfield/type.html">Type</a></em> in the record for the related item.</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>a</strong></td> <td><strong>Language material</strong></td> </tr> <tr> <td><strong>c</strong></td> <td><strong>Notated music</strong></td> </tr> <tr> <td><strong>d</strong></td> <td><strong>Manuscript notated music</strong></td> </tr> <tr> <td><strong>e</strong></td> <td><strong>Cartographic material</strong></td> </tr> <tr> <td><strong>f</strong></td> <td><strong>Manuscript cartographic material</strong></td> </tr> <tr> <td><strong>g</strong></td> <td><strong>Projected medium</strong></td> </tr> <tr> <td><strong>i</strong></td> <td><strong>Nonmusical sound recording</strong></td> </tr> <tr> <td><strong>j</strong></td> <td><strong>Musical sound recording</strong></td> </tr> <tr> <td><strong>k</strong></td> <td><strong>Two-dimensional nonprojectable graphic</strong></td> </tr> <tr> <td><strong>m</strong></td> <td><strong>Computer file</strong></td> </tr> <tr> <td><strong>o</strong></td> <td><strong>Kit</strong></td> </tr> <tr> <td><strong>p</strong></td> <td><strong>Mixed material</strong></td> </tr> <tr> <td><strong>r</strong></td> <td><strong>Three-dimensional artifact or naturally occurring object</strong></td> </tr> <tr> <td><strong>t</strong></td> <td><strong>Manuscript language material</strong></td> </tr> </tbody> </table> </dd> </dl> <p><strong>/3 - Bibliographic level.</strong> Code indicating the bibliographic level of the related item. The code corresponds to the code in <em><a href="https://www.oclc.org/bibformats/en/fixedfield/blvl.html">BLvl</a></em> in the record for the related item.</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>a</strong></td> <td><strong>Monographic component part</strong></td> </tr> <tr> <td><strong>b</strong></td> <td><strong>Serial component part</strong></td> </tr> <tr> <td><strong>c</strong></td> <td><strong>Collection</strong></td> </tr> <tr> <td><strong>d</strong></td> <td><strong>Subunit</strong></td> </tr> <tr> <td><strong>i</strong></td> <td><strong>Integrating resource</strong></td> </tr> <tr> <td><strong>m</strong></td> <td><strong>Monograph/item</strong></td> </tr> <tr> <td><strong>s</strong></td> <td><strong>Serial</strong></td> </tr> </tbody> </table> </dd> </dl> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂa DuVal, F. Alan (Francis Alan), 1916- ǂt Christian Metz German-American religious leader & pioneer. ǂd [Iowa City, Iowa] : Penfield Books, 2005 ǂz 1932043330 ǂw (DLC)  2005905476 ǂw (OCoLC)64679240 ǂ7 p1am</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂt Library technology reports. ǂg Vol. 19, no. 3 (May/June 1983) ǂx 0024-2586 ǂw (DLC)   77644312 ǂw (OCoLC)2910540 ǂ7 nnas</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂa New York Shakespeare Festival. ǂt New York Shakespeare Festival records, 1954-1992 ǂw (OCoLC)144652508 ǂ7 m2pc</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂa Society for the Diffusion of Useful Knowledge (Great Britain). ǂt Maps of the Society for the Diffusion of Useful Knowledge. ǂd London : Chapman and Hall, 1844. ǂg Vol. 2, map 127 ǂw (OCoLC)8232937 ǂ7 c2em</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">773</td> <td width="10" align="right">0</td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Contained in (manifestation): ǂa World Conference on Transport Research (1983 : Hamburg, Germany). ǂt Research for transport policies in a changing world. ǂd Hamburg, Federal Republic of Germany : SNV Studiengesellschaft Nahverkehr, [1983] ǂw (OCoLC)10659659 ǂ7 m2am</td> </tr> </tbody> </table> <p><strong>Fields 800-830 and 896-899</strong></p> <p>Up to two character positions that indicate special characteristics of the access point defined as follows:</p> <p><strong>/0 - Type of record.</strong> Code indicating the type of record for the related item. The code corresponds to the code in <em><a href="https://www.oclc.org/bibformats/en/fixedfield/type.html">Type</a></em> in the record for the related item. Codes <em>d</em>,<em> f</em>, and <em>t</em> are unlikely to be used in position<em> /0</em>.</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>a</strong></td> <td><strong>Language material</strong></td> </tr> <tr> <td><strong>c</strong></td> <td><strong>Notated music</strong></td> </tr> <tr> <td><strong>d</strong></td> <td><strong>Manuscript notated music</strong></td> </tr> <tr> <td><strong>e</strong></td> <td><strong>Cartographic material</strong></td> </tr> <tr> <td><strong>f</strong></td> <td><strong>Manuscript cartographic material</strong></td> </tr> <tr> <td><strong>g</strong></td> <td><strong>Projected medium</strong></td> </tr> <tr> <td><strong>i</strong></td> <td><strong>Nonmusical sound recording</strong></td> </tr> <tr> <td><strong>j</strong></td> <td><strong>Musical sound recording</strong></td> </tr> <tr> <td><strong>k</strong></td> <td><strong>Two-dimensional nonprojectable graphic</strong></td> </tr> <tr> <td><strong>m</strong></td> <td><strong>Computer file</strong></td> </tr> <tr> <td><strong>o</strong></td> <td><strong>Kit</strong></td> </tr> <tr> <td><strong>p</strong></td> <td><strong>Mixed material</strong></td> </tr> <tr> <td><strong>r</strong></td> <td><strong>Three-dimensional artifact or naturally occurring object</strong></td> </tr> <tr> <td><strong>t</strong></td> <td><strong>Manuscript language material</strong></td> </tr> </tbody> </table> </dd> </dl> <p><strong>/1 - Bibliographic level.</strong> Code indicating the bibliographic level of the related item. The code corresponds to the code in <em><a href="https://www.oclc.org/bibformats/en/fixedfield/blvl.html">BLvl</a></em> in the record for the related item. Codes <em>a</em>, <em>b</em>, <em>c</em>, <em>d</em>, and <em>i</em> are unlikely to be used in position <em>/1</em>.</p> <dl> <dd> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>a</strong></td> <td><strong>Monographic component part</strong></td> </tr> <tr> <td><strong>b</strong></td> <td><strong>Serial component part</strong></td> </tr> <tr> <td><strong>c</strong></td> <td><strong>Collection</strong></td> </tr> <tr> <td><strong>d</strong></td> <td><strong>Subunit</strong></td> </tr> <tr> <td><strong>i</strong></td> <td><strong>Integrating resource</strong></td> </tr> <tr> <td><strong>m</strong></td> <td><strong>Monograph/item</strong></td> </tr> <tr> <td><strong>s</strong></td> <td><strong>Serial</strong></td> </tr> </tbody> </table> </dd> </dl> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">800</td> <td width="10" align="right">1</td> <td width="17" align="left"> </td> <td width="90%" align="left">Freud, Sigmund, ǂd 1856-1939. ǂt Works. ǂl English ǂs (Pelican Freud library) ; ǂv v. 11 ǂw (OCoLC)652376393 ǂ7 am</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">810</td> <td width="10" align="right">2</td> <td width="17" align="left"> </td> <td width="90%" align="left">DeLorme (Firm). ǂt Atlas & gazetteer ǂ7 em</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830</td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Abhandlungen des Naturwissenschaftlichen Vereins in Hamburg ; ǂv n.F., 23 ǂx 0173-7481 ǂw (DLC)sn 82000309 ǂw (OCoLC)7547018 ǂ7 as</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830</td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Baroque chamber music series ; ǂv no. 11 ǂw (DLC)sf 98010001 ǂw (OCoLC)9292689 ǂ7 cs</td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">830</td> <td width="10" align="right"> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Video lecture series (American Institute of Organbuilders : VHS) ; ǂv #1901 ǂw (OCoLC)40457848 ǂ7 gs</td> </tr> </tbody> </table> <p><strong>Field 856</strong></p> <p>A single one-character code indicating the availability of access to the remote electronic resource specified in subfield ǂu. For more information, see <a href="https://www.oclc.org/bibformats/en/8xx/856.html">field 856</a>.</p> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield8" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ8 Field link and sequence number</span></td> <td><p>Subfield ǂ8 identifies linked fields and may also propose a sequence for the linked fields. Subfield ǂ8 may be repeated to link a field to more than one other group of fields. You are responsible for creating and maintaining links in subfield ǂ8. The system does not create or maintain these links. Subfield ǂ8 generally appears at the beginning of the field.</p> <p>Subfield ǂ8 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/010.html">010</a>, <a href="https://www.oclc.org/bibformats/en/0xx/013.html">013</a>, <a href="https://www.oclc.org/bibformats/en/0xx/015.html">015</a>, <a href="https://www.oclc.org/bibformats/en/0xx/016.html">016</a>, <a href="https://www.oclc.org/bibformats/en/0xx/017.html">017</a>, <a href="https://www.oclc.org/bibformats/en/0xx/018.html">018</a>, <a href="https://www.oclc.org/bibformats/en/0xx/020.html">020</a>, <a href="https://www.oclc.org/bibformats/en/0xx/022.html">022</a>, <a href="https://www.oclc.org/bibformats/en/0xx/024.html">024</a>, <a href="https://www.oclc.org/bibformats/en/0xx/025.html">025</a>, <a href="https://www.oclc.org/bibformats/en/0xx/026.html">026</a>, <a href="https://www.oclc.org/bibformats/en/0xx/027.html">027</a>, <a href="https://www.oclc.org/bibformats/en/0xx/028.html">028</a>, <a href="https://www.oclc.org/bibformats/en/0xx/030.html">030</a>, <a href="https://www.oclc.org/bibformats/en/0xx/031.html">031</a>, <a href="https://www.oclc.org/bibformats/en/0xx/032.html">032</a>, <a href="https://www.oclc.org/bibformats/en/0xx/033.html">033</a>, <a href="https://www.oclc.org/bibformats/en/0xx/034.html">034</a>, <a href="https://www.oclc.org/bibformats/en/0xx/035.html">035</a>, <a href="https://www.oclc.org/bibformats/en/0xx/036.html">036</a>, <a href="https://www.oclc.org/bibformats/en/0xx/037.html">037</a>, <a href="https://www.oclc.org/bibformats/en/0xx/040.html">040</a>, <a href="https://www.oclc.org/bibformats/en/0xx/041.html">041</a>, <a href="https://www.oclc.org/bibformats/en/0xx/043.html">043</a>, <a href="https://www.oclc.org/bibformats/en/0xx/044.html">044</a>, <a href="https://www.oclc.org/bibformats/en/0xx/045.html">045</a>, <a href="https://www.oclc.org/bibformats/en/0xx/046.html">046</a>, <a href="https://www.oclc.org/bibformats/en/0xx/047.html">047</a>, <a href="https://www.oclc.org/bibformats/en/0xx/048.html">048</a>, <a href="https://www.oclc.org/bibformats/en/0xx/050.html">050</a>, <a href="https://www.oclc.org/bibformats/en/0xx/051.html">051</a>, <a href="https://www.oclc.org/bibformats/en/0xx/052.html">052</a>, <a href="https://www.oclc.org/bibformats/en/0xx/055.html">055</a>, <a href="https://www.oclc.org/bibformats/en/0xx/060.html">060</a>, <a href="https://www.oclc.org/bibformats/en/0xx/061.html">061</a>, <a href="https://www.oclc.org/bibformats/en/0xx/070.html">070</a>, <a href="https://www.oclc.org/bibformats/en/0xx/071.html">071</a>, <a href="https://www.oclc.org/bibformats/en/0xx/072.html">072</a>, <a href="https://www.oclc.org/bibformats/en/0xx/074.html">074</a>, <a href="https://www.oclc.org/bibformats/en/0xx/080.html">080</a>, <a href="https://www.oclc.org/bibformats/en/0xx/082.html">082</a>, <a href="https://www.oclc.org/bibformats/en/0xx/083.html">083</a>, <a href="https://www.oclc.org/bibformats/en/0xx/084.html">084</a>, <a href="https://www.oclc.org/bibformats/en/0xx/085.html">085</a>, <a href="https://www.oclc.org/bibformats/en/0xx/086.html">086</a>, <a href="https://www.oclc.org/bibformats/en/0xx/088.html">088</a>, <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/1xx/130.html">130</a>, <a href="https://www.oclc.org/bibformats/en/2xx/210.html">210</a>, <a href="https://www.oclc.org/bibformats/en/2xx/222.html">222</a>, <a href="https://www.oclc.org/bibformats/en/2xx/240.html">240</a>, <a href="https://www.oclc.org/bibformats/en/2xx/242.html">242</a>, <a href="https://www.oclc.org/bibformats/en/2xx/243.html">243</a>, <a href="https://www.oclc.org/bibformats/en/2xx/245.html">245</a>, <a href="https://www.oclc.org/bibformats/en/2xx/246.html">246</a>, <a href="https://www.oclc.org/bibformats/en/2xx/247.html">247</a>, <a href="https://www.oclc.org/bibformats/en/2xx/250.html">250</a>, <a href="https://www.oclc.org/bibformats/en/2xx/251.html">251</a>, <a href="https://www.oclc.org/bibformats/en/2xx/254.html">254</a>, <a href="https://www.oclc.org/bibformats/en/2xx/255.html">255</a>, <a href="https://www.oclc.org/bibformats/en/2xx/256.html">256</a>, <a href="https://www.oclc.org/bibformats/en/2xx/257.html">257</a>, <a href="https://www.oclc.org/bibformats/en/2xx/258.html">258</a>, <a href="https://www.oclc.org/bibformats/en/2xx/260.html">260</a>, <a href="https://www.oclc.org/bibformats/en/2xx/263.html">263</a>, <a href="https://www.oclc.org/bibformats/en/2xx/264.html">264</a>, <a href="https://www.oclc.org/bibformats/en/2xx/270.html">270</a>, <a href="https://www.oclc.org/bibformats/en/3xx/300.html">300</a>, <a href="https://www.oclc.org/bibformats/en/3xx/306.html">306</a>, <a href="https://www.oclc.org/bibformats/en/3xx/307.html">307</a>, <a href="https://www.oclc.org/bibformats/en/3xx/310.html">310</a>, <a href="https://www.oclc.org/bibformats/en/3xx/321.html">321</a>, <a href="https://www.oclc.org/bibformats/en/3xx/334.html">334</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/337.html">337</a>, <a href="https://www.oclc.org/bibformats/en/3xx/338.html">338</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/341.html">341</a>, <a href="https://www.oclc.org/bibformats/en/3xx/342.html">342</a>, <a href="https://www.oclc.org/bibformats/en/3xx/343.html">343</a>, <a href="https://www.oclc.org/bibformats/en/3xx/344.html">344</a>, <a href="https://www.oclc.org/bibformats/en/3xx/345.html">345</a>, <a href="https://www.oclc.org/bibformats/en/3xx/346.html">346</a>, <a href="https://www.oclc.org/bibformats/en/3xx/347.html">347</a>, <a href="https://www.oclc.org/bibformats/en/3xx/348.html">348</a>, <a href="https://www.oclc.org/bibformats/en/3xx/351.html">351</a>, <a href="https://www.oclc.org/bibformats/en/3xx/352.html">352</a>, <a href="https://www.oclc.org/bibformats/en/3xx/353.html">353</a>, <a href="https://www.oclc.org/bibformats/en/3xx/355.html">355</a>, <a href="https://www.oclc.org/bibformats/en/3xx/357.html">357</a>, <a href="https://www.oclc.org/bibformats/en/3xx/361.html">361</a>, <a href="https://www.oclc.org/bibformats/en/3xx/362.html">362</a>, <a href="https://www.oclc.org/bibformats/en/3xx/363.html">363</a>, <a href="https://www.oclc.org/bibformats/en/3xx/365.html">365</a>, <a href="https://www.oclc.org/bibformats/en/3xx/366.html">366</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/383.html">383</a>, <a href="https://www.oclc.org/bibformats/en/3xx/384.html">384</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a>, <a href="https://www.oclc.org/bibformats/en/5xx/500.html">500</a>, <a href="https://www.oclc.org/bibformats/en/5xx/501.html">501</a>, <a href="https://www.oclc.org/bibformats/en/5xx/502.html">502</a>, <a href="https://www.oclc.org/bibformats/en/5xx/504.html">504</a>, <a href="https://www.oclc.org/bibformats/en/5xx/505.html">505</a>, <a href="https://www.oclc.org/bibformats/en/5xx/506.html">506</a>, <a href="https://www.oclc.org/bibformats/en/5xx/507.html">507</a>, <a href="https://www.oclc.org/bibformats/en/5xx/508.html">508</a>, <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a>, <a href="https://www.oclc.org/bibformats/en/5xx/511.html">511</a>, <a href="https://www.oclc.org/bibformats/en/5xx/513.html">513</a>, <a href="https://www.oclc.org/bibformats/en/5xx/514.html">514</a>, <a href="https://www.oclc.org/bibformats/en/5xx/515.html">515</a>, <a href="https://www.oclc.org/bibformats/en/5xx/516.html">516</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/520.html">520</a>, <a href="https://www.oclc.org/bibformats/en/5xx/521.html">521</a>, <a href="https://www.oclc.org/bibformats/en/5xx/522.html">522</a>, <a href="https://www.oclc.org/bibformats/en/5xx/524.html">524</a>, <a href="https://www.oclc.org/bibformats/en/5xx/525.html">525</a>, <a href="https://www.oclc.org/bibformats/en/5xx/526.html">526</a>, <a href="https://www.oclc.org/bibformats/en/5xx/530.html">530</a>, <a href="https://www.oclc.org/bibformats/en/5xx/532.html">532</a>, <a href="https://www.oclc.org/bibformats/en/5xx/533.html">533</a>, <a href="https://www.oclc.org/bibformats/en/5xx/534.html">534</a>, <a href="https://www.oclc.org/bibformats/en/5xx/535.html">535</a>, <a href="https://www.oclc.org/bibformats/en/5xx/536.html">536</a>, <a href="https://www.oclc.org/bibformats/en/5xx/538.html">538</a>, <a href="https://www.oclc.org/bibformats/en/5xx/540.html">540</a>, <a href="https://www.oclc.org/bibformats/en/5xx/541.html">541</a>, <a href="https://www.oclc.org/bibformats/en/5xx/542.html">542</a>, <a href="https://www.oclc.org/bibformats/en/5xx/544.html">544</a>, <a href="https://www.oclc.org/bibformats/en/5xx/545.html">545</a>, <a href="https://www.oclc.org/bibformats/en/5xx/546.html">546</a>, <a href="https://www.oclc.org/bibformats/en/5xx/547.html">547</a>, <a href="https://www.oclc.org/bibformats/en/5xx/550.html">550</a>, <a href="https://www.oclc.org/bibformats/en/5xx/552.html">552</a>, <a href="https://www.oclc.org/bibformats/en/5xx/555.html">555</a>, <a href="https://www.oclc.org/bibformats/en/5xx/556.html">556</a>, <a href="https://www.oclc.org/bibformats/en/5xx/561.html">561</a>, <a href="https://www.oclc.org/bibformats/en/5xx/562.html">562</a>, <a href="https://www.oclc.org/bibformats/en/5xx/563.html">563</a>, <a href="https://www.oclc.org/bibformats/en/5xx/565.html">565</a>, <a href="https://www.oclc.org/bibformats/en/5xx/567.html">567</a>, <a href="https://www.oclc.org/bibformats/en/5xx/580.html">580</a>, <a href="https://www.oclc.org/bibformats/en/5xx/581.html">581</a>, <a href="https://www.oclc.org/bibformats/en/5xx/583.html">583</a>, <a href="https://www.oclc.org/bibformats/en/5xx/584.html">584</a>, <a href="https://www.oclc.org/bibformats/en/5xx/585.html">585</a>, <a href="https://www.oclc.org/bibformats/en/5xx/586.html">586</a>, <a href="https://www.oclc.org/bibformats/en/5xx/588.html">588</a>, <a href="https://www.oclc.org/bibformats/en/5xx/590.html">590</a>, <a href="https://www.oclc.org/bibformats/en/5xx/599.html">599</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/647.html">647</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/653.html">653</a>, <a href="https://www.oclc.org/bibformats/en/6xx/654.html">654</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/6xx/656.html">656</a>, <a href="https://www.oclc.org/bibformats/en/6xx/657.html">657</a>, <a href="https://www.oclc.org/bibformats/en/6xx/658.html">658</a>, <a href="https://www.oclc.org/bibformats/en/6xx/662.html">662</a>, <a href="https://www.oclc.org/bibformats/en/6xx/690.html">690</a>, <a href="https://www.oclc.org/bibformats/en/6xx/691.html">691</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, <a href="https://www.oclc.org/bibformats/en/7xx/720.html">720</a>, <a href="https://www.oclc.org/bibformats/en/7xx/730.html">730</a>, <a href="https://www.oclc.org/bibformats/en/7xx/740.html">740</a>, <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>, <a href="https://www.oclc.org/bibformats/en/7xx/752.html">752</a>, <a href="https://www.oclc.org/bibformats/en/7xx/753.html">753</a>, <a href="https://www.oclc.org/bibformats/en/7xx/754.html">754</a>, <a href="https://www.oclc.org/bibformats/en/7xx/758.html">758</a>, <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>, <a href="https://www.oclc.org/bibformats/en/7xx/790.html">790</a>, <a href="https://www.oclc.org/bibformats/en/7xx/791.html">791</a>, <a href="https://www.oclc.org/bibformats/en/7xx/792.html">792</a>, <a href="https://www.oclc.org/bibformats/en/7xx/793.html">793</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>, <a href="https://www.oclc.org/bibformats/en/8xx/850.html">850</a>, <a href="https://www.oclc.org/bibformats/en/8xx/852.html">852</a>, <a href="https://www.oclc.org/bibformats/en/8xx/856.html">856</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/882.html">882</a>, <a href="https://www.oclc.org/bibformats/en/8xx/883.html">883</a>, <a href="https://www.oclc.org/bibformats/en/8xx/891.html">891</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ8 can be used in <a href="https://www.oclc.org/bibformats/en/8xx/886.html">field 886</a>, either in accord with its control subfield definition or its foreign MARC subfield definition. Subfield ǂ8 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> <p>The structure and syntax for the field link and sequence number subfield is:</p> <p>ǂ8 <em>[linking number]</em>.<em>[sequence number]</em>\<em>[field link type]</em></p> <p>Note that subfield ǂ8 is defined differently in <a href="https://www.oclc.org/bibformats/en/8xx/852.html">field 852</a> where it is used to sequence related holdings records.</p> <p><strong>Linking number</strong> is the first data element in the subfield and required if the subfield is used. It is a variable-length whole number that occurs in subfield ǂ8 in all fields that are to be linked. Fields with the same linking number are considered linked.</p> <p><strong>Sequence number</strong> is separated from the linking number by a period and is optional. It is a variable-length whole number that may be used to indicate the relative order for display of the linked fields with lower sequence numbers displaying before higher ones. If it is used, it must occur in all subfields ǂ8 containing the same linking number.</p> <p><strong>Field link type</strong> is separated from preceding data by a reverse slash. It is a code used to indicate the reason for the link and it follows the link number or the sequence number when the sequence number is present. Field link type is required except when subfield ǂ8 is used to link and sequence <a href="https://www.oclc.org/bibformats/en/8xx/84x-87x.html">84x-87x holdings fields</a>. The following one-character field link type codes have been defined for use in subfield ǂ8:</p> <table class="ffcode" width="100%"> <tbody> <tr> <td width="6%"><strong>a</strong></td> <td><p><strong>Action.</strong> Used in a record to link one or more fields with another field to which the processing or reference actions relate. This code is typically used only when there is more than one <a href="https://www.oclc.org/bibformats/en/5xx.html">5xx field</a> that relates to another 5xx field.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">541</td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ8 1.1\a ǂ3 Public School and College Authority and Trade School and Junior College Authority project files ǂa Finance Dept. ǂc Transferred</td> </tr> <tr valign="top"> <td width="30" align="left">583<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ8 1.2\a ǂa Appraised ǂc 198712- ǂl tjb/prr</td> </tr> <tr> <td>583</td> <td> </td> <td> </td> <td>ǂ8 1.3\a ǂa Scheduled ǂc 19880127 ǂk src/prr</td> </tr> <tr> <td>583</td> <td> </td> <td> </td> <td>ǂ8 1.4\a ǂa Arranged ǂc 19900619 ǂk mc/dmj</td> </tr> <tr> <td>583</td> <td> </td> <td> </td> <td>ǂ8 1.5\a ǂa Processed level 2 ǂb 90.160 ǂc 19901218 ǂk mc/dmj</td> </tr> </tbody> </table> </td> </tr> <tr> <td width="6%"><strong>c</strong></td> <td><p><strong>Constituent item.</strong> Used in a record for a collection, or a single item consisting of identifiable constituent units, to link the fields relating to the constituent units. All other non-linked data elements in the record pertain to the collection or item as a whole.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">245<br /> </td> <td width="10" align="right">0<br /> </td> <td width="17" align="left">0</td> <td width="90%" align="left">Brevard Music Center. ǂn Program #24</td> </tr> <tr valign="top"> <td width="30" align="left">505<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂt From my window / ǂr Siegmesiter (world premiere) -- ǂt Don Giovanni. Il mio tesoro / ǂr Mozart -- ǂt Martha. M’appari / ǂr Flotow -- ǂt Turandot. Nessun dorma / ǂr Puccini -- ǂt Pines of Rome / ǂr Respighi</td> </tr> <tr> <td>650<br /> </td> <td> </td> <td>0</td> <td>ǂ8 1\c ǂa Suites (Orchestra), Arranged</td> </tr> <tr> <td>650<br /> </td> <td> </td> <td>0</td> <td>ǂ8 2\c ǂ8 3\c ǂ8 4\c ǂa Operas ǂv Excerpts</td> </tr> <tr> <td>650</td> <td> </td> <td>0</td> <td>ǂ8 5\c ǂa Symphonic poems</td> </tr> <tr> <td>700</td> <td>1</td> <td> </td> <td>ǂ8 2\c ǂ8 4\c ǂa Di Giuseppe, Enrico, ǂd 1938- ǂe performer ǂ4 prf</td> </tr> <tr> <td>700</td> <td>1</td> <td>2</td> <td>ǂ8 1\c ǂi Container of (expression): ǂa Siegmeister, Elie ǂd 1909- ǂt From my window; ǂo arranged</td> </tr> <tr> <td>700</td> <td>1</td> <td>2</td> <td>ǂ8 2\c ǂi Container of (work): ǂa Mozart, Wolfgang Amadeus, ǂd 1756-1791. ǂt Don Giovanni. ǂp Mio tesoro</td> </tr> <tr> <td>700</td> <td>1</td> <td>2</td> <td>ǂ8 3\c ǂi Container of (expression): ǂa Flotow, Friedrich von, ǂd 1812-1883. ǂt Martha. ǂp Ach! So fromm, ach! so traut. ǂl Italian</td> </tr> <tr> <td>700</td> <td>1</td> <td>2</td> <td>ǂ8 4\c ǂi Container of (work): ǂa Puccini, Giacomo, ǂd 1858-1924. ǂt Turandot. ǂp Nessun dorma</td> </tr> <tr> <td>700</td> <td>1</td> <td>2</td> <td>ǂ8 5\c ǂi Container of (work): ǂa Respighi, Ottorino, ǂd 1879-1936. ǂt Pini di Roma</td> </tr> </tbody> </table> </td> </tr> <tr> <td width="6%"><strong>p</strong></td> <td><p><strong>Metadata provenance.</strong> Used in a record to link a field with another field containing information about provenance of the metadata recorded in the linked field.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">082</td> <td width="10" align="right">0</td> <td width="17" align="left">4</td> <td width="90%" align="left">ǂ8 1\p ǂa 004 ǂ2 22/ger ǂq DE-101</td> </tr> <tr valign="top"> <td width="30" align="left">883<br /> </td> <td width="10" align="right">0</td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ8 1\p ǂa parallelrecordcopy ǂd 20120101 ǂx 20141231 ǂq NO-OsNB</td> </tr> </tbody> </table> </td> </tr> <tr> <td width="6%"><strong>r</strong></td> <td><p><strong>Reproduction.</strong> Used in a record for a reproduction to identify fields linked because they contain information concerning only the reproduction. Other descriptive information in the record pertains to the original with the exception of <a href="https://www.oclc.org/bibformats/en/fixedfield/form.html">Form</a>, <a href="https://www.oclc.org/bibformats/en/0xx/007.html">field 007</a>, and <a href="https://www.oclc.org/bibformats/en/5xx/533.html">field 533</a>.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">Form<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">a</td> </tr> <tr> <td>007</td> <td> </td> <td> </td> <td>h ǂb a</td> </tr> <tr valign="top"> <td width="30" align="left">245</td> <td width="10" align="right">0</td> <td width="17" align="left">4</td> <td width="90%" align="left">The New-York mirror, and ladies' literary gazette</td> </tr> <tr> <td>533</td> <td> </td> <td> </td> <td>ǂ8 1\r ǂa Microfilm. ǂb Ann Arbor, Mich. : ǂc University Microfilms, ǂd 1950. ǂe 3 microfilm reels ; 35 mm. ǂf (American periodical series, 1800-1850 ; 164-165, 785)</td> </tr> <tr> <td>830</td> <td> </td> <td>0</td> <td>ǂ8 1\r ǂa American periodical series, 1800-1850 ; ǂv 164-165, 785</td> </tr> </tbody> </table> </td> </tr> <tr> <td width="6%"><strong>u</strong></td> <td><p><strong>General linking, type unspecified.</strong> Used in cases when a specific link type is not appropriate. This code may serve as a default value when there is no available information about the type of link.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">082</td> <td width="10" align="right">0</td> <td width="17" align="left">4</td> <td width="90%" align="left">ǂ8 1\u ǂa 779.994346228092 ǂq DE-101 ǂ2 22/ger</td> </tr> <tr> <td>085<br /> </td> <td> </td> <td> </td> <td>ǂ8 1\u ǂb 779</td> </tr> <tr valign="top"> <td width="30" align="left">085<br /> </td> <td width="10" align="right"> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ8 1\u ǂs 704.949</td> </tr> <tr> <td>085</td> <td> </td> <td> </td> <td>ǂ8 1\u ǂs 943</td> </tr> <tr> <td>085</td> <td> </td> <td> </td> <td>ǂ8 1\u ǂz 1 ǂs 092<br /> </td> </tr> <tr> <td>085</td> <td> </td> <td> </td> <td>ǂ8 1\u ǂz 2 ǂs 4346228</td> </tr> <tr> <td>245</td> <td>1</td> <td>4<br /> </td> <td>Der Bodensee = ǂb Lake Constance / ǂc Holger Spierling ; mit Texten von Iris Lemanczyk ; Übersetzung: Global-Text, Heidelberg, Timothy Gilfoid</td> </tr> </tbody> </table> </td> </tr> <tr> <td width="6%"><strong>x</strong></td> <td><p><strong>General sequencing.</strong> Used in a record to link fields to show a sequence between them. The sequence could be one that orders the pieces of a long field that has been broken up, indicates the relative importance of fields within the sequence, or is used for some other sequencing purpose. Use of the sequence number in subfield ǂ8 is required when this code is used.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">505</td> <td width="10" align="right">0</td> <td width="17" align="left">0</td> <td width="90%" align="left">ǂ8 1.1\x ǂt Three articles reviewing Hoeffding's work -- ǂt Wassily Hoeffding's work in the sixties / ǂr Kobus Oosterhoff and Willem van Zwet -- ǂt The impact of Wassily Hoeffding's work on sequential analysis / ǂr Gordon Simons -- ǂt The impact of Wassily Hoeffding's research on nonparametrics / ǂr Pranab Kumar Sen --</td> </tr> <tr> <td>505<br /> </td> <td>8</td> <td>0</td> <td>ǂ8 1.2\x ǂt The role of assumptions in statistical decisions -- ǂt Distinguishability of sets of distributions : (the case of independent and identically distributed random variables) / ǂr Wassily Hoeffding and J. Wolfowitz --</td> </tr> <tr valign="top"> <td width="30" align="left">505</td> <td width="10" align="right">8<br /> </td> <td width="17" align="left">0<br /> </td> <td width="90%" align="left">ǂ8 1.3\x ǂt Unbiased range-preserving estimators -- ǂt Range preserving unbiased estimators in the multinomial case -- ǂt Asymptotic normality -- ǂt Hajek's projection lemma<em><br /> </em></td> </tr> <tr> <td colspan="4"><em>[This example shows a long 505 field broken up into smaller segments]</em></td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><span class="subfieldname"><a name="subfield9" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a>ǂ9 Special entry</span></td> <td><p>For fields where subfield ǂ9 is defined as special entry, subfield ǂ9 contains user-specified information.</p> <p>Subfield ǂ9 defined as special entry is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/6xx/690.html">690</a>, <a href="https://www.oclc.org/bibformats/en/6xx/691.html">691</a>, <a href="https://www.oclc.org/bibformats/en/6xx/696.html">696</a>, <a href="https://www.oclc.org/bibformats/en/6xx/697.html">697</a>, <a href="https://www.oclc.org/bibformats/en/6xx/698.html">698</a>, <a href="https://www.oclc.org/bibformats/en/6xx/699.html">699</a>, <a href="https://www.oclc.org/bibformats/en/7xx/796.html">796</a>, <a href="https://www.oclc.org/bibformats/en/7xx/797.html">797</a>, <a href="https://www.oclc.org/bibformats/en/7xx/798.html">798</a>, <a href="https://www.oclc.org/bibformats/en/7xx/799.html">799</a>, <a href="https://www.oclc.org/bibformats/en/8xx/880.html">880</a>, <a href="https://www.oclc.org/bibformats/en/8xx/896.html">896</a>, <a href="https://www.oclc.org/bibformats/en/8xx/897.html">897</a>, <a href="https://www.oclc.org/bibformats/en/8xx/898.html">898</a>, and <a href="https://www.oclc.org/bibformats/en/8xx/899.html">899</a>. Additionally, subfield ǂ9 can be used in fields <a href="https://www.oclc.org/bibformats/en/9xx/901-907.html">901-907</a> and <a href="https://www.oclc.org/bibformats/en/9xx/945-949.html">945-949</a>, either in accord with its control subfield definition or as a locally-defined subfield.</p> </td> </tr> <tr> <td width="90" align="left"><a name="subfielddp" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a><h3>Data Provenance Subfields</h3> </td> <td> </td> </tr> <tr> <td class="formats"><span class="details">Definition</span></td> <td valign="top"><p>Descriptions of subfields that are used to link provenance data in a field to other data within the same field. These subfields are defined for multiple fields in the format, and thus their descriptions are brought together in this section. The subfields are included in field level subfield lists wherever they are defined, with pointers to this section.</p> </td> </tr> <tr> <td class="formats"><span class="details">Guidelines</span></td> <td valign="top"><p>When defined as data provenance subfields, subfields ǂe, ǂl, ǂy, and ǂ7 contain a data provenance value for any related subfield or subfields in the same subfield string. The information in the subfield is structured in machine-actionable form using a standardized syntax to record a MARC Data Provenance Category code, a MARC Data Provenance Relationship code indicating the subfield relationship, and a value associated with that category and relationship. The value may be in the form of either text or a URI. A textual value is preceded by the appropriate MARC Data Provenance Category code and, if applicable, a MARC Data Provenance Relationship code, enclosed in parentheses. If both a MARC Data Provenance Category code and a MARC Data Provenance Relationship code are present, the Category code precedes the Relationship code, and they are separated by a forward slash. If the value is in the form of a URI, no preceding parenthetical is used.</p> <p><strong>Data Provenance Category Codes</strong></p> <p>Code representing the type of data provenance element for which greater detail is recorded. Each code is constructed in the pattern <em>dpe </em>for <em>data provenance element</em>, followed by alphabetic characters representing the specific type of data provenance element.</p> <table class="datatable" cellspacing="0" cellpadding="6" border="1"> <tbody> <tr> <td class="shade" align="left"><strong>Code</strong></td> <td class="shade" align="left"><strong>Definition</strong></td> </tr> <tr> <td align="left">dpeaa</td> <td align="left">Data provenance element author agent</td> </tr> <tr> <td align="left">dpecou</td> <td align="left">Data provenance element context of use</td> </tr> <tr> <td align="left">dpeloe</td> <td align="left">Data provenance element language of expression</td> </tr> <tr> <td align="left">dpenmw</td> <td align="left">Data provenance element note on metadata work</td> </tr> <tr> <td align="left">dpermw</td> <td align="left">Data provenance element related manifestation of work</td> </tr> <tr> <td align="left">dpertow</td> <td align="left">Data provenance element related timespan of work</td> </tr> <tr> <td align="left">dpes</td> <td align="left">Data provenance element script</td> </tr> <tr> <td align="left">dpesc</td> <td align="left">Data provenance element source consulted</td> </tr> </tbody> </table> <p><strong>Data Provenance Relationship Codes</strong></p> <p>Code that identifies the subfield to which the data provenance information is related. Each code is constructed in the pattern <em>dp</em> for <em>data provenance</em>, <em>sf</em> for <em>subfield</em>, and a final alphanumeric character representing one of the subfield values (ǂa through ǂz or ǂ0 through ǂ9) that is valid in a MARC record.</p> <table class="datatable" cellspacing="0" cellpadding="6" border="1"> <tbody> <tr> <td class="shade" align="left"><strong>Code</strong></td> <td class="shade" align="left"><strong>Definition</strong></td> </tr> <tr> <td align="left">dpsfa</td> <td align="left">Data provenance relates to subfield ǂa</td> </tr> <tr> <td align="left">dpsfb</td> <td align="left">Data provenance relates to subfield ǂb</td> </tr> <tr> <td align="left">dpsfc</td> <td align="left">Data provenance relates to subfield ǂc</td> </tr> <tr> <td align="left">dpsfd</td> <td align="left">Data provenance relates to subfield ǂd</td> </tr> <tr> <td align="left">dpsfe</td> <td align="left">Data provenance relates to subfield ǂe</td> </tr> <tr> <td align="left">dpsff</td> <td align="left">Data provenance relates to subfield ǂf</td> </tr> <tr> <td align="left">dpsfg</td> <td align="left">Data provenance relates to subfield ǂg</td> </tr> <tr> <td align="left">dpsfh</td> <td align="left">Data provenance relates to subfield ǂh</td> </tr> <tr> <td align="left">dpsfi</td> <td align="left">Data provenance relates to subfield ǂi</td> </tr> <tr> <td align="left">dpsfj</td> <td align="left">Data provenance relates to subfield ǂj</td> </tr> <tr> <td align="left">dpsfk</td> <td align="left">Data provenance relates to subfield ǂk</td> </tr> <tr> <td align="left">dpsfl</td> <td align="left">Data provenance relates to subfield ǂl</td> </tr> <tr> <td align="left">dpsfm</td> <td align="left">Data provenance relates to subfield ǂm</td> </tr> <tr> <td align="left">dpsfn</td> <td align="left">Data provenance relates to subfield ǂn</td> </tr> <tr> <td align="left">dpsfo</td> <td align="left">Data provenance relates to subfield ǂo</td> </tr> <tr> <td align="left">dpsfp</td> <td align="left">Data provenance relates to subfield ǂp</td> </tr> <tr> <td align="left">dpsfq</td> <td align="left">Data provenance relates to subfield ǂq</td> </tr> <tr> <td align="left">dpsfr</td> <td align="left">Data provenance relates to subfield ǂr</td> </tr> <tr> <td align="left">dpsfs</td> <td align="left">Data provenance relates to subfield ǂs</td> </tr> <tr> <td align="left">dpsft</td> <td align="left">Data provenance relates to subfield ǂt</td> </tr> <tr> <td align="left">dpsfu</td> <td align="left">Data provenance relates to subfield ǂu</td> </tr> <tr> <td align="left">dpsfv</td> <td align="left">Data provenance relates to subfield ǂv</td> </tr> <tr> <td align="left">dpsfw</td> <td align="left">Data provenance relates to subfield ǂw</td> </tr> <tr> <td align="left">dpsfx</td> <td align="left">Data provenance relates to subfield ǂx</td> </tr> <tr> <td align="left">dpsfy</td> <td align="left">Data provenance relates to subfield ǂy</td> </tr> <tr> <td align="left">dpsfz</td> <td align="left">Data provenance relates to subfield ǂz</td> </tr> <tr> <td align="left">dpsf0</td> <td align="left">Data provenance relates to subfield ǂ0</td> </tr> <tr> <td align="left">dpsf1</td> <td align="left">Data provenance relates to subfield ǂ1</td> </tr> <tr> <td align="left">dpsf2</td> <td align="left">Data provenance relates to subfield ǂ2</td> </tr> <tr> <td align="left">dpsf3</td> <td align="left">Data provenance relates to subfield ǂ3</td> </tr> <tr> <td align="left">dpsf4</td> <td align="left">Data provenance relates to subfield ǂ4</td> </tr> <tr> <td align="left">dpsf5</td> <td align="left">Data provenance relates to subfield ǂ5</td> </tr> <tr> <td align="left">dpsf6</td> <td align="left">Data provenance relates to subfield ǂ6</td> </tr> <tr> <td align="left">dpsf7</td> <td align="left">Data provenance relates to subfield ǂ7</td> </tr> <tr> <td align="left">dpsf8</td> <td align="left">Data provenance relates to subfield ǂ8</td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><a name="subfieldedp" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a><span class="subfieldname">ǂe Data provenance</span></td> <td valign="top"><p>Subfield ǂe is valid only in <a href="https://www.oclc.org/bibformats/en/8xx/856.html">field 856</a>.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">856</td> <td width="10" align="right">4<br /> </td> <td width="17" align="left">0 </td> <td width="90%" align="left">ǂu http://nbn-resolving.de/urn:nbn:de:bsz:25-freidok-146567 ǂx Resolving-System ǂe (dpeaa)DE-101</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>[Field 856 models data provenance element "author agent" with value "DE-101" (for Deutsche Nationalbibliothek) in subfield ǂe relating to other subfields in the same string]</em></td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><a name="subfieldldp" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a><span class="subfieldname">ǂl Data provenance</span></td> <td valign="top"><p>Subfield ǂl is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/7xx/760.html">760</a>, <a href="https://www.oclc.org/bibformats/en/7xx/762.html">762</a>, <a href="https://www.oclc.org/bibformats/en/7xx/765.html">765</a>, <a href="https://www.oclc.org/bibformats/en/7xx/767.html">767</a>, <a href="https://www.oclc.org/bibformats/en/7xx/770.html">770</a>, <a href="https://www.oclc.org/bibformats/en/7xx/772.html">772</a>, <a href="https://www.oclc.org/bibformats/en/7xx/773.html">773</a>, <a href="https://www.oclc.org/bibformats/en/7xx/774.html">774</a>, <a href="https://www.oclc.org/bibformats/en/7xx/775.html">775</a>, <a href="https://www.oclc.org/bibformats/en/7xx/776.html">776</a>, <a href="https://www.oclc.org/bibformats/en/7xx/777.html">777</a>, <a href="https://www.oclc.org/bibformats/en/7xx/780.html">780</a>, <a href="https://www.oclc.org/bibformats/en/7xx/785.html">785</a>, <a href="https://www.oclc.org/bibformats/en/7xx/786.html">786</a>, <a href="https://www.oclc.org/bibformats/en/7xx/787.html">787</a>, <a href="https://www.oclc.org/bibformats/en/7xx/788.html">788</a>.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">776</td> <td width="10" align="right">0<br /> </td> <td width="17" align="left">8</td> <td width="90%" align="left">ǂi Print version: ǂt 雨到黄昏花易落 ǂz 9789863266501 ǂw (OCoLC)1100060352 ǂl (dpes/dpsft)Hans</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>[Field 776 models data provenance element "script" with value "Hans" (for Han (Simplified variant)) in subfield ǂl relating to the script in subfield ǂt in the same string]</em></td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><a name="subfieldydp" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a><span class="subfieldname">ǂy Data provenance</span></td> <td valign="top"><p>Subfield ǂy is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/5xx/533.html">533</a>, <a href="https://www.oclc.org/bibformats/en/8xx/800.html">800</a>, <a href="https://www.oclc.org/bibformats/en/8xx/810.html">810</a>, <a href="https://www.oclc.org/bibformats/en/8xx/811.html">811</a>, <a href="https://www.oclc.org/bibformats/en/8xx/830.html">830</a>.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">800</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left"> </td> <td width="90%" align="left">花登筐. ǂt Works. ǂk Selections. ǂf 1972. ǂy (dpes/dpsfa)Jpan</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>[Field 800 models data provenance element "script" with value "Jpan" (for Japanese) in subfield ǂy relating to the script in subfield ǂa in the same string]</em></td> </tr> </tbody> </table> </td> </tr> <tr class="subfield"> <td align="left"><a name="subfield7dp" title="null" class="rte-anchor rte-anchor rte-anchor rte-anchor rte-anchor null"></a><span class="subfieldname">ǂ7 Data provenance</span></td> <td valign="top"><p>Subfield ǂ7 is valid in the following fields: <a href="https://www.oclc.org/bibformats/en/0xx/041.html">041</a>, <a href="https://www.oclc.org/bibformats/en/0xx/082.html">082</a>, <a href="https://www.oclc.org/bibformats/en/0xx/083.html">083</a>, <a href="https://www.oclc.org/bibformats/en/0xx/084.html">084</a>, <a href="https://www.oclc.org/bibformats/en/1xx/100.html">100</a>, <a href="https://www.oclc.org/bibformats/en/1xx/110.html">110</a>, <a href="https://www.oclc.org/bibformats/en/1xx/111.html">111</a>, <a href="https://www.oclc.org/bibformats/en/1xx/130.html">130</a>, <a href="https://www.oclc.org/bibformats/en/2xx/210.html">210</a>, <a href="https://www.oclc.org/bibformats/en/2xx/240.html">240</a>, <a href="https://www.oclc.org/bibformats/en/2xx/245.html">245</a>, <a href="https://www.oclc.org/bibformats/en/2xx/246.html">246</a>, <a href="https://www.oclc.org/bibformats/en/2xx/247.html">247</a>, <a href="https://www.oclc.org/bibformats/en/2xx/250.html">250</a>, <a href="https://www.oclc.org/bibformats/en/2xx/255.html">255</a>, <a href="https://www.oclc.org/bibformats/en/2xx/256.html">256</a>, <a href="https://www.oclc.org/bibformats/en/2xx/264.html">264</a>, <a href="https://www.oclc.org/bibformats/en/3xx/300.html">300</a>, <a href="https://www.oclc.org/bibformats/en/3xx/335.html">335</a>, <a href="https://www.oclc.org/bibformats/en/3xx/336.html">336</a>, <a href="https://www.oclc.org/bibformats/en/3xx/340.html">340</a>, <a href="https://www.oclc.org/bibformats/en/3xx/348.html">348</a>, <a href="https://www.oclc.org/bibformats/en/3xx/370.html">370</a>, <a href="https://www.oclc.org/bibformats/en/3xx/377.html">377</a>, <a href="https://www.oclc.org/bibformats/en/3xx/380.html">380</a>, <a href="https://www.oclc.org/bibformats/en/3xx/381.html">381</a>, <a href="https://www.oclc.org/bibformats/en/3xx/382.html">382</a>, <a href="https://www.oclc.org/bibformats/en/3xx/383.html">383</a>, <a href="https://www.oclc.org/bibformats/en/3xx/384.html">384</a>, <a href="https://www.oclc.org/bibformats/en/3xx/385.html">385</a>, <a href="https://www.oclc.org/bibformats/en/3xx/386.html">386</a>, <a href="https://www.oclc.org/bibformats/en/3xx/387.html">387</a>, <a href="https://www.oclc.org/bibformats/en/3xx/388.html">388</a>, <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a>, <a href="https://www.oclc.org/bibformats/en/5xx/500.html">500</a>, <a href="https://www.oclc.org/bibformats/en/5xx/501.html">501</a>, <a href="https://www.oclc.org/bibformats/en/5xx/502.html">502</a>, <a href="https://www.oclc.org/bibformats/en/5xx/505.html">505</a>, <a href="https://www.oclc.org/bibformats/en/5xx/508.html">508</a>, <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a>, <a href="https://www.oclc.org/bibformats/en/5xx/515.html">515</a>, <a href="https://www.oclc.org/bibformats/en/5xx/518.html">518</a>, <a href="https://www.oclc.org/bibformats/en/5xx/520.html">520</a>, <a href="https://www.oclc.org/bibformats/en/5xx/546.html">546</a>, <a href="https://www.oclc.org/bibformats/en/5xx/550.html">550</a>, <a href="https://www.oclc.org/bibformats/en/5xx/555.html">555</a>, <a href="https://www.oclc.org/bibformats/en/5xx/583.html">583</a>, <a href="https://www.oclc.org/bibformats/en/6xx/600.html">600</a>, <a href="https://www.oclc.org/bibformats/en/6xx/610.html">610</a>, <a href="https://www.oclc.org/bibformats/en/6xx/611.html">611</a>, <a href="https://www.oclc.org/bibformats/en/6xx/630.html">630</a>, <a href="https://www.oclc.org/bibformats/en/6xx/648.html">648</a>, <a href="https://www.oclc.org/bibformats/en/6xx/650.html">650</a>, <a href="https://www.oclc.org/bibformats/en/6xx/651.html">651</a>, <a href="https://www.oclc.org/bibformats/en/6xx/653.html">653</a>, <a href="https://www.oclc.org/bibformats/en/6xx/655.html">655</a>, <a href="https://www.oclc.org/bibformats/en/7xx/700.html">700</a>, <a href="https://www.oclc.org/bibformats/en/7xx/710.html">710</a>, <a href="https://www.oclc.org/bibformats/en/7xx/711.html">711</a>, and <a href="https://www.oclc.org/bibformats/en/7xx/751.html">751</a>.</p> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">245</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left">0 </td> <td width="90%" align="left">Asʾila ḥaula 'l-marʾa wa-'l-masǧid ǂb fī ḍauʾ nuṣūṣ aš-šarīʿa wa-maq ṣidih ǂc d. sir ʿAuda ǂ7(dpesc)DIN 31635:2011</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>[Field 245 models data provenance element "source consulted" with value for transliteration standard "DIN 31635:2011" in subfield ǂ7 relating to other subfields in the same string]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">600</td> <td width="10" align="right">0 <br /> </td> <td width="17" align="left">7</td> <td width="90%" align="left">ǂ0 (DE-588)118650130 ǂ0 https://d-nb.info/gnd/118650130 ǂa Aristoteles ǂd v384-v322 ǂ2 gnd ǂ7 (dpermw)aep-gnd ǂ7 https://d-nb.info/provenance/plan#aep-gnd</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>[Field 600 models 1) data provenance element "related manifestation of work" with value "aep-gnd" in subfield ǂ7 relating to other subfields in the same string; 2) data provenance element with value https://d-nb.info/provenance/plan#aep-gnd in subfield ǂ7 relating to other subfields in the same string]</em></td> </tr> </tbody> </table> <table class="structuredexample" cellspacing="0" cellpadding="1" border="0"> <tbody> <tr valign="top"> <td width="30" align="left">700</td> <td width="10" align="right">1<br /> </td> <td width="17" align="left"> </td> <td width="90%" align="left">ǂ0 (DE-588)103331727 ǂ0 (DE-603)138744165 ǂa Michajlova, Natalʹja I. ǂ4 aut ǂ7 (dpes/dpsfa)Latn</td> </tr> <tr> <td> </td> <td colspan="4" align="left"><em>[Field 700 models data provenance element "script" with value "Latn" in subfield ǂ7 relating to subfield ǂa in the same string]</em></td> </tr> </tbody> </table> </td> </tr> <tr> <td width="90" align="left"><h3>Punctuation</h3> </td> <td><p>With the exception of subfield ǂx in fields <a href="https://www.oclc.org/bibformats/en/4xx/490.html">490</a> and <a href="https://www.oclc.org/bibformats/en/5xx/510.html">510</a> and subfield ǂ3, do <strong>not</strong> add punctuation (e.g., commas, colons, semicolons, etc.) to separate a control subfield from any preceding or subsequent subfields. Add terminal punctuation, i.e., hyphen, question mark, exclamation point, closing parenthesis, or period, to any field that requires terminal punctuation before any control subfields appearing at the end of the field. Do <strong>not</strong> add terminal punctuation to a control subfield that occurs at the end of a field.</p> </td> </tr> <tr> <td width="90" align="left"><h3>Indexing</h3> </td> <td valign="top"><p>For indexing and searching information, see <em><a href="https://help.oclc.org/Librarian_Toolbox/Searching_WorldCat_Indexes">Searching WorldCat Indexes</a></em>.</p> </td> </tr> <tr> <td width="90" align="left"><h3>MARC 21</h3> </td> <td valign="top"><p>For more information, including content designator history, see <a href="https://www.loc.gov/marc/bibliographic/ecbdcntf.html"><em>MARC 21 Format for Bibliographic Data</em>, control subfields</a>.</p> </td> </tr> </tbody> </table> </div> </div> </div> <div class="afterContent iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="afterContent iparsys parsys"><div class="text parbase section"> <p style="text-align: right;"><span class="text-small"><span class="cq-rte-sprinkles" name="Sprinkles:bfas/last-revised-date"><a href="https://www.oclc.org/bibformats/en/revisionhistory.html" title="Last revision date in YYYY-MM-DD format">This page last updated: 2024-08-12</a></span> · <a href="https://www.oclc.org/oclc-forms/en/worldcat-bibliographic-authority-record-change.html">Report an error in WorldCat</a> · <a href="https://help.oclc.org/Librarian_Toolbox/Contact_OCLC_Support">Submit a suggestion for this page</a> · <a href="https://help.oclc.org/WorldCat/Cataloging_documentation">Get help with general cataloging questions</a></span></p> </div> </div> </div> </div> </article> </main> </div> </div> <div class="footer iparsys parsys"><div class="section"><div class="new"></div> </div><div class="iparys_inherited"><div class="footer iparsys parsys"><div class="footer section"> <!-- Footer container --> <footer class="page-footer"> <!-- footer content --> <div class="cont-page"> <div class="par parsys"><div class="parsyscolumncontrol section"> <div class="parsys_column cq-colctrl-lt6"> <div class="parsys_column cq-colctrl-lt6-c0"> <div class="col0 parsys"><div class="globallogo parbase section"> <!-- logo --> <a href="https://www.oclc.org/en/home.html"> <img src="/content/dam/oclc/design-images/navigation-logo.svg" border="0" title="OCLC.org" alt="OCLC" class="footer-logo"> </a> </div> </div> </div> <div class="parsys_column cq-colctrl-lt6-c1"> <div class="col1 parsys"><div class="languagenavigation section"> <nav id="languagenavigation-2d39138bb1" class="cmp-languagenavigation"> <ul class="cmp-languagenavigation__group"> <li class="cmp-languagenavigation__item cmp-languagenavigation__item--langcode-en cmp-languagenavigation__item--level-0 cmp-languagenavigation__item--active"> <a class="cmp-languagenavigation__item-link" hreflang="en" lang="en" rel="alternate" href="https://www.oclc.org/bibformats/en/controlsubfields.html">English</a> </li> <li class="cmp-languagenavigation__item cmp-languagenavigation__item--langcode-fr cmp-languagenavigation__item--level-0"> <a class="cmp-languagenavigation__item-link" hreflang="fr" lang="fr" rel="alternate" href="https://www.oclc.org/bibformats/fr.html">Français</a> </li> </ul> </nav> </div> <div class="text parbase section"> <div class="social-accounts"> <a href="http://www.facebook.com/pages/OCLC/20530435726" title="Like us on Facebook"><img class="img-nobrdr" src="/content/dam/common/images/social-icons/footer/footer-facebook.png" alt="Facebook"/></a> <a href="https://www.youtube.com/OCLCvideo" title="Watch videos on YouTube"><img class="img-nobrdr" src="/content/dam/common/images/social-icons/footer/footer-youtube.png" alt="YouTube"/></a> <a href="https://www.linkedin.com/company/oclc" title="Connect with us on LinkedIn"><img class="img-nobrdr" src="/content/dam/common/images/social-icons/footer/footer-linkedin.png" alt="LinkedIn"/></a> <a href="https://www.instagram.com/oclc_global" title="Connect with us on Instagram"><img class="img-nobrdr" src="/content/dam/common/images/social-icons/footer/footer-instagram.png" alt="Instagram"/></a> <a href="https://blog.oclc.org/next/" title="Read our blog"><img class="img-nobrdr" src="/content/dam/common/images/social-icons/footer/footer-blog.png" alt="Next blog"/></a> <a href="https://staging.prod.oclc.org/en/rss.html"><img title="Choose your news with RSS feeds" class="img-nobrdr" src="/content/dam/common/images/social-icons/footer/footer-rss.png" alt="RSS feeds" width="29" height="34"/></a> </div> </div> <div class="text parbase section"> <div class="copyright"> <p><span class="cq-rte-sprinkles" name="Sprinkles:copyright-current-year"><a href="https://policies.oclc.org/en/copyright.html" title="Read the OCLC copyright policy">&copy; 2024 OCLC</a></span>  <a href="https://policies.oclc.org/en/copyright/trademarks.html" title="View the OCLC and Affiliate Trademarks and Service Marks PDF">Domestic and international trademarks and/or service marks of OCLC, Inc. and its affiliates</a></p> <p>This site uses cookies. By continuing to browse the site, you are agreeing to our use of cookies. <a href="https://policies.oclc.org/en/privacy/cookie-statement.html">Find out more about OCLC's cookie notice.</a></p> <ul> <li><a href="https://help.oclc.org/Librarian_Toolbox/Contact_OCLC_Support">Feedback</a></li> <li><a href="https://policies.oclc.org/en/privacy/privacy-statement.html">Privacy statement</a></li> <li><a href="https://policies.oclc.org/en/accessibility.html">Accessibility statement</a></li> <li><a href="https://www.oclc.org/en/trust/compliance.html#trust-certifications">ISO 27001 Certificate</a></li> </ul> </div> </div> </div> </div> </div></div> </div> <div style="clear: both"></div> </div> <div class="connect-bar mod"> <div class="cont-page"> <!-- ComputerWorld logo should only appear on US/EN site --> </div> </div> <!-- Copyright --> <div class="cont-page copyright"> <div class="text parbase"> </div> </div> </footer> <script> (function ($) { $(function() { yepnope({ test: ($(".event-listing-show").length), yep: ['/apps/settings/wcm/designs/oclc/js/event-functions-v0.2.js'] }); }); })(jQuery); </script> </div> </div> </div> </div> <!-- UItoTop plugin --> <script src="/apps/settings/wcm/designs/oclc/js/jquery/jquery.ui.totop.js" type="text/javascript"></script> <script src="/apps/settings/wcm/designs/oclc/js/jquery/jquery.plusanchor.js" type="text/javascript"></script> <script type="text/javascript"> $(document).ready(function() { // Scroll to top $().UItoTop({ easingType: 'easeOutQuart' }); // Anchor scrolling $('#doc-nav').plusAnchor({ easing: 'easeOutQuart', speed: 1000 }); }); </script> <!-- jTruncate: http://blog.jeremymartin.name/2008/02/jtruncate-text-truncation-for-jquery.html --> <script src="/apps/settings/wcm/designs/oclc/js/jquery/jquery.jtruncate.js" type="text/javascript" charset="utf-8"></script> <!-- Modernizr: http://www.modernizr.com/ --> <script src="/apps/settings/wcm/designs/oclc/js/modernizr-2.6.2.min.js"></script> <!-- Global functions --> <script type="text/javascript"> $(function(){ yepnope({ test: $("#faq-set").length, yep: ['/apps/settings/wcm/designs/oclc/js/faqs-functions-v0.1.js'] }); }); </script> <script src="/apps/settings/wcm/designs/oclc/js/modal-functions-v0.1.js" type="text/javascript"></script> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10