-
Notifications
You must be signed in to change notification settings - Fork 0
/
GUI_HELP.html
59 lines (54 loc) · 1.68 KB
/
GUI_HELP.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<style>
.code {
background-color: LightGray;
}
.overall {
font-size: 150%;
background-color: linen;
}
body {
background-color: linen;
}
h1 {
color: maroon;
margin-left: 40px;
}
</style> <title></title>
</head>
<body> <span class="overall">
<h1 class="h1">Search syntax</h1>
<h3> Unix-style: </h3>
<ul>
<li> <span class="code">*</span> matches everything,</li>
<li><span class="code">[seq] </span> matches any character in seq</li>
<li><span class="code">[!seq]</span> matches any character not in seq </li>
</ul>
<ul>
e.g. type <span class="code">*Weinberg*</span> to search for anything
containing "Weinberg"
</ul>
<p></p>
<h3> Regulars expressions:</h3>
<p><a href="https://docs.python.org/3/library/re.html#module-re">
https://docs.python.org/3/library/re.html\#module-re </a></p>
<ul>
For example:<br>
<li><span class="code">Isaac (?!Asimov)</span> will match "Isaac " only
if it is not followed by "Asimov".</li>
<li> <span class="code">weinb.*cosm</span> will search for anything
containing "weinb" followed by any sequence of characters further
folowed by the sequence "cosm" </li>
</ul>
<h1 class="h1"> Tags Notation:</h1>
<ul>
<li>The names starting with G: are names of Bibdesk static groups. They
can be created by issuing <span class="code">./bibgroups2keywords.py
-b myfile.bib -k -a</span> </li>
</ul>
</span>
</body>
</html>