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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% CHARACTER SET: Cyrillic (CP 1251)
%%
%% SORTING ORDER: First Cyrillic then Latin
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% FILE FORMAT
%%
%% The codepage and sorting order (CS) file defines how BibTeX will treat an
%% 8-bit character set, specifically which characters are to be treated as
%% letters, the upper/lower case relationships between characters, and the
%% sorting order of characters.
%%
%% The CS file may contain a number of sections, each presented in the
%% form of a TeX macro:
%%
%% \section-name{
%% <section definitions>
%% }
%%
%% Four sections are currently supported: \lowupcase, \lowercase, \uppercase
%% and \order. The syntax of the four supported sections is summarised below.
%%
%% 8-bit characters may be entered naturally, but to avoid problems with
%% character set translation or corruption, they can also be entered using
%% the TeX-style portable notation for character codes, i.e. ^^XX, where XX
%% is the hexadecimal value ofthe character code.
%%
%% Reading of the sections ends when the first '}' character is reached, so
%% '}' can't be included in a section. You can't use ^^7d either.
%%
%% The percent sign ('%') is used to introduce a trailing comment - it and
%% all remaining characters on a line are ignored. ^^25 has the same effect.
%%
%%
%% \lowupcase section
%%
%% The \lowupcase section of the CS file is used to define the lower
%% /upper and upper/lower case relationship of pairs of specified
%% characters. It is only used if the relationship is symmetrical - use
%% \lowercase or \upcase if it isn't.
%%
%% The syntax of the \lowupcase section is:
%%
%% \lowupcase{
%% <LC-1> <UC-1> % Comment begins with a percent sign
%% <LC-2> <UC-2>
%% ...
%% <LC-N> <UC-N>
%% }
%%
%% Each <LC-n> <UC-n> pair of characters defines that the upper case
%% equivalent of <LC-n> is <UC-n> *and* the lower case equivalent of
%% <UC-n> is <LC-n>.
%%
%% You cannot redefine the lower or upper case equivalent of an ASCII
%% character (code < 128), so all instances of <LC-n> and <UC-n>
%% (i.e. both sides of the relationship) must have codes > 127.
%%
%%
%% \lowercase section
%%
%% The \lowercase section of the CS file is used to define the lower case
%% equivalent of specified characters. It should normally only be used
%% if the relationship isn't symmetrical - use \lowupcase if it is.
%%
%% The syntax of the \lowercase section is:
%%
%% \lowercase{
%% <UC-1> <LC-1> % Comment begins with a percent sign
%% <UC-2> <LC-2>
%% ...
%% <UC-N> <LC-N>
%% }
%%
%% Each <LC-n> <UC-n> pair of characters defines that the lower case
%% equivalent of <UC-n> is <LC-n>.
%%
%% You cannot redefine the lower case equivalent of an ASCII character
%% (code < 128), so all instances of <UC-n> (i.e. the left hand side
%% of the relationship) must have codes > 127.
%%
%%
%% \uppercase section
%%
%% The \uppercase section of the CS file is used to define the upper case
%% equivalent of specified characters. It should normally only be used
%% if the relationship isn't symmetrical - use \lowupcase if it is.
%%
%% The syntax of the \uppercase section is:
%%
%% \uppercase{
%% <LC-1> <UC-1> % Comment begins with a percent sign
%% <LC-2> <UC-2>
%% ...
%% <LC-N> <UC-N>
%% }
%%
%% Each <LC-n> <UC-n> pair of characters defines that the upper case
%% case equivalent of <LC-n> is <UC-n>.
%%
%% You cannot redefine the upper case equivalent of an ASCII character
%% (code < 128), so all instances of <LC-n> (i.e. the left hand side
%% of the relationship) must have codes > 127.
%%
%%
%% \order section
%%
%% The \order section of the CS file is used to define the order in which
%% characters are sorted.
%%
%% The syntax of the \order section is:
%%
%% \order{
%% <char-1> % Comment begins with a percent sign
%% <char-2> <char-3> % whitespace between the chars
%% <char-4> - <char-5> % a hyphen between the chars
%% <char-4> _ <char-5> % an underscore between the chars
%% ...
%% <char-n>
%% }
%%
%% All characters on the same line are given the same sorting weight.
%%
%% The construct <char-1> <underscore> <char-2> is used to denote that
%% all characters in the range <char-1> to <char-2> should be given the
%% same sorting weight. For example, "A _ Z" would cause all ASCII
%% upper case alphabetical characters to have the same sorting weight
%% and would be equivalent to placing all 26 characters on the same line.
%%
%% The construct <char-1> <hyphen> <char-2> is used to denote that all
%% characters in the range <char-1> to <char-2> should be given an
%% ascending set of sorting weights, starting with <char-1> and ending
%% with <char-2>. For example, "A - Z" would cause all upper case ASCII
%% alphabetical characters to be sorted in ascending order and would be
%% equivalent to placing 'A' on the first line, 'B' on the second,
%% through to 'Z' on the 26th line.
%%
%% The characters at the beginning of the order section are given a lower
%% sorting weight than characters occuring later. When sorting
%% alphabetically, characters with the lowest weight come first.
%%
%% All characters not in the \order section (including ASCII characters)
%% are given the same very high sorting weight to ensure that they come
%% last when sorting alphabetically.
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%
%% CHARACTER SET
%%
\lowupcase{
}
%%
%% SORTING ORDER
%%
%%
\order{
0-9
A a
B b
C c
D d
E e
F f
G g
H h
I i
J j
K k
L l
M m
N n
O o
P p
Q q
R r
S s
T t
U u
V v
W w
X x
Y y
Z z
}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% END OF FILE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|