2

I just bought a CEPTER COSMO TKL keyboard, and I cannot figure out how I can produce the greater than and less than characters. I am on Windows 10.

The characters are on the keyboard as you can se from the photo. Those two keys pressed produces . and , - whereas they produce : and ; with shift pressed - Alt-Gr does not work, it produces no character, also tried different combinations of ctrl+alt+shift, with no success. I downloaded Powertoys and was able to map Alt-Gr to < but the greater than symbol is not in the character list in powertoys. Any ideas here? Edit: I use norwegian keyboard layout.

enter image description here

Peregrino69
  • 5,004

3 Answers3

2

The layout on Cepter Cosmo TKL is close to a ISO keyboard and it seems to combine ISO-UK and ISO-Pan-Nordic keyboards by having the legends for both ISO-UK and ISO-Pan-Nordic (combining Norwegian/Danish/Swedish-Finnish) layouts on the keys where the layouts differ from each other. The legends ,< and .> on your keyboard are for the UK layout, while the dimmer legends ,; and .: below them on the same keys are for the pan-Nordic layout.

But. The Left Shift is a departure from the ISO layout: the keyboard has the long Left Shift of US (ANSI) layout instead of having a shorter Left Shift and an extra key between Left Shift and Z. So your keyboard is kind of half ANSI half ISO and it is missing that specific key next to Left Shift which is the <> key on the Norwegian layout.

It is a very peculiar choice from the manufacturer to do the UK/Nordic ISO layout with the extra letters but go with 104 keys of ANSI layout instead of 105 keys of proper ISO layout.

Cepter Cosmo TKL layout

difference of 104 key ANSI and 105 key ISO layouts

Teemu
  • 21
1

Try to use Shift+AltGr+<> for "<", or Shift+AltGr+> for ">".

If this doesn't work, you may fallback to these keyboard shortcuts:

  • Alt+6+0 for Less Than (<)
  • Alt+6+2 for Greater Than (>)

You may also use a keyboard macro product like AutoHotKey to assign any keyboard combination you like to these two characters.

harrymc
  • 498,455
0

For future reference this AutoHotKey scipt maps Alt Gr + ,, ., and - to <, >, and | respectively. Tested on Cepter Khan Shadow.

#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
; AltGr + , to <
RAlt & ,::Send, <

; AltGr + . to > RAlt & .::Send, >

; AltGr + - to | RAlt & -::Send, |

Kimvais
  • 4,908