On a German keyboard layout I just need to press Alt Gr+m to get a 'µ' (micro) symbol.
How to do so on a English (US) keyboard?
On a German keyboard layout I just need to press Alt Gr+m to get a 'µ' (micro) symbol.
How to do so on a English (US) keyboard?
While the approach suggested by @DK Bose within the comments is completely correct, another possible solution is to create custom keyboard shortcut that uses xdotool
as command in the following way:
xdotool type --clearmodifiers 'µ'
Source of the idea is provided within the comments of this answer. xdotool
should be installed:
sudo apt install xdotool
This shortcut (Ctrl+Shift+M as it is defined above) works also within wine
applications, the only specific thing is that you should press Ctrl+Shift for about 1 second and then press M.
When typing in libre office: From the menu bar select insert, special character This displays lots of different characters including the one asked for in the question.
03bc
should get youμ
in gtk applications. If you have aCompose
key set up on your English (US) keyboard, pressing and releasing theCompose
key and then typingm
followed byu
should do it. – DK Bose Dec 03 '18 at 09:22texstudio
but that's a qt-based application and so the Ctrl+Shift+U route won't work. You'll need to use the Compose key route. – DK Bose Dec 03 '18 at 10:51