BBO Discussion Forums: Fonts - BBO Discussion Forums

Jump to content

  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

Fonts

#1 User is offline   Redstart 

  • PipPip
  • Group: Members
  • Posts: 11
  • Joined: 2006-May-14

Posted 2006-May-14, 15:54

What is the best font for typing suit symbols on computer? Is a special one available?
0

#2 User is offline   Gerardo 

  • PipPipPipPipPipPip
  • Group: Admin
  • Posts: 2,482
  • Joined: 2003-February-12
  • Gender:Male
  • Location:Dartmouth, NS, Canada

Posted 2006-May-14, 19:48

Symbol.ttf is the only one used & usable, at least with current client.

#3 User is offline   Sigi_BC84 

  • PipPipPipPip
  • Group: Full Members
  • Posts: 470
  • Joined: 2006-January-20
  • Location:Saarbrücken, Germany

Posted 2006-May-15, 08:05

Assuming your question is not directed specifically towards the usage within BBO (can you actually change the font for the BBO client?):

I'm particularly partial to fonts which contain "white" suit symbols for hearts and diamonds, which are a lot more readable on black and white printouts than the standard symbols. These are unicode points 2661 and 2662 respectively (this is how they look: ♡ ♢).

The Windows Character Map utility allows you to check your fonts for the presence of these symbols (Arial Unicode certainly contains them).

Most fonts contain the standard card symbols, but as I said they are not as easy to read if you can't colorize them appropriately (I'm convinced by now that the best colorization scheme in the one most people use on these forums, ie. ; I think they should use it on playing cards as well, would make sorting the hand way easier and you would have less accidents regarding diamonds and hearts...).

--Sigi
0

#4 User is offline   kenberg 

  • PipPipPipPipPipPipPipPipPipPip
  • Group: Advanced Members
  • Posts: 11,067
  • Joined: 2004-September-22
  • Location:Northern Maryland

Posted 2006-May-15, 08:51

Sigi,

You may have to start very simple with me and perhaps with others of my age group. Suppose I want to use suit symbols on a webpage (I do, actually). Assume I want to do this in html (since I don't know how to do it in anything else). Could you write down an html line that I could try on a webpage that hopefully would actually show up as a suit symbol in a font that you recommend? Or am I misunderstanding what this thread is addressing?

Thanks,
Ken
Ken
0

#5 User is offline   barmar 

  • PipPipPipPipPipPipPipPipPipPipPipPip
  • Group: Admin
  • Posts: 21,422
  • Joined: 2004-August-21
  • Gender:Male

Posted 2006-May-15, 12:16

HTML appears to have them as built-in special characters:

♠
♥
♦
♣

so you don't need to deal with fonts and character codes.

#6 User is offline   Sigi_BC84 

  • PipPipPipPip
  • Group: Full Members
  • Posts: 470
  • Joined: 2006-January-20
  • Location:Saarbrücken, Germany

Posted 2006-May-15, 14:00

kenberg, on May 15 2006, 04:51 PM, said:

You may have to start very simple with me and perhaps with others of my age group. Suppose I want to use suit symbols on a webpage (I do, actually). Assume I want to do this in html (since I don't know how to do it in anything else). Could you write down an html line that I could try on a webpage that hopefully would actually show up as a suit symbol in a font that you recommend? Or am I misunderstanding what this thread is addressing?

You can take a look at the HTML code that is generated for forum posts to get an idea. Let's take the spade symbol as an example, this is generated as:
<span class="spades">&spades;</span>

and CSS class "spades" is defined as follows:
<style type="text/css">
  .spades { color: blue; font-family: Arial, Verdana, Tahoma, sans-serif; font-size: 120% }
</style>

(If you don't know yet what "CSS" means, I strongly suggest learning about that because it makes web site composition a lot more convenient.)

If you don't want to type that long <span> thing all the time, you could invent a short sequence (eg. "!s" like in BBO) and search/replace this with the above later (after you're finished writing the actual page). Or you could make an editor macro to insert the appropriate string. Maybe your HTML editor has a special way to do this sort of stuff. It all depends...

Having said that, I strongly discourage the use of small graphics (images) as card symbols. This gets highly inconvenient if you want to cut/paste out of the page, or send the content via email or print as text etc.

--Sigi
0

#7 User is offline   Sigi_BC84 

  • PipPipPipPip
  • Group: Full Members
  • Posts: 470
  • Joined: 2006-January-20
  • Location:Saarbrücken, Germany

Posted 2006-May-15, 14:23

If all you want is a really simple webpage, and all this advanced stuff is too much for the moment, just do the following:

In the HTML header of your page, make sure you have
<meta http-equiv="content-type" content="text/html; charset=utf-8" />

(preferably as the first element after the <head> tag).

Now you can use any character that actually exists in the font you are using -- right in the HTML code. So you can actually cut'n'paste a "real" symbol from somewhere (or enter it via a keyboard macro) into the HTML file you are creating. This is easier to read for you while you are writing the page, but you lose the colorization possibility that way (that calls for a <span> element in any case).

Make sure that your editor or HTML editor saves the page in "UTF-8" encoding, or else it won't work.

--Sigi
0

#8 User is offline   kenberg 

  • PipPipPipPipPipPipPipPipPipPip
  • Group: Advanced Members
  • Posts: 11,067
  • Joined: 2004-September-22
  • Location:Northern Maryland

Posted 2006-May-15, 14:25

OK, thanks to both of you. I have some symbols up, I'll read about CSS. I understand the point about trouble emailing if the symbols are in.

I am planning on writing a few pages about agreements that I like. A lot of my play here is with very minimal agreements and a look at forum topics shows that this is not just my problem. I have in mind being able to say something like "I have some common ambiguities listed and I suggest a preference. I can play it other ways if you tell me, but lacking anything better, how about this way." I have been slow in getting to this, but I have a (very) small start.

Some of the symbols can just be for fun, but I will keep in mind the email/printing problems.

Thanks,
Ken
Ken
0

#9 User is offline   Sigi_BC84 

  • PipPipPipPip
  • Group: Full Members
  • Posts: 470
  • Joined: 2006-January-20
  • Location:Saarbrücken, Germany

Posted 2006-May-15, 14:38

kenberg, on May 15 2006, 10:25 PM, said:

I understand the point about trouble emailing if the symbols are in.
[...]
Some of the symbols can just be for fun, but I will keep in mind the email/printing problems.

I was not saying that having any symbols in the page is bad or will lead to trouble when emailing.

What I'm saying is that using images (GIF, PNG or JPG) as suit symbols is a bad idea.

By all means use &spades; or the actual character (with proper encoding, as explained above) instead of writing "S", "H", "D", "C" (I find that highly annoying, and probably I'm not alone), just don't use pixel images.

--Sigi
0

#10 User is offline   Gerardo 

  • PipPipPipPipPipPip
  • Group: Admin
  • Posts: 2,482
  • Joined: 2003-February-12
  • Gender:Male
  • Location:Dartmouth, NS, Canada

Posted 2006-May-15, 16:20

I see now.
I found IE has problems when using a font other than Arial, particularly with the diamond symbol.

This is the relevant part in the CSS for the suits:

red { color: red; font-weight: bold }
.spades { color: blue; font-family: Arial, Verdana, Tahoma, sans-serif; font-size: 120% }
.hearts { color: red; font-family: Arial, Verdana, Tahoma, sans-serif; font-size: 120% }
.diamonds { color: orange; font-family: Arial, Verdana, Tahoma, sans-serif; font-size: 120% }
.clubs { color: #00C000; font-family: Arial, Verdana, Tahoma, sans-serif; font-size: 120% }
.suits { font-family: Arial, Verdana, Tahoma, sans-serif; font-size: 120% }
.hiddenpost { color: #EEF2F7 }


This way, the 4-color scheme is done the way Sigi described above, the 2-color scheme uses class="red suits" and class="suits", and the 1-color scheme (the proper one for HIDDEN posts, which just turns the text foreground to the background color, but doesn't work as intended when suits are colorized) is just class="suits".

Found that suits look smaller than other characters, so font-size: 120% in the definitions. Also, the colors look right on a light background like this, on others sligthly different ones may work better).

#11 User is offline   kenberg 

  • PipPipPipPipPipPipPipPipPipPip
  • Group: Advanced Members
  • Posts: 11,067
  • Joined: 2004-September-22
  • Location:Northern Maryland

Posted 2006-May-15, 17:03

Sigi_BC84, on May 15 2006, 03:38 PM, said:

kenberg, on May 15 2006, 10:25 PM, said:

I understand the point about trouble emailing if the symbols are in.
[...]
Some of the symbols can just be for fun, but I will keep in mind the email/printing problems.

I was not saying that having any symbols in the page is bad or will lead to trouble when emailing.

What I'm saying is that using images (GIF, PNG or JPG) as suit symbols is a bad idea.

By all means use &spades; or the actual character (with proper encoding, as explained above) instead of writing "S", "H", "D", "C" (I find that highly annoying, and probably I'm not alone), just don't use pixel images.

--Sigi

Got it. Thanks again.
Ken
0

#12 User is offline   Redstart 

  • PipPip
  • Group: Members
  • Posts: 11
  • Joined: 2006-May-14

Posted 2006-May-16, 01:35

Oh dear, I seem to have opened up a technical can of worms.

I just want to produce documents for teaching purposes. Yes, I actually use paper!

I will try to find symbol.ttf as suggested by Gerado. I was under the impression that a dedicated font was available for suit symbols.

Playing cards with suits of four colours are available, at least in U.K.

Redstart.
0

#13 User is offline   Redstart 

  • PipPip
  • Group: Members
  • Posts: 11
  • Joined: 2006-May-14

Posted 2006-May-16, 01:41

P.S.
I used to use Zapf Dingbats on my Mac, but I have gone over to Windows and am not sure if it exists on Windows.

For 'white' symbols, just use outline style of font.

Redstart.
0

#14 User is offline   ng:) 

  • PipPipPip
  • Group: Full Members
  • Posts: 53
  • Joined: 2004-January-25
  • Location:Budapest, Hungary

Posted 2006-May-16, 04:47

Try this font:

http://zsigri.tripod...d/cardsttf.html

Gabor
0

#15 User is offline   kenberg 

  • PipPipPipPipPipPipPipPipPipPip
  • Group: Advanced Members
  • Posts: 11,067
  • Joined: 2004-September-22
  • Location:Northern Maryland

Posted 2006-May-16, 05:35

Redstart, on May 16 2006, 02:35 AM, said:

Oh dear, I seem to have opened up a technical can of worms.

I just want to produce documents for teaching purposes. Yes, I actually use paper!

I will try to find symbol.ttf as suggested by Gerado. I was under the impression that a dedicated font was available for suit symbols.

Playing cards with suits of four colours are available, at least in U.K.

Redstart.

Paper? I read about something called paper on the internet. I understand its use was quite widespread at one time.

I guess I may be the chief cuplrit in leading this thread astray. I was uncertain of what your original intent was, but it did give me a chance to get some useful information.

Best wishes,
Ken
Ken
0

#16 User is offline   FrancesHinden 

  • Limit bidder
  • PipPipPipPipPipPipPipPipPip
  • Group: Advanced Members
  • Posts: 8,482
  • Joined: 2004-November-02
  • Gender:Female
  • Location:England
  • Interests:Bridge, classical music, skiing... but I spend more time earning a living than doing any of those

Posted 2006-May-16, 06:41

If you are producing word documents or similar, you will find the suit symbols available in various fonts. The two I use most often are either in Symbol, or in Garamond.

If this is what you want to do - produce printed documents, rather than html - I can tell you more about how to do this in MS Word.
0

#17 User is offline   Sigi_BC84 

  • PipPipPipPip
  • Group: Full Members
  • Posts: 470
  • Joined: 2006-January-20
  • Location:Saarbrücken, Germany

Posted 2006-May-16, 08:25

Redstart, on May 16 2006, 09:35 AM, said:

I just want to produce documents for teaching purposes. Yes, I actually use paper!

I will try to find symbol.ttf as suggested by Gerado. I was under the impression that a dedicated font was available for suit symbols.

Forget about the Symbol font. You don't need it. Arial and many other popular fonts have the four suit symbols included. Proper Unicode fonts have the "white" variants included as well. Use the white variants for black&white documents, and use the stock variants in four colors for colored documents. That's all.

Quote

Playing cards with suits of four colours are available, at least in U.K.

Do you know any Internet retailers? I'd be interested in having a look at prices and such.

--Sigi
0

#18 User is offline   Sigi_BC84 

  • PipPipPipPip
  • Group: Full Members
  • Posts: 470
  • Joined: 2006-January-20
  • Location:Saarbrücken, Germany

Posted 2006-May-16, 08:26

ng:), on May 16 2006, 12:47 PM, said:


I like that one! Thanks for the link. I was actually looking around for while but couldn't find anything.
--Sigi
0

#19 User is offline   Redstart 

  • PipPip
  • Group: Members
  • Posts: 11
  • Joined: 2006-May-14

Posted 2006-May-18, 03:04

Thanks to all for your input. I have downloaded the Cards font, wich looks good on screen though I have yet to print it out.

I have trawled through Arial, but can't find the magic combination to bring up the suit symbols. Perhaps that sort of thing is easier on the Mac.

For four-colour cards, and plenty else, try the Chess and Bridge Shop

http://www.chess.co.uk/shop

They are based in London, but have a mail order agent in Florida.
0

#20 User is offline   erki_ 

  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 2005-October-18

Posted 2006-May-18, 03:15

test: ♠♣♥♦
test2:

hm, partially works for me, copied from character map under arial font
firefox displays all symbols
ie lacks diamond
0

  • 2 Pages +
  • 1
  • 2
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users