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


10 Juhapekka Tolvanen says...

Good luck learning Finnish language. First thing you must learn about it is this:

No sex. No future.

It means this:

In Finnish language sex has no effect on grammar. For example we do not have two words called ”he” and ”she”. We have only that word ”hän”.

Finnish language do not have future tense.

Posted at 8:01 p.m. on August 5, 2009


11 casino de juego en el internet says...

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 7:33 a.m. on August 8, 2009


What do you have to say?

Show Editing Help

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

Essex Web Design

September 3, 2010
A lot of contract providers give you free internet usage now, but if you have Pay As You Go, then you are going to be paying heavy prices.
Calling time on mobile internet nonsense?

Krasochka

September 2, 2010
Hack again?!
Adding more terminals to your function keys

GenryFlorist

September 2, 2010
<b>Cheap flowers delivery around the world!</b> Celebrate summer with our gorgeous flowers. They?re the perfect gift for any summer occasion. From birthdays to anniversaries, we offer beautiful flowers, lush plants, ...
Burning an iso to CD on Windows

auto-financing.co.cc

September 2, 2010
auto-financing
ReStructuredText tables and doctests

rubaxa

September 1, 2010
FTP = NOT RANDOM software Dominated hands postflop suckout often on all-ins. EX. AK vs. A9 or KQ vs. K6. Both players hit top pair. Bad player goes all in ...
Burning an iso to CD on Windows

empodayaddelm

September 1, 2010
Sorry admin - my post is test
This Week: Heroes and Monsters

increase synthroid dosage

September 1, 2010
Latest world news: 1 <a target="_blank" class="ext" href=http://www.maktabti.org/profiles/blogs/viagra-cialis-buy-no>buy cheap cialis generic levitra viagra</a> Viagra 2 <a target="_blank" class="ext" href=http://www.maktabti.org/profiles/blogs/buy-viagra-online-at-lowest>rainbowpush discussion board buy viagra</a> Viagra 3 <a target="_blank" class="ext" href=http://www.maktabti.org/profiles/blogs/how-to-get-generic-brand>search viagra ...
SFTP in Python: Paramiko

Lacilslaw

September 1, 2010
HYUN JAIMIE enniless and homele JAMILA
This Week: Heroes and Monsters

domaserisk

August 31, 2010
who was shaking his head back and forth knowingly Grissom shifted his eyes over at Brass,
How I Removed Windows from my Laptop

get ready loan

August 30, 2010
Though, by the you kill the legitimate PC user from visiting the site. Also, think about the dynamic IP's issue.
Only the penitent man will pass - on captchas and cotton wool

Packers and movers in pune

August 30, 2010
The topic you disscussed here is very amazing, informative and useful in future...
On Comment Spam

serhanters1

August 30, 2010
?? ???????? ??... ??????...... ??. ????????? ??? ??? ???????D ???????? ??. ????? ????? ???? ??? ???=) ?? ?????- http://letitbit.net/download/8746.894a84bc20f38f1661895aeee0/stereokartinki.html ???http://f-zona.ru ? ? ?? ????????????
Burning an iso to CD on Windows

strona startowa

August 29, 2010
Thanks For This Post, was added to my bookmarks.
Python CGI contact forms

lerexottori

August 29, 2010
?????????????? ??????????
Adding more terminals to your function keys

KelpAugmeme

August 29, 2010
aofaapsymp, http://forums.quark.com/members/jennaq.aspx online stock trading broker, rdgofzary
PuTTY Series: Adding PuTTY to your system path

Cheeday

August 28, 2010
What flowers do you like?
This Week: Heroes and Monsters

magfcvb

August 28, 2010
??????? ?????????????? ?????? - ????? ?????? ?????????????? ??????, ?????????????? ?????? ???????, ?????????????? ?????? crosman, ???? ??????????????? ??????, ?????????????? ?????? ?????? ????????. ???? magazin-oruzhie.ru
Include ODF support in the Linux Standard Base?

noni

August 28, 2010
I find myself coming to your blog more and more often to the point where my visits are almost daily now!
On Comment Spam

Latenadsfes

August 28, 2010
http://mynewblog.for-breastcancer.com/ http://mynewblog.photoblogcentral.com/ http://ilovezebras.thechicks.org/ http://mynewblog.cyberbardsymposium.com/ http://wewphost.com/ilovezebras/
Burning an iso to CD on Windows

LeupoldEst

August 28, 2010
pretty cool stuff here thank you!!!!!!!
OOXML Vote Coverage