Sisu and typing unicode in GNOME

1 September 2008

I have decided to finally make a serious go at trying to learn the Finnish language properly. The eventual aim is to be able to read (sing?) the poem Kalevala in its original Finnish.

Finnish has three more letters than the English alphabet: ä and ö are used in Finnish words, while å is hardly ever used, i.e. in Swedish loan words or names, such the Åland island in the Finnish Archipelago Sea which is perhaps not the best example as it is called Ahvenanmaa by Finnish speakers.

My laptop has an English keyboard, so I need a way of typing these extra letters in. Going through the graphical menu 'Accessories' and then to 'Character Map' is a bit of a chore and slows town typing and the spontaneity of it.

So there are keybindings to type in foreign (unicode) letters. They are outlined in an Ubuntu wiki page called GtkComposeTable. That page explains two approaches. The first way is to type the unicode values.

To do this you type Ctrl+Shift+U then while keeping hold of the Ctrl+Shift, type the following code for each letter:

ä e4
ö f6
å e5
Ä c4
Ö d6
Å c5

Typing in random codes is as unintuitive and distracting as using the character map. So there is a second approach. This I have not yet got my head around.

So there is a key called diaeresis (¨), which on the British keyboard is got by using Alt Gr and the left square bracket, so: AltGr+[

Now there is a key called 'compose', which by default is the right control key (RightCtrl). So we should be able to get an 'ä' using some combination of the following keys:

RightCtrl a AltGr+[

By bashing these keys randomly, I managed to occasionally get an ä, the same with ö also. However, I don't really get it.

Something I might explore is whether I can bind some easier and more rational key combination to ä and ö. E.g. AltGr-a and AltGr-o,

This is far as I have got so far. If anyone has any tips or has a better idea, please let me know.

1 Jani says...

Looks like typing letters with the umlaut (diaeresis) has been made particularly easy for those of us using a keyboard with Finnish keys and layout: compose isn't needed at all, and typing in the umlaut doesn't require a modifier key. So even if ä and ö didn't have their own keys, I could get away with just two keypresses: the diaeresis followed by an a or an o. In fact, it's pretty useful from time to time, for typing ü (diaresis + u), which isn't part of our own alphabet and thus isn't present on the keyboard, but is still pretty common e.g. in German names.

Posted at 1:05 a.m. on September 1, 2008


2 Lornix says...

ä <= compose, ", a ö <= compose, ", o å <= compose, o, a

Ä <= compose, ", A Ö <= compose, ", O Å <= compose, o, A

Order is important, as is case. Almost anything is generatable:

? € ¥ ¢ … ¿ ¡

all are preceeded by {compose}

(=L)(=e)(=Y)(|c)(..)(??)(!!)

Posted at 4:28 a.m. on September 1, 2008


3 Leif says...

On my Norwegian keyboard, the diaeresis is easily accessible, like on Jani's Finnish one. It's one of the few keys that doesn't advance the cursor, along with the tilde, circumflex and backtick (aka accent grave). It's probably the same on UK keyboards, so just try pressing AltGr+[, release, and then press a or o.

By the way, good luck with the Kalevala. Hyvä päivä!

Posted at 4:30 a.m. on September 1, 2008


4 Ciaran McCreesh says...

On a UK keyboard you do alt-gr+[ followed by a to get ä. You don't need the control key at all.

Posted at 5:02 p.m. on September 1, 2008


5 Toni says...

Hi,

You might want to add an xkb keymap. Make backups before you begin ;) And sorry about formatting.

in /usr/share/X11/xkb/symbols/gb, after "intl", add this:

partial alphanumeric_keys xkb_symbols "intl_fi" {

// Greetings from Finland

include "gb(intl)" name[Group1]="United Kingdom - International (with dead keys and ä & ö)";

key <AC01> { [ a, A, adiaeresis, Adiaeresis ] }; key <AD09> { [ o, O, diaeresis, Odiaeresis ] };

};

And declare your new variant in /usr/share/X11/xkb/rules/xfree86.xml. Excerpt:

<layout> <configItem> <name>gb</name> <shortDescription>GBr</shortDescription> <description>United Kingdom</description> <languageList><iso639Id>eng</iso639Id></languageList> </configItem>

<variantList> <variant> <configItem> <name>intl</name> <description>International (with dead keys)</description> </configItem> </variant>

<variant> <configItem> <name>intl_fi</name> <description>International (with dead keys and ä and ö)</description> </configItem> </variant>

After you select this new variant in Gnome settings, you should have ä and ö available with AltGR + a/o (also with shift). Have fun!

Best regards, Toni

Posted at 6:05 p.m. on September 1, 2008


6 Jinks says...

I am from Germany but i use an US-layout keyboard since that's a lot easier for most my programming needs.

Now, having to also write the occassional german letter or email if ound this little gem somewhere around the internet.

Just put the following code into your ~/.Xmodmap and modify to your needs:

! German Umlauts on US Keyboard

keycode 66 = Mode_switch Multi_key

keycode 39 = s S ssharp

keycode 38 = a A adiaeresis Adiaeresis

keycode 30 = u U udiaeresis Udiaeresis

keycode 32 = o O odiaeresis Odiaeresis

keycode 14 = 5 percent ssharp degree

keycode 26 = e E egrave Egrave

keycode 28 = t T EuroSign EuroSign

keycode 27 = r R ecircumflex Ecircumflex

keycode 25 = w W eacute Eacute

keycode 31 = i I idiaeresis Idiaeresis

keycode 21 = equal plus plusminus notsign

keycode 57 = n N ntilde Ntilde

keycode 58 = m M Multi_key

keycode 15 = 6 asciicircum dead_acute dead_circumflex

keycode 19 = 0 parenright degree masculine

keycode 10 = 1 exclam exclamdown onehalf

keycode 54 = c C ccedilla Ccedilla

keycode 24 = q Q copyright registered

this changes CapsLock (the most useless key in computing history if you ask me :)) to be a modifier key used for all the following codes. So with CapsLock+a I get ä, Capslock+Shift+a renders Ä, the normal CapsLock functionality is also still available via Shift+Capslock.

Hope that helps, I for once do really like it.

Posted at 7:05 p.m. on September 1, 2008


7 andylockran says...

In ubuntu, I do ctrl, and the functions to the right of my keyboard for extra characters.

Such as: alt gr + ; + e for é

I'll post more tomorrow if you want them!

Posted at 11:24 p.m. on September 1, 2008


8 Zeth says...

Thanks everyone for your different solutions, absolutely fantastic. I have tried them all. The one from Ciaran McCreesh was the one I was subconsciously groping for.

Posted at 11:32 p.m. on September 1, 2008


9 Matteo says...

Well, you could also just switch the whole layout to the standard Finnish one only when you need to write in Finnish.

Have a look at the "keyboard layout indicator" applet for GNOME.

You can set up shortcuts to do this easily when needed (for example, I press both shift keys at the same time and I loop through the group of layouts I have defined there).

I find this better than modifying one self's layout because it forces you to learn how to use another country's keyboard and that might save you money if you'll ever visit those places and their internet cafes :-)

(I am from Italy so forgive my English)

Posted at 12:41 p.m. on September 20, 2008


What do you have to say?

Show Editing Help

Europython

About

Hello, my name is Zeth, I'll be your host here.

Command Line Warriors is about taking control of your own technology, it looks at our experiences of computing; especially using GNU/Linux, the Python programming language, the command-line and issues such as techno-ethics, best practices and whatever is cool now. If you take control of your technology then you are a Warrior too!

This site is your site too which means that you can contribute and get involved. You can leave comments using the facility provided. For me, the comments and discussions are by far the best part of the site. So please do have your say!

Latest Discussions

gutes Qualitätscasino

July 3, 2009
The paragraph is the most basic block in a reST document. Paragraphs are simply chunks of text separated by one or more blank lines. As in Python, indentation is significant ...
An Introduction to ReStructuredText

sreejith

July 3, 2009
I want to download a file from remote server in binary format. Can anyone let me know the command to do so? Thanks in advance
PuTTY Series: Using PSFTP

jythlkedl;rg

July 2, 2009
????? ??? ????????? ?????? ?? ???????? ? ????????? ???, ? ??????? ??? ??????? ??????? ? ??? ?? ???? ?? ?? ????? ???????????????? ??????????????????. ??????????????????? ????? ?? ?? ????, ?, ???, ...
Burning an iso to CD on Windows

gbi-service-ru

July 1, 2009
???? ?????????, ?????????? ?? ?? ? ???"??? ??????, ?????????? ??? ?? ???? ? ????, ? ? ?????. ?? ??? ???? ???? ??? ???. ?? ?????????? ???? ?? ?. ???????? ?, ...
Burning an iso to CD on Windows

seo techniques

July 1, 2009
I would like to thank you for the inforamtion you have put on this article no matter.
Only the penitent man will pass - on captchas and cotton wool

Online Craps lernen

July 1, 2009
I would like to thank you for the making these clarifications in such a detailed manner to rebuilt the communication and enhancing the strategies of the organization which could be ...
Disclaimer: NO WARRANTY

ZK@Web Marketing Blog

July 1, 2009
Django is an amazing web framework; we built a lot of features in a very short period of time and Django [mostly] stayed out of our way. Last night as ...
Baby Steps with Django - Part 4 Django Applications and flow

overnight payday loans

July 1, 2009
I found commandline.org.uk very informative. The article is professionally written and I feel like the author knows the subject very well. commandline.org.uk keep it that way.
Only the penitent man will pass - on captchas and cotton wool

Drogo

June 30, 2009
Gotta agree with your sentiments about many modern games. The cost of a new game is prohibitive, especially for consoles (although I've noticed that PS2 games have crashed in price ...
Retro British Gaming - Part 3: Amstrad CPC Games

pppiohooddd

June 29, 2009
Free vadult video site! http://crech.us/ 1000 free video every day!
OpenSolaris, Gobuntu, and be careful who you kiss

Tesyimasystus

June 29, 2009
...Love this dude!!! http://www.esnips.com/doc/79c22395-7bd6-4299-92db-cf392e381698/kutiman---this-is-what-it-became Peace
5 Homebrew Python Games

Simon Tite

June 28, 2009
twitterfall is still there, I just tried it, and to me it beats Visible Tweets hands down. Problem with Visible Tweets: * Extremely **irritating** animations! (There are three available, but ...
Visualising your favourite keywords in Twitter

piffAltetle

June 28, 2009
??? ??? ???? ???????????? ??????,?????????? ???? ?????? ??????????? ???????,??????????? ????? mp3,??????? ??????????? ??????.
Encrypt your /home this Christmas: part three - moving your data to the encrypted partition

idhyougjdsyhfr

June 26, 2009
SMS Trap is something that never fails to help you get your partner off guard? Our software will make reading other people?s SMS as easy as ABC. Ready for some ...
Burning an iso to CD on Windows

Sozdanie-saitov-com

June 26, 2009
???? ???????? ? ?????????????????? ????????????? - ??? - ???? ?? ????? ?????. ???? ?? ??? ? ??????? ?????? ????????? ?????! ???, ?????23126 sozdanie-saitov.com@mail.ru
Burning an iso to CD on Windows

gameskillz

June 26, 2009
Killzone 2 - the best PS3 game yet?Still LittleBigPlanet for me, but Sony's new shooter is mightily impressive. What you think about my web? http://www.easyfaxlesspaydayloan.com/payday-loans-online.html
Email Syntax Check in Python

Anish

June 25, 2009
hey Moritz, Check this http://commandline.org.uk/python/my-merry-five-minutes-with-bazaar/
Setting up a bazaar server

gbi zavod 177

June 24, 2009
???? ?????????, ?????????? ?? ?? ? ???"??? ??????, ?????????? ??? ?? ???? ? ????, ? ? ?????. ?? ??? ???? ???? ??? ???. ?? ?????????? ???? ?? ?. ???????? ?, ...
Burning an iso to CD on Windows

vettone

June 24, 2009
??? ????? ????? ????,??????? ?? ???,????? ???? ???.????? ?? ??????????? ????,?????????? ?????? ???????? ?? ????.???? ????????: http://euro-football.ucoz.com ????? ???? ??????????.
Burning an iso to CD on Windows

tuegjhg78kjfhuey

June 23, 2009
? ???????????????? ???? ??? ???, ?? ?????? ?? ?????????, ???, ???????????????? ??? ??????????, ???? ????? ??? ??? http://remont.ucoz.ua/
Burning an iso to CD on Windows