Chapter 46. Multilingual Search in Evergreen

Table of Contents

Search Syntax
Advanced Search
Adding Subfields to the Index

It is now possible to search for items that contain multiple languages in the Evergreen catalog. This will help facilitate searching for bilingual and multilingual materials, including specific translations, alternative languages, and to exclude specific translations from a search.

To identify the language of materials, Evergreen looks at two different fields in the MARC bibliographic record:

Multilingual searches can be conducted by constructing searches using specific language codes as a filter. To search using specific language codes, use the Record Attribute Definition name item_lang followed by the appropriate MARC Code for Languages. For example, item_lang(spa) will search only for Spanish language materials.

The language filter can be appended to any search. For example, a title search for pippi longstocking item_lang(eng,swe) will search for English or Swedish language publications of the title.

media/multilingual_search1.png

Search Syntax

To search for materials that contain multiple languages (Boolean AND), the search filters can be constructed in the following ways:

  1. Implicit Boolean filtering: item_lang(eng) item_lang(spa)

    1. Evergreen assumes a Boolean AND between the search filters
  2. Explicit Boolean filtering: item_lang(eng) && item_lang(spa)

    1. The double ampersands (&&) explicitly tell Evergreen to apply a Boolean AND to the search filters

To search for materials that contain at least one of the searched languages (Boolean OR), the search filters can be constructed in the following ways:

  1. List filtering: item_lang(eng,spa)

    1. Listing the language codes, separated by a comma, within the search filter, tells Evergreen to apply a Boolean OR to the search filters
  2. Explicit Boolean filtering: item_lang(eng) || item_lang(spa)

    1. The double pipes (||) explicitly tell Evergreen to apply a Boolean OR to the search filters

To search for materials that contain a specific language and exclude another language from the search results (Boolean NOT), the search filters can be constructed as follows:

  1. Boolean filtering: item_lang(spa) -item_lang(eng)

    1. The dash (-) explicitly tells Evergreen to apply a Boolean NOT to the english language search filter. Evergreen assumes a Boolean AND between the search filters.

To exclude multiple languages from search results (Boolean NOT), the search filters can be constructed as follows:

  1. Boolean filtering: -item_lang(eng) -item_lang(spa)

    1. The dash (-) explicitly tells Evergreen to apply a Boolean NOT to both search filters. Evergreen assumes a Boolean AND between the search filters.

To conduct a search for materials that do not contain at least of the of the languages searched (Boolean “NOT” and “OR”), the search filters can be constructed in the following ways:

  1. List filtering: -item_lang(eng,spa)

    1. Explicit Boolean filtering: -item_lang(eng) || -item_lang(spa)