Home | History | Annotate | Download | only in symbols
      1 // based on a keyboard map from an 'xkb/symbols/de' file
      2 
      3 default
      4 xkb_symbols "basic" {
      5 
      6     include "latin(type4)"
      7 
      8     name[Group1]="German";
      9 
     10     key <AE02>	{ [         2,   quotedbl,  twosuperior,    oneeighth ]	};
     11     key <AE03>	{ [         3,    section, threesuperior,    sterling ]	};
     12     key <AE04>	{ [         4,     dollar,   onequarter,     currency ]	};
     13 
     14     key <AE11> {type[Group1]="FOUR_LEVEL_PLUS_LOCK",  symbols[Group1]=
     15                   [ssharp, question, backslash, questiondown, 0x1001E9E ]};
     16 // The unicode capital letter sharp s U+1E9E is transformed to "SS"
     17 // to match the rules for capitalizing sharp s in german.
     18 // If the capital sharp s is needed, delete the line
     19 // starting with <U1E9C> from /usr/share/X11/locale/iso8859-15/Compose.
     20 // If both doubled S and capital sharp s are needed, use  0x1001E9E
     21 // for capital sharp s and some free unicode codepoint like 0x1001E9C
     22 // for doubled S. Don`t forget to change this in the Compose file, too.
     23 
     24     key <AE12>	{ [dead_acute, dead_grave, dead_cedilla,  dead_ogonek ]	};
     25 
     26     key <AD03>	{ [         e,          E,     EuroSign,     EuroSign ]	};
     27     key <AD06>	{ [         z,          Z,    leftarrow,          yen ]	};
     28     key <AD11>	{ [udiaeresis, Udiaeresis, dead_diaeresis, dead_abovering ] };
     29     key <AD12>	{ [      plus,   asterisk,   asciitilde,  macron ]	};
     30 
     31     key <AC02>  { [         s,          S,                U017F,     U1E9E    ] };
     32     key <AC07>  { [         j,          J,        dead_belowdot, dead_abovedot   ] };
     33     key <AC10>	{ [odiaeresis, Odiaeresis, dead_doubleacute, dead_belowdot ] };
     34     key <AC11>	{ [adiaeresis, Adiaeresis, dead_circumflex, dead_caron ] };
     35     key <TLDE>	{ [dead_circumflex, degree,	U2032,    U2033	] };
     36 
     37     key <BKSL>	{ [numbersign, apostrophe, rightsinglequotemark,   dead_breve ]	};
     38     key <AB01>	{ [         y,          Y,       guillemotright,    U203A 	] };
     39     key <AB02>	{ [         x,          X,        guillemotleft,    U2039 	] };
     40     key <AB04>	{ [         v,          V,   doublelowquotemark, singlelowquotemark ]	};
     41     key <AB05>	{ [         b,          B,  leftdoublequotemark, leftsinglequotemark ] };
     42     key <AB06>	{ [         n,          N, rightdoublequotemark, rightsinglequotemark ]	};
     43     key <AB08>  { [     comma,  semicolon,       periodcentered,     multiply	] };
     44     key <AB09>	{ [    period,      colon,                U2026,     division 	] };
     45     key <AB10>	{ [     minus, underscore,               endash,     emdash	] };
     46 
     47     include "kpdl(comma)"
     48 
     49     include "level3(ralt_switch)"
     50 };
     51 
     52 partial alphanumeric_keys
     53 xkb_symbols "legacy" {
     54     // previous standard German layout with tilde as dead key
     55 
     56     include "de(basic)"
     57     name[Group1]="German (legacy)";
     58 
     59     key <AD12>	{ [      plus,   asterisk,   dead_tilde,  dead_macron ]	};
     60 };
     61 
     62 partial alphanumeric_keys
     63 xkb_symbols "nodeadkeys" {
     64 
     65     // modify the basic German layout to not have any dead keys
     66 
     67     include "de(basic)"
     68     name[Group1]="German (eliminate dead keys)";
     69 
     70     key <TLDE>	{ [asciicircum,    degree,      notsign,      notsign ]	};
     71     key <AE12>	{ [     acute,      grave,      cedilla,      cedilla ]	};
     72     key <AD11>	{ [udiaeresis, Udiaeresis,    diaeresis,    diaeresis ]	};
     73     key <AD12>	{ [      plus,   asterisk,   asciitilde,       macron ]	};
     74     key <AC10>	{ [odiaeresis, Odiaeresis,  doubleacute,  doubleacute ]	};
     75     key <AC11>	{ [adiaeresis, Adiaeresis,  asciicircum,  asciicircum ]	};
     76     key <BKSL>	{ [numbersign, apostrophe,        grave,        grave ]	};
     77 };
     78 
     79 partial alphanumeric_keys
     80 xkb_symbols "deadgraveacute" {
     81     // modify the basic German layout to have only acute and grave
     82     // as dead keys (tilde and circumflex are needed as spacing characters
     83     // in many programming languages)
     84 
     85     include "de(basic)"
     86     name[Group1]="German (dead grave acute)";
     87 
     88     key <TLDE>	{ [asciicircum,    degree,      notsign,      notsign ]	};
     89     key <AD12>	{ [      plus,   asterisk,   asciitilde,  dead_macron ]	};
     90     key <BKSL>	{ [numbersign, apostrophe,        grave,        grave ]	};
     91 };
     92 
     93 partial alphanumeric_keys
     94 xkb_symbols "deadacute" {
     95     // modify the basic German layout to have only acute as
     96     // dead keys (ASCII grave, tilde and circumflex are needed as
     97     // spacing characters in many programming languages and text formatters)
     98 
     99     include "de(deadgraveacute)"
    100 
    101     name[Group1]="German (dead acute)";
    102 
    103     key <AE12>	{ [dead_acute,      grave, dead_cedilla,  dead_ogonek ]	};
    104     key <BKSL>	{ [numbersign, apostrophe,   dead_grave,   dead_grave ]	};
    105 };
    106 
    107 
    108 partial alphanumeric_keys
    109 xkb_symbols "T3" {
    110     name[Group1]="German (T3)";
    111 
    112     key.type[Group1] = "EIGHT_LEVEL";
    113     key <TLDE> { [ dead_circumflex,          degree,        multiply,        NoSymbol,           U204A,            hyphen,             bar,        NoSymbol ] };
    114     key <AE01> { [               1,          exclam, rightsinglequotemark,   NoSymbol,     onesuperior,        exclamdown,           U02B9,        NoSymbol ] };
    115     key <AE02> { [               2,        quotedbl,     twosuperior,        NoSymbol,     twosuperior,          currency,           U02BA,        NoSymbol ] };
    116     key <AE03> { [               3,         section,   threesuperior,        NoSymbol,   threesuperior,          sterling,           U02BF,        NoSymbol ] };
    117     key <AE04> { [               4,          dollar,          emdash,        NoSymbol,      onequarter,            0x20AC,           U02BE,        NoSymbol ] };
    118     key <AE05> { [               5,         percent,      exclamdown,        NoSymbol,         onehalf,           uparrow,           U02C1,        NoSymbol ] };
    119     key <AE06> { [               6,       ampersand,    questiondown,        NoSymbol,   threequarters,         downarrow,           U02C0,        NoSymbol ] };
    120     key <AE07> { [               7,           slash,       braceleft,        NoSymbol,       oneeighth,         leftarrow,       braceleft,        NoSymbol ] };
    121     key <AE08> { [               8,       parenleft,     bracketleft,        NoSymbol,    threeeighths,        rightarrow,      braceright,        NoSymbol ] };
    122     key <AE09> { [               9,      parenright,    bracketright,        NoSymbol,     fiveeighths,         plusminus,     bracketleft,        NoSymbol ] };
    123     key <AE10> { [               0,           equal,      braceright,        NoSymbol,    seveneighths,         trademark,    bracketright,        NoSymbol ] };
    124     key <AE11> { [          ssharp,        question,       backslash,        NoSymbol,       backslash,      questiondown,           U02BB,        NoSymbol ] };
    125     key <AE12> { [      dead_acute,      dead_grave,   dead_abovedot,        NoSymbol,    dead_cedilla,       dead_ogonek,         notsign,        NoSymbol ] };
    126 
    127     key.type[Group1] = "EIGHT_LEVEL_ALPHABETIC";
    128     key <AD01> { [               q,               Q,              at,        NoSymbol,           U0242,           U0241,           U030D,        NoSymbol ] };
    129     key <AD02> { [               w,               W,      dead_caron,        NoSymbol,           U02B7,           U2126,   dead_abovedot,        NoSymbol ] };
    130     key <AD03> { [               e,               E,        EuroSign,        NoSymbol,              oe,              OE,      dead_breve,        NoSymbol ] };
    131     key <AD04> { [               r,               R,  dead_diaeresis,        NoSymbol,       paragraph,      registered, dead_circumflex,        NoSymbol ] };
    132     key <AD05> { [               t,               T,     dead_macron,        NoSymbol,           UA78C,           UA78B,  dead_diaeresis,        NoSymbol ] };
    133     key <AD06> { [               z,               Z, dead_doubleacute,       NoSymbol,           U027C,             yen, dead_invertedbreve,     NoSymbol ] };
    134     key <AD07> { [               u,               U,      dead_breve,        NoSymbol,           U0223,           U0222,      dead_caron,        NoSymbol ] };
    135     key <AD08> { [               i,               I,      dead_tilde,        NoSymbol,        idotless,           U214D, dead_abovecomma,        NoSymbol ] };
    136     key <AD09> { [               o,               O,  dead_abovering,        NoSymbol,          oslash,          Oslash,       dead_horn,        NoSymbol ] };
    137     key <AD10> { [               p,               P,       dead_hook,        NoSymbol,           thorn,           THORN,       dead_hook,        NoSymbol ] };
    138     key <AD11> { [      udiaeresis,      Udiaeresis,       dead_horn,        NoSymbol,           U017F,  dead_abovering,      dead_grave,        NoSymbol ] };
    139     key.type[Group1] = "EIGHT_LEVEL";
    140     key <AD12> { [            plus,        asterisk,      asciitilde,        NoSymbol,      dead_tilde,     dead_macron,              at,        NoSymbol ] };
    141 
    142     key.type[Group1] = "ONE_LEVEL";
    143     key <CAPS>  { [ Caps_Lock	]	};
    144     key.type[Group1] = "EIGHT_LEVEL_ALPHABETIC";
    145     key <AC01> { [               a,               A,   lessthanequal,        NoSymbol,              ae,              AE,           U0329,        NoSymbol ] };
    146     key <AC02> { [               s,               S, greaterthanequal,       NoSymbol,          ssharp,         section,   dead_belowdot,        NoSymbol ] };
    147     key <AC03> { [               d,               D,           U2300,        NoSymbol,             eth,             ETH, dead_belowbreve,        NoSymbol ] };
    148     key <AC04> { [               f,               F,         minutes,        NoSymbol,           U0294,     ordfeminine, dead_belowcircumflex,   NoSymbol ] };
    149     key <AC05> { [               g,               G,         seconds,        NoSymbol,             eng,             ENG, dead_belowmacron,       NoSymbol ] };
    150     key <AC06> { [               h,               H,           U1E9E,        NoSymbol,           U0272,           U019D,           U0332,        NoSymbol ] };
    151     key <AC07> { [               j,               J,    dead_cedilla,        NoSymbol,           U0133,           U0132,  dead_belowring,        NoSymbol ] };
    152     key <AC08> { [               k,               K, dead_belowcomma,        NoSymbol,             kra, dead_belowcomma,     dead_stroke,        NoSymbol ] };
    153     key <AC09> { [               l,               L,     dead_ogonek,        NoSymbol,         lstroke,         Lstroke,           U0338,        NoSymbol ] };
    154     key <AC10> { [      odiaeresis,      Odiaeresis,   dead_belowdot,        NoSymbol,      dead_acute, dead_doubleacute,         degree,        NoSymbol ] };
    155     key <AC11> { [      adiaeresis,      Adiaeresis,     dead_stroke,        NoSymbol,           U019B,           U1E9E,         minutes,        NoSymbol ] };
    156     key.type[Group1] = "EIGHT_LEVEL";
    157     key <BKSL> { [      numbersign,      apostrophe,      registered,        NoSymbol,           schwa,           SCHWA,         seconds,        NoSymbol ] };
    158 
    159     key <LSGT> { [            less,         greater,             bar,        NoSymbol,           U0149,       brokenbar,           U266A,        NoSymbol ] };
    160     key.type[Group1] = "EIGHT_LEVEL_ALPHABETIC";
    161     key <AB01> { [               y,               Y,           U203A,        NoSymbol,           U0292,           U01B7,   guillemotleft,        NoSymbol ] };
    162     key <AB02> { [               x,               X,  guillemotright,        NoSymbol, doublelowquotemark, singlelowquotemark, guillemotright,   NoSymbol ] };
    163     key <AB03> { [               c,               C,       copyright,        NoSymbol,            cent,       copyright,  Greek_horizbar,        NoSymbol ] };
    164     key <AB04> { [               v,               V,   guillemotleft,        NoSymbol, leftdoublequotemark, leftsinglequotemark,   U2039,        NoSymbol ] };
    165     key <AB05> { [               b,               B,           U2039,        NoSymbol, rightdoublequotemark, rightsinglequotemark, U203A,        NoSymbol ] };
    166     key <AB06> { [               n,               N,          endash,        NoSymbol,           U019E,           U0220,          endash,        NoSymbol ] };
    167     key <AB07> { [               m,               M,        Greek_mu,        NoSymbol,              mu,       masculine,          emdash,        NoSymbol ] };
    168     key.type[Group1] = "EIGHT_LEVEL";
    169     key <AB08> { [           comma,       semicolon,           U02BB,        NoSymbol,        ellipsis,        multiply,          dollar,        NoSymbol ] };
    170     key <AB09> { [          period,           colon,           U200C,        NoSymbol,  periodcentered,        division,      numbersign,        NoSymbol ] };
    171     key <AB10> { [           minus,      underscore,          hyphen,        NoSymbol,           U0140,           U013F,           U2011,        NoSymbol ] };
    172 
    173     key <SPCE> { [           space,           space,    nobreakspace,        NoSymbol,           U202F,           U200C,    nobreakspace,        NoSymbol ] };
    174 
    175     include "kpdl(comma)"
    176 
    177     include "level5(modifier_mapping)"
    178     include "level3(modifier_mapping)"
    179     key.type[Group1] = "THREE_LEVEL";
    180     key <LFSH> { [ Shift_L, Shift_L, ISO_Level5_Latch ] };
    181     key <RTSH> { [ Shift_R, Shift_R, ISO_Level5_Latch ] };
    182     key <RALT> { [ ISO_Level3_Latch, ISO_Level5_Latch, ISO_Level5_Latch ] };
    183  };
    184 
    185 partial alphanumeric_keys
    186 xkb_symbols "ro" {
    187     // add romanian-specific letters to the basic German layout.
    188     // Romanian symbols are accessible with combination of <AltGr> and
    189     // 'a', 's', 't', 'i', ' (&auml)' (+<Shift> for capital letters).
    190     // To view romanian-specific symbols, add "export LC_CTYPE=ro_RO"
    191     // or "export LC_CTYPE=de_DE.utf8" to your .profile.
    192 
    193     include "de(basic)"
    194 
    195     name[Group1]="Romanian (Germany)";
    196 
    197     key <AD05> { [         t,    T,           tcedilla,     Tcedilla    ] };
    198     key <AD08> { [         i,    I,        icircumflex,  Icircumflex    ] };
    199     key <AC01> { [         a,    A,        acircumflex,  Acircumflex    ] };
    200     key <AC02> { [         s,    S,           scedilla,     Scedilla    ] };
    201     key <AC11> { [ adiaeresis,   Adiaeresis,    abreve,       Abreve    ] };
    202 };
    203 
    204 partial alphanumeric_keys
    205 xkb_symbols "ro_nodeadkeys" {
    206     // add romanian-specific letters to the German nodeadkeys layout.
    207     // Read the comment for de_ro !
    208 
    209     include "de(nodeadkeys)"
    210     name[Group1]="Romanian (Germany, eliminate dead keys)";
    211 
    212     key <AD05> { [         t,    T,           tcedilla,     Tcedilla    ] };
    213     key <AD08> { [         i,    I,        icircumflex,  Icircumflex    ] };
    214     key <AC01> { [         a,    A,        acircumflex,  Acircumflex    ] };
    215     key <AC02> { [         s,    S,           scedilla,     Scedilla    ] };
    216     key <AC11> { [ adiaeresis,   Adiaeresis, abreve,       Abreve       ] };
    217 };
    218 
    219 // German Dvorak keymap by Thorsten Staerk (www.staerk.de/thorsten)
    220 // Have acute and grave as dead keys, tilde and circumflex alive as they are needed 
    221 // in many programming languages.
    222 // to use this keymap, use a 105-key-keyboard and the command setxkbmap -model pc105 -layout dvorak -variant de
    223 // source: http://www-lehre.informatik.uni-osnabrueck.de/~rfreund/dvorak.php
    224 partial alphanumeric_keys
    225 xkb_symbols "dvorak" {
    226     include "us(dvorak)"
    227 
    228     name[Group1]="German (Dvorak)";
    229 
    230     key <TLDE> { [ asciicircum, degree ] };
    231 
    232     key <AE01> { [ 1, exclam, onesuperior ] };
    233     key <AE02> { [ 2, quotedbl, twosuperior ] };
    234     key <AE03> { [ 3, section, threesuperior ] };
    235     key <AE04> { [ 4, dollar, bar ] };
    236     key <AE05> { [ 5, percent, bar ] };
    237     key <AE06> { [ 6, ampersand, brokenbar ] };
    238     key <AE07> { [ 7, slash, braceleft ] };
    239     key <AE08> { [ 8, parenleft, bracketleft ] };
    240     key <AE09> { [ 9, parenright, bracketright ] };
    241     key <AE10> { [ 0, equal, braceright ] };
    242     key <AE11> { [ plus, asterisk, asciitilde ] };
    243     key <AE12> { [ less, greater, dead_grave ] };
    244 
    245     key <AD01> { [ udiaeresis, Udiaeresis, at ] };
    246     key <AD02> { [ comma, semicolon, dead_diaeresis ] };
    247     key <AD03> { [ period, colon ] };
    248     key <AD08> { [ c, C, copyright, Cacute ] };
    249     key <AD09> { [ t, T, trademark ] };
    250     key <AD10> { [ z, Z, zabovedot, Zabovedot ] };
    251     key <AD11> { [ question, ssharp ] };
    252     key <AD12> { [ slash, backslash, dead_acute ] };
    253 
    254     key <AC01> { [ a, A, at, aogonek ] };
    255     key <AC02> { [ o, O, oacute, Oacute ] };
    256     key <AC03> { [ e, E, EuroSign, eogonek ] };
    257     key <AC04> { [ i, I ] };
    258     key <AC05> { [ u, U ] };
    259     key <AC06> { [ h, H ] };
    260     key <AC07> { [ d, D ] };
    261     key <AC08> { [ r, R, registered ] };
    262     key <AC09> { [ n, N, nacute, Nacute ] };
    263     key <AC10> { [ s, S, sacute, Sacute] };
    264     key <AC11> { [ l, L, lstroke, Lstroke ] };
    265 
    266     key <AB01> { [ odiaeresis, Odiaeresis ] };
    267     key <AB02> { [ q, Q, at ] };
    268     key <AB07> { [ m, M, mu ] };
    269     key <AB10> { [ numbersign, apostrophe ] };
    270 
    271     key <BKSL> { [ minus, underscore, hyphen, diaeresis] };
    272 
    273     key <LSGT> { [ adiaeresis, Adiaeresis, bar ] };
    274 
    275     include "level3(ralt_switch)"
    276 };
    277 
    278 partial alphanumeric_keys
    279 xkb_symbols "Sundeadkeys" {
    280 
    281     // For naming consistency
    282 
    283     include "de(basic)"
    284 
    285 };
    286 
    287 partial alphanumeric_keys
    288 xkb_symbols "sundeadkeys" {
    289 
    290     // For naming consistency
    291 
    292     include "de(Sundeadkeys)"
    293 
    294     name[Group1]="German (Sun dead keys)";
    295 };
    296 
    297 
    298 // German Neo-Layout Version 2
    299 // adopted 2004 by Hanno Behrens <Hanno.Behrens (a] gmx.de>
    300 // inspired by Dvorak/de-ergo  http://www.goebel-consult.de/de-ergo/
    301 //
    302 // Authors: 
    303 //      Stephan Hilb <stephan at ehilb dot de>
    304 //      <lucky at zankt dot net>
    305 //      Benjamin Kellermann <Benjamin dot Kellermann at gmx dot Germany>
    306 //      Erik Streb <mail at erikstreb dot de>
    307 //        and many other contributors
    308 //
    309 //      http://www.neo-layout.org
    310 //
    311 // $Revision$, $Date$
    312 
    313 partial alphanumeric_keys modifier_keys keypad_keys
    314 xkb_symbols "neo_base" {
    315 
    316     // Levels in Neo jargon
    317     // --------------------------------------------------------------
    318     // Ebene 1: normal
    319     // Ebene 2: Shift
    320     // Ebene 3: Mod3
    321     // Ebene 4: Mod4 (for marking something use Shift + Mod4)
    322     // Ebene 5: Shift + Mod3
    323     // Ebene 6: Mod3 + Mod4
    324     // Compose (not a level): Mod3 + Tab
    325     // Feststelltaste (Capslock): Shift + Shift
    326     // Mod4-Lock: Mod4 + Mod4
    327     // Mod4-Lock: Shift + Mod3 + Tab
    328 
    329     // Legend
    330     // ===============
    331     // Levels in Xkbmap jargon to be found here in the definitions. 
    332     // These are the levels used, and Xorg's translations:
    333     // --------------------------------------------------------------
    334     // Xorg:       Level1                   Level2                   Level3                   Level4                   Level5                   Level6                   Level7                   Level8                   
    335     // Neo:        Ebene1                   Ebene2                   Ebene3                   Ebene5                   Ebene4                   Pseudo-Ebene             Ebene6                   ???                      
    336     // Keys (Neo): None                     Shift                    Mod3                     Mod3 + Shift             Mod4                     Mod4 + Shift             Mod3 + Mod4              Mod3 + Mod4 + Shift      
    337 
    338 
    339     // Alphanumeric-keys
    340     // ===============
    341     key.type[Group1] = "EIGHT_LEVEL";
    342 
    343     // Tab as Multi_key (Compose)
    344     // --------------------------------------------------------------
    345     key  <TAB> { [ Tab,                     ISO_Left_Tab,            Multi_key,               ISO_Level5_Lock,         NoSymbol,                NoSymbol,                NoSymbol,                ISO_Level5_Lock          ] };
    346 
    347 
    348     // Number row
    349     // --------------------------------------------------------------
    350     key <TLDE> { [ dead_circumflex,         dead_caron,              U21BB,                   U02DE,                   dead_abovedot,           Pointer_EnableKeys,      dead_belowdot,           NoSymbol                 ] };
    351 
    352     key <AE01> { [ 1,                       degree,                  onesuperior,             onesubscript,            ordfeminine,             NoSymbol,                notsign,                 NoSymbol                 ] };
    353     key <AE02> { [ 2,                       section,                 twosuperior,             twosubscript,            masculine,               NoSymbol,                logicalor,               NoSymbol                 ] };
    354     key <AE03> { [ 3,                       U2113,                   threesuperior,           threesubscript,          numerosign,              NoSymbol,                logicaland,              NoSymbol                 ] };
    355     key <AE04> { [ 4,                       guillemotright,          U203A,                   femalesymbol,            NoSymbol,                NoSymbol,                U22A5,                   NoSymbol                 ] };
    356     key <AE05> { [ 5,                       guillemotleft,           U2039,                   malesymbol,              periodcentered,          NoSymbol,                U2221,                   NoSymbol                 ] };
    357     key <AE06> { [ 6,                       dollar,                  cent,                    U26A5,                   sterling,                NoSymbol,                U2225,                   NoSymbol                 ] };
    358 
    359     key <AE07> { [ 7,                       EuroSign,                yen,                     U03F0,                   currency,                NoSymbol,                rightarrow,              NoSymbol                 ] };
    360     key <AE08> { [ 8,                       doublelowquotemark,      singlelowquotemark,      U27E8,                   Tab,                     ISO_Left_Tab,            U221E,                   NoSymbol                 ] };
    361     key <AE09> { [ 9,                       leftdoublequotemark,     leftsinglequotemark,     U27E9,                   KP_Divide,               KP_Divide,               variation,               NoSymbol                 ] };
    362     key <AE10> { [ 0,                       rightdoublequotemark,    rightsinglequotemark,    zerosubscript,           KP_Multiply,             KP_Multiply,             emptyset,                NoSymbol                 ] };
    363 
    364     key <AE11> { [ minus,                   emdash,                  NoSymbol,                U2011,                   KP_Subtract,             KP_Subtract,             hyphen,                  NoSymbol                 ] };
    365     key <AE12> { [ dead_grave,              dead_cedilla,            dead_abovering,          dead_dasia,              dead_diaeresis,          NoSymbol,                dead_macron,             NoSymbol                 ] };
    366 
    367     // Top row
    368     // --------------------------------------------------------------
    369     key.type[Group1] = "EIGHT_LEVEL_SEMIALPHABETIC";
    370     key <AD01> { [ x,                       X,                       ellipsis,                Greek_xi,                Prior,                   Prior,                   Greek_XI,                NoSymbol                 ] };
    371     key <AD02> { [ v,                       V,                       underscore,              NoSymbol,                BackSpace,               BackSpace,               radical,                 NoSymbol                 ] };
    372     key <AD03> { [ l,                       L,                       bracketleft,             Greek_lambda,            Up,                      Up,                      Greek_LAMBDA,            NoSymbol                 ] };
    373     key <AD04> { [ c,                       C,                       bracketright,            Greek_chi,               Delete,                  Delete,                  U2102,                   NoSymbol                 ] };
    374     key <AD05> { [ w,                       W,                       asciicircum,             Greek_omega,             Next,                    Next,                    Greek_OMEGA,             NoSymbol                 ] };
    375 
    376     key <AD06> { [ k,                       K,                       exclam,                  Greek_kappa,             exclamdown,              NoSymbol,                multiply,                NoSymbol                 ] };
    377     key <AD07> { [ h,                       H,                       less,                    Greek_psi,               KP_7,                    KP_7,                    Greek_PSI,               NoSymbol                 ] };
    378     key <AD08> { [ g,                       G,                       greater,                 Greek_gamma,             KP_8,                    KP_8,                    Greek_GAMMA,             NoSymbol                 ] };
    379     key <AD09> { [ f,                       F,                       equal,                   Greek_phi,               KP_9,                    KP_9,                    Greek_PHI,               NoSymbol                 ] };
    380     key <AD10> { [ q,                       Q,                       ampersand,               U03D5,                   KP_Add,                  KP_Add,                  U211A,                   NoSymbol                 ] };
    381 
    382     key <AD11> { [ ssharp,                  U1E9E,                   U017F,                   Greek_finalsmallsigma,   U2212,                   NoSymbol,                jot,                     NoSymbol                 ] };
    383 
    384     key.type[Group1] = "EIGHT_LEVEL";
    385     key <AD12> { [ dead_acute,              dead_tilde,              dead_stroke,             dead_psili,              dead_doubleacute,        NoSymbol,                dead_breve,              NoSymbol                 ] };
    386 
    387     // Middle row
    388     // --------------------------------------------------------------
    389     key.type[Group1] = "EIGHT_LEVEL_SEMIALPHABETIC";
    390     key <AC01> { [ u,                       U,                       backslash,               NoSymbol,                Home,                    Home,                    includedin,              NoSymbol                 ] };
    391     key <AC02> { [ i,                       I,                       slash,                   Greek_iota,              Left,                    Left,                    integral,                NoSymbol                 ] };
    392     key <AC03> { [ a,                       A,                       braceleft,               Greek_alpha,             Down,                    Down,                    U2200,                   NoSymbol                 ] };
    393     key <AC04> { [ e,                       E,                       braceright,              Greek_epsilon,           Right,                   Right,                   U2203,                   NoSymbol                 ] };
    394     key <AC05> { [ o,                       O,                       asterisk,                Greek_omicron,           End,                     End,                     elementof,               NoSymbol                 ] };
    395 
    396     key <AC06> { [ s,                       S,                       question,                Greek_sigma,             questiondown,            NoSymbol,                Greek_SIGMA,             NoSymbol                 ] };
    397     key <AC07> { [ n,                       N,                       parenleft,               Greek_nu,                KP_4,                    KP_4,                    U2115,                   NoSymbol                 ] };
    398     key <AC08> { [ r,                       R,                       parenright,              Greek_rho,               KP_5,                    KP_5,                    U211D,                   NoSymbol                 ] };
    399     key <AC09> { [ t,                       T,                       minus,                   Greek_tau,               KP_6,                    KP_6,                    partialderivative,       NoSymbol                 ] };
    400     key <AC10> { [ d,                       D,                       colon,                   Greek_delta,             KP_Separator,            comma,                   Greek_DELTA,             NoSymbol                 ] };
    401 
    402     key <AC11> { [ y,                       Y,                       at,                      Greek_upsilon,           period,                  KP_Decimal,              nabla,                   NoSymbol                 ] };
    403 
    404     // Bottom row
    405     // --------------------------------------------------------------
    406     key <AB01> { [ udiaeresis,              Udiaeresis,              numbersign,              NoSymbol,                Escape,                  Escape,                  union,                   NoSymbol                 ] };
    407     key <AB02> { [ odiaeresis,              Odiaeresis,              dollar,                  U03F5,                   Tab,                     Tab,                     intersection,            NoSymbol                 ] };
    408     key <AB03> { [ adiaeresis,              Adiaeresis,              bar,                     Greek_eta,               Insert,                  Insert,                  U2135,                   NoSymbol                 ] };
    409     key <AB04> { [ p,                       P,                       asciitilde,              Greek_pi,                Return,                  Return,                  Greek_PI,                NoSymbol                 ] };
    410     key <AB05> { [ z,                       Z,                       grave,                   Greek_zeta,              Undo,                    Redo,                    U2124,                   NoSymbol                 ] };
    411 
    412     key <AB06> { [ b,                       B,                       plus,                    Greek_beta,              colon,                   NoSymbol,                U21D0,                   NoSymbol                 ] };
    413     key <AB07> { [ m,                       M,                       percent,                 Greek_mu,                KP_1,                    KP_1,                    ifonlyif,                NoSymbol                 ] };
    414     key.type[Group1] = "EIGHT_LEVEL";
    415     key <AB08> { [ comma,                   endash,                  quotedbl,                U03F1,                   KP_2,                    KP_2,                    U21D2,                   NoSymbol                 ] };
    416     key <AB09> { [ period,                  enfilledcircbullet,      apostrophe,              U03D1,                   KP_3,                    KP_3,                    U21A6,                   NoSymbol                 ] };
    417     key.type[Group1] = "EIGHT_LEVEL_SEMIALPHABETIC";
    418     key <AB10> { [ j,                       J,                       semicolon,               Greek_theta,             semicolon,               NoSymbol,                Greek_THETA,             NoSymbol                 ] };
    419     key.type[Group1] = "EIGHT_LEVEL";
    420 
    421     // Space key
    422     // --------------------------------------------------------------
    423     key <SPCE> { [ space,                   space,                   space,                   nobreakspace,            KP_0,                    KP_0,                    U202F,                   NoSymbol                 ] };
    424 
    425 
    426     // Keypad-keys
    427     // ===============
    428 
    429     // The former Numlock key:
    430     key <NMLK> { [ Tab,                     ISO_Left_Tab,            equal,                   approxeq,                notequal,                Pointer_EnableKeys,      identical,               NoSymbol                 ] };
    431 
    432     // Topmost row
    433     // --------------------------------------------------------------
    434     key <KPDV> { [ KP_Divide,               KP_Divide,               division,                U2300,                   U2215,                   NoSymbol,                U2223,                   NoSymbol                 ] };
    435     key <KPMU> { [ KP_Multiply,             KP_Multiply,             U22C5,                   U2299,                   multiply,                NoSymbol,                U2297,                   NoSymbol                 ] };
    436     key <KPSU> { [ KP_Subtract,             KP_Subtract,             U2212,                   U2296,                   U2216,                   NoSymbol,                U2238,                   NoSymbol                 ] };
    437 
    438     // Top row
    439     // --------------------------------------------------------------
    440     key  <KP7> { [ KP_7,                    U2714,                   U2195,                   U226A,                   KP_Home,                 KP_Home,                 upstile,                 NoSymbol                 ] };
    441     key  <KP8> { [ KP_8,                    U2718,                   uparrow,                 intersection,            KP_Up,                   KP_Up,                   U22C2,                   NoSymbol                 ] };
    442     key  <KP9> { [ KP_9,                    dagger,                  U20D7,                   U226B,                   KP_Prior,                KP_Prior,                U2309,                   NoSymbol                 ] };
    443     key <KPAD> { [ KP_Add,                  KP_Add,                  plusminus,               U2295,                   U2213,                   NoSymbol,                U2214,                   NoSymbol                 ] };
    444 
    445     // Middle row
    446     // --------------------------------------------------------------
    447     key  <KP4> { [ KP_4,                    club,                    leftarrow,               includedin,              KP_Left,                 KP_Left,                 U2286,                   NoSymbol                 ] };
    448     key  <KP5> { [ KP_5,                    EuroSign,                colon,                   U22B6,                   KP_Begin,                KP_Begin,                U22B7,                   NoSymbol                 ] };
    449     key  <KP6> { [ KP_6,                    U2023,                   rightarrow,              includes,                KP_Right,                KP_Right,                U2287,                   NoSymbol                 ] };
    450 
    451     // Bottom row
    452     // --------------------------------------------------------------
    453     key  <KP1> { [ KP_1,                    diamond,                 U2194,                   lessthanequal,           KP_End,                  KP_End,                  downstile,               NoSymbol                 ] };
    454     key  <KP2> { [ KP_2,                    heart,                   downarrow,               union,                   KP_Down,                 KP_Down,                 U22C3,                   NoSymbol                 ] };
    455     key  <KP3> { [ KP_3,                    U2660,                   U21CC,                   greaterthanequal,        KP_Next,                 KP_Next,                 U230B,                   NoSymbol                 ] };
    456     key <KPEN> { [ KP_Enter,                KP_Enter,                KP_Enter,                KP_Enter,                KP_Enter,                KP_Enter,                KP_Enter,                NoSymbol                 ] };
    457     key <KPEQ> { [ KP_Equal,                NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol                 ] };
    458 
    459     // Bottommost row
    460     // --------------------------------------------------------------
    461     key  <KP0> { [ KP_0,                    U2423,                   percent,                 U2030,                   KP_Insert,               KP_Insert,               U25A1,                   NoSymbol                 ] };
    462     key <KPDL> { [ KP_Separator,            period,                  comma,                   minutes,                 KP_Delete,               KP_Delete,               seconds,                 NoSymbol                 ] };
    463 };
    464 
    465 partial alphanumeric_keys modifier_keys keypad_keys
    466 xkb_symbols "neo" {
    467 
    468     include "de(neo_base)"
    469 
    470     name[Group1]= "German (Neo 2)";
    471 
    472     include "shift(both_capslock)"
    473     include "level3(caps_switch)"
    474     include "level3(bksl_switch)"
    475     include "level5(lsgt_switch)"
    476     include "level5(ralt_switch)"
    477 };
    478 
    479 // Copied from macintosh_vndr/de
    480 // olh (a] suse.de   very close to MacOS map
    481 
    482 partial alphanumeric_keys
    483 xkb_symbols "mac" {
    484 
    485     include "de"
    486     name[Group1]= "German (Macintosh)";
    487 
    488     key <AE01>	{ [         1,     exclam,   exclamdown,           at ]	};
    489     key <AE05>	{ [         5,    percent,  bracketleft       ]	};
    490     key <AE06>	{ [         6,  ampersand, bracketright       ]	};
    491     key <AE07>	{ [         7,      slash,          bar,    backslash ]	};
    492     key <AE08>	{ [         8,  parenleft,    braceleft,   asciitilde ]	};
    493     key <AE09>	{ [         9, parenright,   braceright       ]	};
    494     key <AD01>	{ [         q,          Q, guillemotleft, guillemotright ]	};
    495     key <AD04>	{ [         r,          R,   registered       ]	};
    496     key <AD07>	{ [         u,          U,    diaeresis,       Aacute ]	};
    497     key <AD08>	{ [         i,          I,        slash,  Ucircumflex ]	};
    498     key <AD11>	{ [ udiaeresis, Udiaeresis, periodcentered,    degree ]	};
    499     key <AD12>	{ [      plus,   asterisk,   asciitilde       ]	};
    500     key <AC01>	{ [         a,          A,        aring,        Aring ]	};
    501     key <AC05>	{ [         g,          G,    copyright       ]	};
    502     key <AC06>	{ [         h,          H,  ordfeminine       ]	};
    503     key <AC09>	{ [         l,          L,           at       ]	};
    504     key <AC10>	{ [ odiaeresis, Odiaeresis,  dead_acute       ]	};
    505     key <AB06>	{ [         n,          N,   asciitilde       ]	};
    506 
    507 };
    508 
    509 partial alphanumeric_keys
    510 xkb_symbols "mac_nodeadkeys" {
    511     // modify the standard German mac layout to not have any dead keys
    512     include "de(mac)"
    513     name[Group1]= "German (Macintosh, eliminate dead keys)";
    514 
    515     key <TLDE>	{ [ asciicircum,    degree,     notsign       ]	};
    516     key <AE04>	{ [          4,     dollar,  onequarter,     currency ]	};
    517     key <AE12>	{ [      acute,      grave,     cedilla       ]	};
    518     key <AD11>	{ [ udiaeresis, Udiaeresis,   diaeresis       ]	};
    519     key <AD12>	{ [       plus,   asterisk,  asciitilde,       macron ]	};
    520     key <AC10>	{ [ odiaeresis, Odiaeresis,       acute       ]	};
    521     key <AC11>	{ [ adiaeresis, Adiaeresis, asciicircum       ]	};
    522 
    523     key <BKSL>	{ [ numbersign, apostrophe,       grave       ]	};
    524 };
    525 
    526 partial alphanumeric_keys
    527 xkb_symbols "dsb"
    528 {
    529 	include "latin(basic)"
    530 	name[Group1] = "Lower Sorbian";
    531 	key <AB01> { [              z,              Z,         zcaron,         Zcaron ] };
    532 	key <AB02> { [              x,              X,         zacute,         Zacute ] };
    533 	key <AB03> { [              c,              C,         cacute,         Cacute ] };
    534 	key <AB04> { [              v,              V,         ccaron,         Ccaron ] };
    535 	key <AB06> { [              n,              N,         nacute,         Nacute ] };
    536 	key <AC02> { [              s,              S,         sacute,         Sacute ] };
    537 	key <AC03> { [              d,              D,         scaron,         Scaron ] };
    538 	key <AC04> { [              f,              F                                 ] };
    539 	key <AD01> { [              q,              Q                                 ] };
    540 	key <AD02> { [              w,              W                                 ] };
    541 	key <AD03> { [              e,              E,         ecaron,         Ecaron ] };
    542 	key <AD04> { [              r,              R,         racute,         Racute ] };
    543 	key <AD05> { [              t,              T,          U20B5,       EuroSign ] };
    544 	key <AD09> { [              o,              O,         oacute,         Oacute ] };
    545 	include "kpdl(comma)"
    546 	include "level3(ralt_switch)"
    547 };
    548 
    549 partial alphanumeric_keys
    550 xkb_symbols "dsb_qwertz"
    551 {
    552 	include "latin(basic)"
    553 	name[Group1] = "Lower Sorbian (qwertz)";
    554 	key <AB01> { [              y,              Y                                 ] };
    555 	key <AB02> { [              x,              X                                 ] };
    556 	key <AB03> { [              c,              C,         cacute,         Cacute ] };
    557 	key <AB04> { [              v,              V,         ccaron,         Ccaron ] };
    558 	key <AB06> { [              n,              N,         nacute,         Nacute ] };
    559 	key <AC02> { [              s,              S,         sacute,         Sacute ] };
    560 	key <AC03> { [              d,              D,         scaron,         Scaron ] };
    561 	key <AC04> { [              f,              F                                 ] };
    562 	key <AD01> { [              q,              Q                                 ] };
    563 	key <AD02> { [              w,              W                                 ] };
    564 	key <AD03> { [              e,              E,         ecaron,         Ecaron ] };
    565 	key <AD04> { [              r,              R,         racute,         Racute ] };
    566 	key <AD05> { [              t,              T,          U20B5,       EuroSign ] };
    567 	key <AD06> { [              z,              Z,         zcaron,         Zcaron ] };
    568 	key <AD07> { [              u,              U,         zacute,         Zacute ] };
    569 	key <AD09> { [              o,              O,         oacute,         Oacute ] };
    570 	include "kpdl(comma)"
    571 	include "level3(ralt_switch)"
    572 };
    573 
    574 partial alphanumeric_keys
    575 xkb_symbols "qwerty" {
    576 
    577     // This layout should work exactly as a de with the exception 
    578     // of 'Z' and 'Y' keys, which are in the qwerty style (ie. swapped).
    579     // 2008 by Matej Kok <kosik (a] fiit.stuba.sk>
    580 
    581     include "de(basic)"
    582 
    583     name[Group1] = "German (qwerty)";
    584 
    585     key <AB01>	{ [         z,          Z,     leftarrow,         yen ]	};
    586     key <AD06>	{ [         y,          Y, guillemotleft,        less ]	};
    587 };
    588 
    589 // layout for Russian letters on an german keyboard
    590 // based on US-RU layout by Ivan Popov <pin (a] konvalo.org> 2005-07-17
    591 // adopted for german layout by Alexey Fisher <bug-track (a] fisher-privat.net> 2010-08-19
    592 
    593 partial alphanumeric_keys
    594 xkb_symbols "ru" {
    595 
    596     include "de(basic)"
    597 
    598     name[Group1]= "Russian (Germany, phonetic)";
    599 
    600     key.type[group1]="FOUR_LEVEL_ALPHABETIC";
    601 
    602     key <LatA> { [        Cyrillic_a,        Cyrillic_A ] };
    603     key <LatB> { [       Cyrillic_be,       Cyrillic_BE ] };
    604     key <LatW> { [       Cyrillic_ve,       Cyrillic_VE ] };
    605     key <LatG> { [      Cyrillic_ghe,      Cyrillic_GHE ] };
    606     key <LatD> { [       Cyrillic_de,       Cyrillic_DE ] };
    607     key <LatE> { [       Cyrillic_ie,       Cyrillic_IE ] };
    608     key <TLDE> { [       Cyrillic_io,       Cyrillic_IO, asciitilde ] };
    609     key <LatX> { [      Cyrillic_zhe,      Cyrillic_ZHE ] };
    610     key <LatZ> { [       Cyrillic_ze,       Cyrillic_ZE ] };
    611     key <LatI> { [        Cyrillic_i,        Cyrillic_I ] };
    612     key <LatJ> { [   Cyrillic_shorti,   Cyrillic_SHORTI ] };
    613     key <LatK> { [       Cyrillic_ka,       Cyrillic_KA ] };
    614     key <LatL> { [       Cyrillic_el,       Cyrillic_EL ] };
    615     key <LatM> { [       Cyrillic_em,       Cyrillic_EM ] };
    616     key <LatN> { [       Cyrillic_en,       Cyrillic_EN ] };
    617     key <LatO> { [        Cyrillic_o,        Cyrillic_O ] };
    618     key <LatP> { [       Cyrillic_pe,       Cyrillic_PE ] };
    619     key <LatR> { [       Cyrillic_er,       Cyrillic_ER ] };
    620     key <LatS> { [       Cyrillic_es,       Cyrillic_ES ] };
    621     key <LatT> { [       Cyrillic_te,       Cyrillic_TE ] };
    622     key <LatU> { [        Cyrillic_u,        Cyrillic_U ] };
    623     key <LatF> { [       Cyrillic_ef,       Cyrillic_EF ] };
    624     key <LatH> { [       Cyrillic_ha,       Cyrillic_HA ] };
    625     key <LatC> { [      Cyrillic_tse,      Cyrillic_TSE ] };
    626     key <AC10> { [      Cyrillic_che,      Cyrillic_CHE ] };
    627     key <AD11> { [      Cyrillic_sha,      Cyrillic_SHA ] };
    628     key <AD12> { [    Cyrillic_shcha,    Cyrillic_SHCHA, plus, asterisk ] };
    629     key <AE12> { [ Cyrillic_hardsign, Cyrillic_HARDSIGN ] };
    630     key <LatY> { [     Cyrillic_yeru,     Cyrillic_YERU ] };
    631     key <LatV> { [ Cyrillic_softsign, Cyrillic_SOFTSIGN ] };
    632     key <AC11> { [        Cyrillic_e,        Cyrillic_E ] };
    633     key <BKSL> { [       Cyrillic_yu,       Cyrillic_YU, numbersign, apostrophe ] };
    634     key <LatQ> { [       Cyrillic_ya,       Cyrillic_YA ] };
    635 
    636     include "level3(ralt_switch)"
    637 };
    638 
    639 partial alphanumeric_keys
    640 xkb_symbols "htcdream" {
    641         include "inet(htcdream)"
    642 
    643         name[Group1]= "German";
    644 
    645         //second row
    646         key <AD01> { [ q, Q, Tab, Tab ] };
    647         key <AD02> { [ w, W, grave, grave ] };
    648         key <AD03> { [ e, E, EuroSign, EuroSign ] };
    649         key <AD04> { [ r, R, underscore, underscore ] };
    650         key <AD05> { [ t, T, sterling, sterling] };
    651         key <AD06> { [ z, Z, division, division ] };
    652         key <AD07> { [ u, U, udiaeresis, udiaeresis ] };
    653         key <AD08> { [ i, I, minus, minus ] };
    654         key <AD09> { [ o, O, odiaeresis, odiaeresis ] };
    655         key <AD10> { [ p, P, equal, equal ] };
    656 
    657         //third row
    658         key <AC01> { [ a, A, adiaeresis, adiaeresis ] };
    659         key <AC02> { [ s, S, ssharp, ssharp] };
    660         key <AC03> { [ d ,D, backslash, backslash ] };
    661         key <AC04> { [ f, F, braceleft, braceleft ] };
    662         key <AC05> { [ g, G, braceright, braceright ] };
    663         key <AC06> { [ h, H, multiply, multiply ] };
    664         key <AC07> { [ j, J, colon, colon ] };
    665         key <AC08> { [ k, K, plus, plus ] };
    666         key <AC09> { [ l, L, apostrophe, apostrophe ] };
    667 
    668         //forth row
    669         key <AB01> { [ y, Y, bar, bar ] };
    670         key <AB02> { [ x, X, bracketleft, bracketleft ] };
    671         key <AB03> { [ c, C, bracketright, bracketright ] };
    672         key <AB04> { [ v, V, less, less ] };
    673         key <AB05> { [ b, B, greater, greater ] };
    674         key <AB06> { [ n, N, semicolon, semicolon ] };
    675         key <AB07> { [ m, M, quotedbl, quotedbl ] };
    676         key <AB08> { [ comma, comma, question, question ] };
    677 
    678         //fifth row
    679         key <FK15> { [ at, at, asciitilde, asciitilde ] };
    680 
    681         include "level3(alt_switch)"
    682 };
    683 
    684 partial alphanumeric_keys
    685 xkb_symbols "tr" {
    686 
    687     // add turkish-specific letters to the basic German layout.
    688     // Turkish symbols are accessible with combination of <AltGr> and
    689     // 'i', 's', 'g', 'c'' (+<Shift> for capital letters).
    690 
    691     include "de(basic)"
    692 
    693     name[Group1]="Turkish (Germany)";
    694 
    695     key <AD08>  { [    i,      I,      U0131,  U0130   ] };
    696     key <AC02>  { [    s,      S,      U015F,  U015E   ] };
    697     key <AC05>  { [    g,      G,      U011F,  U011E   ] };
    698     key <AB03>  { [    c,      C,      U0E7,   U0C7    ] };
    699 
    700 };
    701 
    702 // EXTRAS:
    703 
    704 partial alphanumeric_keys
    705 xkb_symbols "us" {
    706     include "us"
    707 
    708     name[Group1]="German (US keyboard with German letters)";
    709 
    710     key <AC01> { [           a,          A, adiaeresis, Adiaeresis ] };
    711     key <AC02> { [           s,          S,     ssharp,     ssharp ] };
    712     key <AC10> { [   semicolon,      colon, odiaeresis, Odiaeresis ] };
    713     key <AC11> { [  apostrophe,   quotedbl, adiaeresis, Adiaeresis ] };
    714     key <AD03> { [           e,          E,   EuroSign,   EuroSign ] };
    715     key <AD07> { [           u,          U, udiaeresis, Udiaeresis ] };
    716     key <AD09> { [           o,          O, odiaeresis, Odiaeresis ] };
    717     key <AD11> { [ bracketleft,  braceleft, udiaeresis, Udiaeresis ] };
    718     key <AE03> { [           3, numbersign,    section,    section ] };
    719     key <AE11> { [       minus, underscore,     ssharp,   question ] };
    720 
    721     include "level3(ralt_switch)"
    722 };
    723 
    724 partial alphanumeric_keys
    725 xkb_symbols "hu" {
    726 
    727     // modify the basic German layout to not have any dead keys and add Hungarian letters
    728 
    729     include "de(basic)"
    730     name[Group1]="German (with Hungarian letters and no dead keys)";
    731 
    732     key <AB01> { [         y,          Y, guillemotleft,        less ] };
    733     key <AC10> { [odiaeresis, Odiaeresis,        eacute,      Eacute ] };
    734     key <AC11> { [adiaeresis, Adiaeresis,        aacute,       Aacute] };
    735     key <AD03> { [         e,          E,      EuroSign,    EuroSign ] };
    736     key <AD06> { [         z,          Z,     leftarrow,         yen ] };
    737     key <AD07> { [         u,          U,        uacute,      Uacute ] };
    738     key <AD08> { [         i,          I,        iacute,      Iacute ] };
    739     key <AD09> { [         o,          O,  odoubleacute,Odoubleacute ] };
    740     key <AD11> { [udiaeresis, Udiaeresis,  udoubleacute,Udoubleacute ] };
    741     key <AD12> { [      plus,   asterisk,    asciitilde,      macron ] };
    742     key <AE12> { [     acute,      grave,        oacute,      Oacute ] };
    743     key <BKSL> { [numbersign, apostrophe,         grave,       grave ] };
    744     key <TLDE> { [asciicircum,    degree,       notsign,     notsign ] };
    745 };
    746 
    747 partial alphanumeric_keys
    748 	xkb_symbols "sun_type6" {
    749 	include "sun_vndr/de(sun_type6)"
    750 };
    751 
    752 partial alphanumeric_keys
    753 xkb_symbols "adnw_base" {
    754     include "de(neo_base)"
    755 
    756     key.type[Group1] = "EIGHT_LEVEL";
    757     key <AD04> { [ period,                  enfilledcircbullet,      NoSymbol,                U03D1,                   NoSymbol,                NoSymbol,                U21A6,                   NoSymbol                 ] };
    758     key <AB04> { [ comma,                   endash,                  NoSymbol,                U03F1,                   NoSymbol,                NoSymbol,                U21D2,                   NoSymbol                 ] };
    759 
    760     key.type[Group1] = "EIGHT_LEVEL_SEMIALPHABETIC";
    761     key <AD01> { [ k,                       K,                       NoSymbol,                Greek_kappa,             NoSymbol,                NoSymbol,                multiply,                NoSymbol                 ] };
    762     key <AD02> { [ u,                       U,                       NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol,                includedin,              NoSymbol                 ] };
    763     key <AD03> { [ udiaeresis,              Udiaeresis,              NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol,                union,                   NoSymbol                 ] };
    764     key <AD05> { [ adiaeresis,              Adiaeresis,              NoSymbol,                Greek_eta,               NoSymbol,                NoSymbol,                U2135,                   NoSymbol                 ] };
    765     key <AD06> { [ v,                       V,                       NoSymbol,                NoSymbol,                NoSymbol,                NoSymbol,                radical,                 NoSymbol                 ] };
    766     key <AD07> { [ g,                       G,                       NoSymbol,                Greek_gamma,             NoSymbol,                NoSymbol,                Greek_GAMMA,             NoSymbol                 ] };
    767     key <AD08> { [ c,                       C,                       NoSymbol,                Greek_chi,               NoSymbol,                NoSymbol,                U2102,                   NoSymbol                 ] };
    768     key <AD09> { [ l,                       L,                       NoSymbol,                Greek_lambda,            NoSymbol,                NoSymbol,                Greek_LAMBDA,            NoSymbol                 ] };
    769     key <AD10> { [ j,                       J,                       NoSymbol,                Greek_theta,             NoSymbol,                NoSymbol,                Greek_THETA,             NoSymbol                 ] };
    770     key <AD11> { [ f,                       F,                       NoSymbol,                Greek_phi,               NoSymbol,                NoSymbol,                Greek_PHI,               NoSymbol                 ] };
    771     key <AC01> { [ h,                       H,                       NoSymbol,                Greek_psi,               NoSymbol,                NoSymbol,                Greek_PSI,               NoSymbol                 ] };
    772     key <AC02> { [ i,                       I,                       NoSymbol,                Greek_iota,              NoSymbol,                NoSymbol,                integral,                NoSymbol                 ] };
    773     key <AC03> { [ e,                       E,                       NoSymbol,                Greek_epsilon,           NoSymbol,                NoSymbol,                U2203,                   NoSymbol                 ] };
    774     key <AC04> { [ a,                       A,                       NoSymbol,                Greek_alpha,             NoSymbol,                NoSymbol,                U2200,                   NoSymbol                 ] };
    775     key <AC05> { [ o,                       O,                       NoSymbol,                Greek_omicron,           NoSymbol,                NoSymbol,                elementof,               NoSymbol                 ] };
    776     key <AC06> { [ d,                       D,                       NoSymbol,                Greek_delta,             NoSymbol,                NoSymbol,                Greek_DELTA,             NoSymbol                 ] };
    777     key <AC07> { [ t,                       T,                       NoSymbol,                Greek_tau,               NoSymbol,                NoSymbol,                partialderivative,       NoSymbol                 ] };
    778     key <AC08> { [ r,                       R,                       NoSymbol,                Greek_rho,               NoSymbol,                NoSymbol,                U211D,                   NoSymbol                 ] };
    779     key <AC09> { [ n,                       N,                       NoSymbol,                Greek_nu,                NoSymbol,                NoSymbol,                U2115,                   NoSymbol                 ] };
    780     key <AC10> { [ s,                       S,                       NoSymbol,                Greek_sigma,             NoSymbol,                NoSymbol,                Greek_SIGMA,             NoSymbol                 ] };
    781     key <AC11> { [ ssharp,                  U1E9E,                   NoSymbol,                Greek_finalsmallsigma,   NoSymbol,                NoSymbol,                jot,                     NoSymbol                 ] };
    782     key <AB01> { [ x,                       X,                       NoSymbol,                Greek_xi,                NoSymbol,                NoSymbol,                Greek_XI,                NoSymbol                 ] };
    783     key <AB02> { [ y,                       Y,                       NoSymbol,                Greek_upsilon,           NoSymbol,                NoSymbol,                nabla,                   NoSymbol                 ] };
    784     key <AB03> { [ odiaeresis,              Odiaeresis,              NoSymbol,                U03F5,                   NoSymbol,                NoSymbol,                intersection,            NoSymbol                 ] };
    785     key <AB05> { [ q,                       Q,                       NoSymbol,                U03D5,                   NoSymbol,                NoSymbol,                U211A,                   NoSymbol                 ] };
    786     key <AB06> { [ b,                       B,                       NoSymbol,                Greek_beta,              NoSymbol,                NoSymbol,                U21D0,                   NoSymbol                 ] };
    787     key <AB07> { [ p,                       P,                       NoSymbol,                Greek_pi,                NoSymbol,                NoSymbol,                Greek_PI,                NoSymbol                 ] };
    788     key <AB08> { [ w,                       W,                       NoSymbol,                Greek_omega,             NoSymbol,                NoSymbol,                Greek_OMEGA,             NoSymbol                 ] };
    789     key <AB09> { [ m,                       M,                       NoSymbol,                Greek_mu,                NoSymbol,                NoSymbol,                ifonlyif,                NoSymbol                 ] };
    790     key <AB10> { [ z,                       Z,                       NoSymbol,                Greek_zeta,              NoSymbol,                NoSymbol,                U2124,                   NoSymbol                 ] };
    791 };
    792 
    793 partial alphanumeric_keys modifier_keys keypad_keys
    794 xkb_symbols "adnw" {
    795 
    796     include "de(adnw_base)"
    797 
    798     name[Group1]= "German (Aus der Neo-Welt)";
    799 
    800     include "shift(both_capslock)"
    801     include "level3(caps_switch)"
    802     include "level3(bksl_switch)"
    803     include "level5(lsgt_switch)"
    804     include "level5(ralt_switch)"
    805 };
    806 
    807