Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
AnneH AnneH is offline
external usenet poster
 
Posts: 1
Default Special character that is not in the 'insert sybol' list

In a piece of work I am currently doing I need to write a letter 't' with a
dot underneath it.
It's not in the 'insert symbol' list, so how should I do it?
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Helmut Weber[_2_] Helmut Weber[_2_] is offline
external usenet poster
 
Posts: 45
Default Special character that is not in the 'insert sybol' list

Hi Anne,

try:

Sub Macro1()
Selection.InsertSymbol Font:="Arial", CharacterNumber:=7789,
Unicode:=True
End Sub

--

Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Vista Small Business, Office XP
  #3   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Special character that is not in the 'insert sybol' list

I'm curious about where you found that character number, Helmut. My Arial
doesn't have that character range, and in Arial Unicode MS, it's in the CJK
Unified Ideographs character subset.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"Helmut Weber" wrote in message
...
Hi Anne,

try:

Sub Macro1()
Selection.InsertSymbol Font:="Arial", CharacterNumber:=7789,
Unicode:=True
End Sub

--

Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Vista Small Business, Office XP



  #4   Report Post  
Posted to microsoft.public.word.docmanagement
Klaus Linke Klaus Linke is offline
external usenet poster
 
Posts: 413
Default Special character that is not in the 'insert sybol' list

| Selection.InsertSymbol Font:="Arial", _
| CharacterNumber:=7789, _
| Unicode:=True


"Suzanne S. Barnhill" wrote:
I'm curious about where you found that character number, Helmut.
My Arial doesn't have that character range,


Mine neither... Word switches to Tahoma automatically when I use the code.

and in Arial Unicode MS, it's in the CJK Unified Ideographs
character subset.


Helmut used the decimal code.
7789 = &H1E6D
which is in the "Latin Extended Additional" set.

Klaus
  #5   Report Post  
Posted to microsoft.public.word.docmanagement
Suzanne S. Barnhill Suzanne S. Barnhill is offline
external usenet poster
 
Posts: 33,624
Default Special character that is not in the 'insert sybol' list

Latin Extended Additional is where I would expect to find it, since I have
vowels with dots below there in "(normal text)."

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"Klaus Linke" wrote in message
...
| Selection.InsertSymbol Font:="Arial", _
| CharacterNumber:=7789, _
| Unicode:=True


"Suzanne S. Barnhill" wrote:
I'm curious about where you found that character number, Helmut. My Arial
doesn't have that character range,


Mine neither... Word switches to Tahoma automatically when I use the code.

and in Arial Unicode MS, it's in the CJK Unified Ideographs character
subset.


Helmut used the decimal code. 7789 = &H1E6D
which is in the "Latin Extended Additional" set.

Klaus





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
grammatim[_2_] grammatim[_2_] is offline
external usenet poster
 
Posts: 2,751
Default Special character that is not in the 'insert sybol' list

The t-underdot characters occur in very few fonts, because they are
used in the standard orthography of very few, if any, languages. (They
most commonly occur in "scientific" transliterations of Semitic and
South Asian languages.) Underdotted vowels occur in the standard
orthography of a number of West African languages.

A font that has preformed characters for a very large number of
letters with diacritics (accents, etc.) is Gentium, created by the
Summer Institute of Linguistics, and available as a free download at
http://scripts.sil.org/cms/scripts/p...tem_id=Gentium
(if this doesn't show up as a link, just google Feeling Lucky "
gentium SIL " without the quotes).

On Feb 5, 12:39*pm, "Suzanne S. Barnhill" wrote:
Latin Extended Additional is where I would expect to find it, since I have
vowels with dots below there in "(normal text)."
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

"Klaus Linke" wrote in message

...

| Selection.InsertSymbol Font:="Arial", _
| CharacterNumber:=7789, _
| Unicode:=True


"Suzanne S. Barnhill" wrote:
I'm curious about where you found that character number, Helmut. My Arial
doesn't have that character range,


Mine neither... Word switches to Tahoma automatically when I use the code.


and in Arial Unicode MS, it's in the CJK Unified Ideographs character
subset.


Helmut used the decimal code. 7789 = &H1E6D
which is in the "Latin Extended Additional" set.

  #7   Report Post  
Posted to microsoft.public.word.docmanagement
Helmut Weber[_2_] Helmut Weber[_2_] is offline
external usenet poster
 
Posts: 45
Default Special character that is not in the 'insert sybol' list

Hi everybody,

maybe it is because I have a PC made in China,
just run-of-the-mill, no specific adaptations.
I didn't think much, just postet was the macro recorder recorded.

--

Greetings from Bavaria, Germany

Helmut Weber, MVP WordVBA

Vista Small Business, Office XP
  #8   Report Post  
Posted to microsoft.public.word.docmanagement
Stefan Blom Stefan Blom is offline
external usenet poster
 
Posts: 8,428
Default Special character that is not in the 'insert sybol' list

Insert an EQ field: { EQ \O(t,.) }

To insert the field delimiters, { }, press Ctrl+F9. Type the code as shown.

In the field code, format the period as "Lowered," say by 5 pt (on the
Character Spacing tab of the Font dialog box).

Press F9 to update. To show/hide the field code, press Alt+F9.

--
Stefan Blom
Microsoft Word MVP


"AnneH" wrote in message
...
In a piece of work I am currently doing I need to write a letter 't' with
a
dot underneath it.
It's not in the 'insert symbol' list, so how should I do it?







Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
1/3 Special Character Available? DavidJ726 New Users 14 May 3rd 23 08:50 PM
Special character at top tjsmags Microsoft Word Help 3 January 30th 07 10:32 PM
How do I select the words before a special character all at once. quekou Microsoft Word Help 4 February 14th 06 05:17 AM
How to get a special character in my document? Peyton Todd Tables 2 December 28th 05 04:17 AM
Searching for a special character. Shinz Microsoft Word Help 2 March 29th 05 03:57 PM


All times are GMT +1. The time now is 05:36 AM.

Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"