Page 1 of 2 12 LastLast
Results 1 to 20 of 22

Thread: How to write cyrillic letters with acute-sign (for example: ходи́ть)

Hybrid View

  1. #1
    Подающий надежды оратор
    Join Date
    Sep 2010
    Location
    Switzerland
    Posts
    14
    Rep Power
    10

    Question How to write cyrillic letters with acute-sign (for example: ходи́ть)

    Hello
    I've seen that many websites use the acute sign to signalize where the stress in a word is, for example like the и in ходи́ть.

    Now, I'm trying to build an Excel list with the words I'm learning, and I would like to use that sign to learn the stressing of the words. But how can I make this sign?

    I'm using a special keyboard layout for german speakers, and I'm using windows. I've found the key to produce the sign alone, but it doesn't work in combination with another letter.

    Can anyone help me?

  2. #2
    Завсегдатай Ramil's Avatar
    Join Date
    Apr 2006
    Location
    Other Universe
    Posts
    8,499
    Rep Power
    30
    There's no acute sign character in any standard Windows keyboard layout. Probably because native Russians write without it.
    You can either copy this character and paste it where necessary or use Insert symbol dialog in Word.
    You can also add a macro for this.

    Code:
    Sub InsertAcuteAccent()
        Selection.InsertSymbol CharacterNumber:=&H301, Unicode:=True
    End Sub
    Then you can assign a hot key for this macro or add it on the tool bar.
    Send me a PM if you need me.

  3. #3
    Administrator MasterAdmin's Avatar
    Join Date
    Oct 2002
    Location
    MasterRussian.com
    Posts
    1,730
    Rep Power
    17
    You can simply copy-and-paste them. Use these letters:

    а́ е́ и́ о́ у́ ы́ э́ ю́ я́

  4. #4
    Завсегдатай Ramil's Avatar
    Join Date
    Apr 2006
    Location
    Other Universe
    Posts
    8,499
    Rep Power
    30
    Quote Originally Posted by MasterAdmin View Post
    You can simply copy-and-paste them. Use these letters:

    а́ е́ и́ о́ у́ ы́ э́ ю́ я́
    You'll make a lot less unnecessary mouse movements and clicking if you only copy & paste the ACUTE ACCENT character alone. There is a nice application in MS Windows that not many are aware of - character map (charmap.exe)
    You can select it there and copy it into clipboard. Then you can simply paste it after a letter as you type.
    Send me a PM if you need me.

  5. #5
    Hanna
    Guest
    I spent at least 2 hours investigating this and found no practical solution. Of course there ARE ways to do it, but they are inconvenient, and you cannot type fast while doing it. None of the standard European ways of getting accent work with Cyrillic, and the Cyrillic keyboard itself doesn't have any accessible key for accents that I can spot. The universal code for accent don't work on cyrillic letters. I have resigned to using Bold, Underlined or a different colour to indicate where the stress is.

    Not sure how sites like Wiktionary achieve this (below) Maybe they are using a third party plugin. Perhaps someone could check their editor facilities.

    бу́ду плати́ть
    бу́дем плати́ть
    бу́дешь плати́ть
    бу́дете плати́ть
    бу́дет плати́ть

  6. #6
    Почётный участник
    Join Date
    Nov 2010
    Posts
    115
    Rep Power
    10
    If doing it for yourself you could just use an apostrophe: хо'дить. Or bold type: ходить.

  7. #7
    Завсегдатай chaika's Avatar
    Join Date
    May 2003
    Location
    Чапелхилловка, NC USA
    Posts
    1,986
    Rep Power
    20
    Is it just me that sees the accent mark in the wrong place (over the consonant) in all of these examples, e.g. бу́ду плати́ть?

  8. #8
    Старший оракул
    Join Date
    Dec 2006
    Posts
    937
    Rep Power
    17
    It happens due to a bug in the font Verdana. The style sheet of this site specify this font as the best choice for a browser along with some other options like Tahoma, Calibri. It would be better, imho, to remove Verdana from the style sheet or put it after other fonts. I use Stylish extension for Firefox to overcome the bug.
    Налево пойдёшь - коня потеряешь, направо пойдёшь - сам голову сложишь.
    Прямой путь не предлагать!

  9. #9
    Почтенный гражданин Demonic_Duck's Avatar
    Join Date
    Jun 2010
    Location
    Cambridge, UK
    Posts
    304
    Rep Power
    10
    Quote Originally Posted by Полуношник View Post
    It happens due to a bug in the font Verdana. The style sheet of this site specify this font as the best choice for a browser along with some other options like Tahoma, Calibri. It would be better, imho, to remove Verdana from the style sheet or put it after other fonts. I use Stylish extension for Firefox to overcome the bug.
    I don't have that problem at all (on this site), I'm using Google Chrome with Windows 7... though I do get that problem on some sites.
    Демоническая Утка
    Носитель английского языка, учу русский язык.
    Пожалуйста, исправьте мои сообщения!

  10. #10
    Administrator MasterAdmin's Avatar
    Join Date
    Oct 2002
    Location
    MasterRussian.com
    Posts
    1,730
    Rep Power
    17
    Quote Originally Posted by chaika View Post
    Is it just me that sees the accent mark in the wrong place (over the consonant) in all of these examples, e.g. бу́ду плати́ть?
    It depends on a font. Some fonts have the stress mark displaced. Verdana seems to work fine for me in Chrome.
    BUT (!) if you consistently see the stress mark over the consonants you can adjust for the change and move them in your mind towards the closest right-hand vowel As you may know, consonants are never stressed.

  11. #11
    Старший оракул
    Join Date
    Dec 2006
    Posts
    937
    Rep Power
    17
    Quote Originally Posted by MasterAdmin View Post
    It depends on a font. Some fonts have the stress mark displaced. Verdana seems to work fine for me in Chrome.
    BUT (!) if you consistently see the stress mark over the consonants you can adjust for the change and move them in your mind towards the closest right-hand vowel As you may know, consonants are never stressed.
    The bug in Verdana is well known. It was fixed in Windows Vista. Chrome seems to have a work-around for the bug. It works in Ubuntu even with the old font.
    Налево пойдёшь - коня потеряешь, направо пойдёшь - сам голову сложишь.
    Прямой путь не предлагать!

  12. #12
    Завсегдатай
    Join Date
    Jan 2004
    Location
    Mowcow, Russia
    Posts
    1,957
    Rep Power
    16
    Descis, you may want to check this thread.

    @Chaika: I see the accent marks over the consonants, too.

  13. #13
    Завсегдатай Ramil's Avatar
    Join Date
    Apr 2006
    Location
    Other Universe
    Posts
    8,499
    Rep Power
    30
    Quote Originally Posted by translationsnmru View Post
    Descis, you may want to check this thread.

    @Chaika: I see the accent marks over the consonants, too.
    Download a web browser )))
    Send me a PM if you need me.

  14. #14
    Завсегдатай
    Join Date
    Jan 2004
    Location
    Mowcow, Russia
    Posts
    1,957
    Rep Power
    16
    Quote Originally Posted by Ramil View Post
    Download a web browser )))
    Very, very clever, Mr. Smartypants!

  15. #15
    Подающий надежды оратор Surendil's Avatar
    Join Date
    Nov 2010
    Location
    Russia, Tver
    Posts
    34
    Rep Power
    10
    decsis, try to put ALT+769 (at the numpad) sign before vowel you wish to mark. Ход́ить
    // Please, correct my mistakes! ^^

  16. #16
    Завсегдатай Ramil's Avatar
    Join Date
    Apr 2006
    Location
    Other Universe
    Posts
    8,499
    Rep Power
    30
    Quote Originally Posted by Surendil View Post
    decsis, try to put ALT+769 (at the numpad) sign before after vowel you wish to mark. Ход́ить
    AFTER, not before.
    Send me a PM if you need me.

  17. #17
    Подающий надежды оратор Surendil's Avatar
    Join Date
    Nov 2010
    Location
    Russia, Tver
    Posts
    34
    Rep Power
    10
    Hmm... To me this works when put before
    // Please, correct my mistakes! ^^

  18. #18
    Завсегдатай Ramil's Avatar
    Join Date
    Apr 2006
    Location
    Other Universe
    Posts
    8,499
    Rep Power
    30
    Quote Originally Posted by Surendil View Post
    Hmm... To me this works when put before
    Модифицирующие символы в Unicode
    Send me a PM if you need me.

  19. #19
    Почтенный гражданин Demonic_Duck's Avatar
    Join Date
    Jun 2010
    Location
    Cambridge, UK
    Posts
    304
    Rep Power
    10
    Maybe that's because you have the faulty Verdana font, but to me, your accent there is showing above the д, not the и.

    EDIT: I noticed a moderator/admin has edited my post earlier in this thread so that it contains information that someone linked to that I had posted on another forum.

    I don't have a problem with that, but in future, could whoever did it please put a small message in the post to show it has been edited? ("This post was last edited by [name], because [reason]")
    Демоническая Утка
    Носитель английского языка, учу русский язык.
    Пожалуйста, исправьте мои сообщения!

  20. #20
    Подающий надежды оратор Surendil's Avatar
    Join Date
    Nov 2010
    Location
    Russia, Tver
    Posts
    34
    Rep Power
    10
    Quote Originally Posted by Demonic_Duck View Post
    Maybe that's because you have the faulty Verdana font, but to me, your accent there is showing above the д, not the и.

    EDIT: I noticed a moderator/admin has edited my post earlier in this thread so that it contains information that someone linked to that I had posted on another forum.

    I don't have a problem with that, but in future, could whoever did it please put a small message in the post to show it has been edited? ("This post was last edited by [name], because [reason]")
    Oh... That was really a bug of Verdana font Thank you!
    Ramil, thank you very much too!
    // Please, correct my mistakes! ^^

Page 1 of 2 12 LastLast

Similar Threads

  1. Suggestions on writing the Cyrillic letters
    By MidnightKat in forum Getting Started with Russian
    Replies: 12
    Last Post: April 29th, 2009, 03:51 AM
  2. Connecting cyrillic letters?
    By badwolf in forum Getting Started with Russian
    Replies: 1
    Last Post: September 21st, 2008, 09:40 AM
  3. Russian sentence with all Cyrillic letters?
    By xyz in forum Getting Started with Russian
    Replies: 8
    Last Post: September 13th, 2008, 03:27 PM
  4. Is it me or all Russians ever write is love letters?
    By ponzu in forum Translate This!
    Replies: 36
    Last Post: October 6th, 2005, 05:34 PM
  5. Cyrillic letters and their Roman opposite
    By Dill in forum Translate This!
    Replies: 2
    Last Post: February 26th, 2004, 07:02 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Russian Lessons                           

Russian Tests and Quizzes            

Russian Vocabulary