PC Review


Reply
Thread Tools Rate Thread

where can I find the symbol for the word "therefore"?

 
 
Wombling63
Guest
Posts: n/a
 
      28th Oct 2009

There is a symbol made up of three dots in the shape of a triangle meaning
"therefore". Where can I find it?

Thanks
 
Reply With Quote
 
 
 
 
Kara the Computer Tutor
Guest
Posts: n/a
 
      28th Oct 2009

Here's where I found it:

1. On the Insert tab, click on "Symbol" on the far right.
2. Click on More Symbols
3. In the Font dropdown box in the upper left, choose "Symbol."
4. The Therefore symbol is on the second row near the middle.

Hope that helps!
--
Kara
http://www.karathecomputertutor.com
http://karathecomputertutor.wordpress.com/


"Wombling63" wrote:

> There is a symbol made up of three dots in the shape of a triangle meaning
> "therefore". Where can I find it?
>
> Thanks

 
Reply With Quote
 
Greg Maxey
Guest
Posts: n/a
 
      28th Oct 2009
Using "Insert Symbol" dialog you cand find it in the Font named "Symbol"
with character 92. You can insert in your document using that dialog. You
can also select the symbol font then hold down ALT and type 0092 with the
numeric keypad or you cna insert it with a macro:

Sub InsertThereforeSymbol()
Selection.InsertSymbol Font:="Symbol", CharacterNumber:=92
End Sub

For help running macros see: http://www.gmayor.com/installing_macro.htm


Wombling63 wrote:
> There is a symbol made up of three dots in the shape of a triangle
> meaning "therefore". Where can I find it?
>
> Thanks


--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.


 
Reply With Quote
 
Peter T. Daniels
Guest
Posts: n/a
 
      29th Oct 2009
Using the Symbol font can lead to problems down the line (its encoding
doesn't match Unicode encoding), so you might do better to use the
character from the "Mathematical Operators" range accessed via Insert
Symbol. The "Therefore" character is at 2234; type that code on the
regular keyboard and then Alt-X. You'll find it in Cambria Math, Arial
Unicode, Lucida Sans, and Lucida Sans Unicode.

On Oct 28, 5:53*pm, Wombling63 <Womblin...@discussions.microsoft.com>
wrote:
> There is a symbol made up of three dots in the shape of a triangle meaning
> "therefore". Where can I find it?
>
> Thanks


 
Reply With Quote
 
Greg Maxey
Guest
Posts: n/a
 
      29th Oct 2009
Mr. Daniels,

Excellent post and very helpful. Perfect delivery. BZ

When I simply type 2234 and press ALT+x (without first selecting a font) the
symbol appears in MS Mincho. My default font is Times New Roman. Is MS
Mincho something new and still suitable with this symbol?

You can insert Unicode symbols programmatically as well. In this case you
can could use:

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

Note the different number (8756). The InsertSymbol method requires a Long
value. Accordingly the unicode hex number 2234 must be converted:

Sub GetLong()
MsgBox ConvertHexToLong(2234)
End Sub

Function ConvertHexToLong(ByVal hex) As Long
ConvertHexToLong = Val("&H" & hex & "&")
End Function

Thanks.




--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

"Peter T. Daniels" <(E-Mail Removed)> wrote in message
news:61ebfaa5-b3be-4ae5-ba83-(E-Mail Removed)...
Using the Symbol font can lead to problems down the line (its encoding
doesn't match Unicode encoding), so you might do better to use the
character from the "Mathematical Operators" range accessed via Insert
Symbol. The "Therefore" character is at 2234; type that code on the
regular keyboard and then Alt-X. You'll find it in Cambria Math, Arial
Unicode, Lucida Sans, and Lucida Sans Unicode.

On Oct 28, 5:53 pm, Wombling63 <Womblin...@discussions.microsoft.com>
wrote:
> There is a symbol made up of three dots in the shape of a triangle meaning
> "therefore". Where can I find it?
>
> Thanks



 
Reply With Quote
 
Peter T. Daniels
Guest
Posts: n/a
 
      29th Oct 2009
MS Mincho is the factory-default font for Chinese etc.; all the
Chinese etc. fonts seem to have a lot of the "Mathematical
Operators." (Check with BabelMap.) TNR, annoyingly, doesn't have most
math characters -- especially annoying when you need true super/
subscripts!

If you're never going to type in Chinese etc., you can Uninstall the
Chinese etc. fonts from your Fonts folder.

I don't know what a "Long" value is. Is it the decimal equivalent of
the Unicode hex number?

On Oct 29, 7:15*am, "Greg Maxey"
<gma...@mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote:
> Mr. Daniels,
>
> Excellent post and very helpful. *Perfect delivery. BZ
>
> When I simply type 2234 and press ALT+x (without first selecting a font) the
> symbol appears in MS Mincho. *My default font is Times New Roman. *IsMS
> Mincho something new and still suitable with this symbol?
>
> You can insert Unicode symbols programmatically as well. *In this case you
> can could use:
>
> Sub InsertThereforeSymbol()
> Selection.InsertSymbol Font:="Arial Unicode", CharacterNumber:=8756,
> Unicode:=True
> End Sub
>
> Note the different number (8756). *The InsertSymbol method requires a Long
> value. Accordingly the unicode hex number 2234 must be converted:
>
> Sub GetLong()
> MsgBox ConvertHexToLong(2234)
> End Sub
>
> Function ConvertHexToLong(ByVal hex) As Long
> ConvertHexToLong = Val("&H" & hex & "&")
> End Function
>
> Thanks.
>
> --
> Greg Maxey
>
> See my web sitehttp://gregmaxey.mvps.org
> for an eclectic collection of Word Tips.
>
> "Peter T. Daniels" <gramma...@verizon.net> wrote in messagenews:61ebfaa5-b3be-4ae5-ba83-(E-Mail Removed)...
> Using the Symbol font can lead to problems down the line (its encoding
> doesn't match Unicode encoding), so you might do better to use the
> character from the "Mathematical Operators" range accessed via Insert
> Symbol. The "Therefore" character is at 2234; type that code on the
> regular keyboard and then Alt-X. You'll find it in Cambria Math, Arial
> Unicode, Lucida Sans, and Lucida Sans Unicode.
>
> On Oct 28, 5:53 pm, Wombling63 <Womblin...@discussions.microsoft.com>
> wrote:
>
>
>
> > There is a symbol made up of three dots in the shape of a triangle meaning
> > "therefore". Where can I find it?

>
> > Thanks-

 
Reply With Quote
 
Greg Maxey
Guest
Posts: n/a
 
      29th Oct 2009
Thanks.

Long value was probably a poor choice of words. As I have said before, I
have no formal training in VBA.

Perhaps more correct, the .InsertSymbol method requires a long data type
for the character number argument.

Data type: The characteristic of a variable that determines what kind of
data it can hold. Data types include Byte, Boolean, Integer, Long, Currency,
Decimal, Single, Double, Date, String, Object, Variant (default), and
user-defined types, as well as specific types of objects.

<Long: Long (long integer) variables are stored as signed 32-bit (4-byte)
numbers ranging in value from -2,147,483,648 to 2,147,483,647.

Is it the decimal equivalent of the Unicode hex number?

I think basically yes. If you pass "A" as an argument to the function
returns 10. If you pass "1A" is returns 26, ect.

Sub GetLong()
MsgBox ConvertHexToLong("A")
End Sub

Function ConvertHexToLong(ByVal hex) As Long
ConvertHexToLong = Val("&H" & hex & "&")
End Function

The only reason I mention this VBA method is there has been a two people
that have asked me to add their frequently used symbols to a customized
ribbon gallery.


--
Greg Maxey

See my web site http://gregmaxey.mvps.org
for an eclectic collection of Word Tips.

"Peter T. Daniels" <(E-Mail Removed)> wrote in message
news:c3dddc05-44d0-44d7-8869-(E-Mail Removed)...
MS Mincho is the factory-default font for Chinese etc.; all the
Chinese etc. fonts seem to have a lot of the "Mathematical
Operators." (Check with BabelMap.) TNR, annoyingly, doesn't have most
math characters -- especially annoying when you need true super/
subscripts!

If you're never going to type in Chinese etc., you can Uninstall the
Chinese etc. fonts from your Fonts folder.

I don't know what a "Long" value is. Is it the decimal equivalent of
the Unicode hex number?

On Oct 29, 7:15 am, "Greg Maxey"
<gma...@mIKEvICTORpAPAsIERRA.oSCARrOMEOgOLF> wrote:
> Mr. Daniels,
>
> Excellent post and very helpful. Perfect delivery. BZ
>
> When I simply type 2234 and press ALT+x (without first selecting a font)
> the
> symbol appears in MS Mincho. My default font is Times New Roman. Is MS
> Mincho something new and still suitable with this symbol?
>
> You can insert Unicode symbols programmatically as well. In this case you
> can could use:
>
> Sub InsertThereforeSymbol()
> Selection.InsertSymbol Font:="Arial Unicode", CharacterNumber:=8756,
> Unicode:=True
> End Sub
>
> Note the different number (8756). The InsertSymbol method requires a Long
> value. Accordingly the unicode hex number 2234 must be converted:
>
> Sub GetLong()
> MsgBox ConvertHexToLong(2234)
> End Sub
>
> Function ConvertHexToLong(ByVal hex) As Long
> ConvertHexToLong = Val("&H" & hex & "&")
> End Function
>
> Thanks.
>
> --
> Greg Maxey
>
> See my web sitehttp://gregmaxey.mvps.org
> for an eclectic collection of Word Tips.
>
> "Peter T. Daniels" <gramma...@verizon.net> wrote in
> messagenews:61ebfaa5-b3be-4ae5-ba83-(E-Mail Removed)...
> Using the Symbol font can lead to problems down the line (its encoding
> doesn't match Unicode encoding), so you might do better to use the
> character from the "Mathematical Operators" range accessed via Insert
> Symbol. The "Therefore" character is at 2234; type that code on the
> regular keyboard and then Alt-X. You'll find it in Cambria Math, Arial
> Unicode, Lucida Sans, and Lucida Sans Unicode.
>
> On Oct 28, 5:53 pm, Wombling63 <Womblin...@discussions.microsoft.com>
> wrote:
>
>
>
> > There is a symbol made up of three dots in the shape of a triangle
> > meaning
> > "therefore". Where can I find it?

>
> > Thanks-



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Where can I find the "care of" symbol in Word? Dan Dushman Microsoft Word Document Management 2 10th Jan 2009 02:50 AM
Looking for the Word 2000 "symbol" for the word "approximately" =?Utf-8?B?eHhsZWRk?= Microsoft Word Document Management 4 14th Sep 2006 07:31 AM
Clicking "insert", then "symbol" does NOT show symbol dialog box =?Utf-8?B?RG9sbHlyb24=?= Microsoft Word Document Management 1 2nd Mar 2006 06:13 PM
How do I find out if Word has the "sum" symbol? =?Utf-8?B?Q3V0dGVybWFuSkQ=?= Microsoft Word Document Management 3 26th Sep 2005 03:07 AM
can't find medical "with" symbol in Word ( letter c with line ove. =?Utf-8?B?b2twaWxncmlt?= Microsoft Word Document Management 1 2nd Feb 2005 06:44 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 04:15 PM.