137 lines
6.2 KiB
PHTML
Executable File
137 lines
6.2 KiB
PHTML
Executable File
<h1>Search Tips</h1>
|
|
|
|
<ul class="HelpMenu">
|
|
<li><a href="#Wildcard Searches">Wildcard Searches</a></li>
|
|
<li><a href="#Fuzzy Searches">Fuzzy Searches</a></li>
|
|
<li><a href="#Proximity Searches">Proximity Searches</a></li>
|
|
<li><a href="#Range Searches">Range Searches</a></li>
|
|
<li><a href="#Boosting a Term">Boosting a Term</a></li>
|
|
<li><a href="#Boolean operators">Boolean Operators</a>
|
|
<ul>
|
|
<li><a href="#AND">AND</a></li>
|
|
<li><a href="#+">+</a></li>
|
|
<li><a href="#OR">OR</a></li>
|
|
<li><a href="#NOT">NOT</a></li>
|
|
<li><a href="#-">-</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a href="Search for ISBN/ISSN">Search for ISBN/ISSN</a>
|
|
<li><a href="Search for call number">Search for call number</a>
|
|
</ul>
|
|
|
|
<dl class="Content">
|
|
<dt><a name="Wildcard Searches"></a><h4>Wildcard Searches</h4></dt>
|
|
<dd>
|
|
<p>To perform a single character wildcard search use the <strong>?</strong> symbol.</p>
|
|
<p>For example, to search for "woman" or "women" you can use the search:</p>
|
|
<pre class="code">wom?n</pre>
|
|
<p>To perform a multiple character, 0 or more, wildcard search use the <strong>*</strong> symbol.</p>
|
|
<p>For example, to search for test, tests or tester, you can use the search: </p>
|
|
<pre class="code">test*</pre>
|
|
<p>You can also use the wildcard searches in the middle of a term.</p>
|
|
<pre class="code">te*t</pre>
|
|
<p>Note: You cannot use a * or ? symbol as the first character of a search.</p>
|
|
</dd>
|
|
|
|
<dt><a name="Fuzzy Searches"></a><h4>Fuzzy Searches</h4></dt>
|
|
<dd>
|
|
<p>Use the tilde <strong>~</strong> symbol at the end of a <strong>Single</strong> word Term. For example, to search for variant spellings of "Tchaikovsky," use the fuzzy search: </p>
|
|
<pre class="code">Tchaikovsky~</pre>
|
|
<p>An additional parameter can specify the required similarity. The value is between 0 and 1, with a value closer to 1 only terms with a higher similarity will be matched. For example:</p>
|
|
<pre class="code">Tchaikovsky~0.8</pre>
|
|
<p>The default that is used if the parameter is not given is 0.5.</p>
|
|
</dd>
|
|
|
|
<dt><a name="Proximity Searches"></a><h4>Proximity Searches</h4></dt>
|
|
<dd>
|
|
<p>
|
|
Use the tilde <strong>~</strong> symbol at the end of a <strong>Multiple</strong> word Term.
|
|
For example, to search for economics and keynes that are within 10 words apart:
|
|
</p>
|
|
<pre class="code">"economics Keynes"~10</pre>
|
|
</dd>
|
|
|
|
<dt><a name="Range Searches"></a><h4>Range Searches</h4></dt>
|
|
<dd>
|
|
<p>
|
|
To perform a range search you can use the <strong>{ }</strong> characters.
|
|
For example to search for a term that starts with either A, B, or C:
|
|
</p>
|
|
<pre class="code">{A TO C}</pre>
|
|
<p>
|
|
The same can be done with numeric fields such as the Year:
|
|
</p>
|
|
<pre class="code">[2002 TO 2003]</pre>
|
|
</dd>
|
|
|
|
<dt><a name="Boosting a Term"></a><h4>Boosting a Term</h4></dt>
|
|
<dd>
|
|
<p>
|
|
To apply more value to a term, you can use the <strong>^</strong> character.
|
|
For example, you can try the following search:
|
|
</p>
|
|
<pre class="code">economics Keynes^5</pre>
|
|
<p>Which will give more value to the term "Keynes"</p>
|
|
</dd>
|
|
|
|
<dt><a name="Boolean operators"></a><h4>Boolean Operators</h4></dt>
|
|
<dd>
|
|
<p>
|
|
Boolean operators allow terms to be combined with logic operators.
|
|
The following operators are allowed: <strong>AND</strong>, <strong>+</strong>, <strong>OR</strong>, <strong>NOT</strong> and <strong>-</strong>.
|
|
</p>
|
|
<p>Note: Boolean operators must be ALL CAPS</p>
|
|
<dl>
|
|
<dt><a name="AND"></a><h5>AND</h5></dt>
|
|
<dd>
|
|
<p>The <strong>AND</strong> operator is the default conjunction operator. This means that if there is no Boolean operator between two terms, the AND operator is used. The AND operator matches records where both terms exist anywhere in the field of a record.</p>
|
|
<p>To search for records that contain "economics" and "Keynes" use the query: </p>
|
|
<pre class="code">economics Keynes</pre>
|
|
<p>or</p>
|
|
<pre class="code">economics AND Keynes</pre>
|
|
</dd>
|
|
<dt><a name="+"></a><h5>+<h5></dt>
|
|
<dd>
|
|
<p>The "+" or required operator requires that the term after the "+" symbol exist somewhere in the field of a record.</p>
|
|
<p>To search for records that must contain "economics" and may contain "Keynes" use the query:</p>
|
|
<pre class="code">+economics Keynes</pre>
|
|
</dd>
|
|
<dt><a name="OR"></a><h5>OR</h5></dt>
|
|
<dd>
|
|
<p>The OR operator links two terms and finds a matching record if either of the terms exist in a record.</p>
|
|
<p>To search for documents that contain either "economics Keynes" or just "Keynes" use the query:</p>
|
|
<pre class="code">"economics Keynes" OR Keynes</pre>
|
|
</dd>
|
|
<dt><a name="NOT"></a><h5>NOT</h5></dt>
|
|
<dd>
|
|
<p>The NOT operator excludes records that contain the term after NOT.</p>
|
|
<p>To search for documents that contain "economics" but not "Keynes" use the query: </p>
|
|
<pre class="code">economics NOT Keynes</pre>
|
|
<p>Note: The NOT operator cannot be used with just one term. For example, the following search will return no results:</p>
|
|
<pre class="code">NOT economics</pre>
|
|
</dd>
|
|
<dt><a name="-"></a><h5>-</h5></dt>
|
|
<dd>
|
|
<p>The <Strong>-</strong> or prohibit operator excludes documents that contain the term after the "-" symbol.</p>
|
|
<p>To search for documents that contain "economics" but not "Keynes" use the query: </p>
|
|
<pre class="code">economics -Keynes</pre>
|
|
</dd>
|
|
</dl>
|
|
</dd>
|
|
<dt><a name="Search for ISBN/ISSN"></a><h4>Search for ISBN/ISSN</h4></dt>
|
|
<dd>
|
|
<p>To search with ISBN/ISSN, enter it without hyphens.</p>
|
|
<p>Example: If you want to search with ISBN 978-3-631-71757-8, enter</p>
|
|
<pre class="code">9783631717578</pre>
|
|
</dd>
|
|
<dt><a name="Search for call number"></a><h4>Search for call number</h4></dt>
|
|
<dd>
|
|
<p>When searching for call numbers, please note: Spaces in the call number are replaced by underscores, other special characters are omitted.</p>
|
|
<p>Examples: </p>
|
|
<p>You want to search for the call number XOB 33/0578, then enter </p>
|
|
<pre class="code">XOB_330578</pre>
|
|
<p>When searching for call number -/362,10, enter</p>
|
|
<pre class="code">362,10</pre>
|
|
</dd>
|
|
</dl>
|