Ligatures in Microsoft Word

Ligatures, in case you didn't know, are letters that have been mashed together as one character. Why would anyone want that? For aesthetic reasons. (Yes, there is an ae ligature for words like "aesthetic.") The ligatures used most often are fi and fl, accompanied by their friends ff, ffi, and ffl. That's because these letter combinations really do look kind of ugly in many fonts, with the dot on the i running into the top of the preceding f, and so on.

You can set ligatures automatically in dedicated typesetting programs like QuarkXPress and InDesign. In Microsoft Word, it's not so simple. But it is possible. Here's how:

1. Have a font that includes ligatures. You probably already have several, even if you don't know it.

2. In Microsoft Word, click "Insert."

3. Click "Symbol."

4. On the "Symbols" tab, make sure there's a "Subset" dropdown list on the right. If there's not, pick a different font from the "Font" list on the left. (If you've got Palatino Linotype, you've hit the jackpot.)

5. Scroll down the "Subset" list until you find a subset called "Alphabetic Presentation Forms." Or, easier still, click in the list and then press the "A" key on your keyboard until you come to "Alphabetic Presentation Forms."

6. Somewhere in the characters displayed will be some ligatures, probably fi and fl but maybe others as well. Click one of them, then click "Insert," and then click "Close."

You should now have a ligature in your document--in Microsoft Word, of all places! Of course, you'll want to use ligatures from a font that you're using for the rest of your document so that everything matches up nice and pretty. You'll probably be surprised at how good the ligatures look.

I doubt that you'll want to insert all those ligatures by hand in an existing document. Instead, you can insert them using Word's Find and Replace feature. For example, you can find "fi" and replace it with the fi ligature character. If the ffi and ffl ligatures are available, you should find and replace those character combinations *before* doing fi, fl, and ff. Otherwise, the fi, fl, and ff in the ffi and ffl letter combinations will be replaced with the fi, fl, and ff ligatures--not good. (Try saying that last sentence three times really fast.) If the ffi and ffl ligatures are *not* available, you may not want to use fi and fl either, for the same reason. (If you like, you can record the whole Find and Replace procedure as a macro that you can use again on future projects.)

If you need more information about finding and replacing special (Unicode) characters, you'll find it here:

http://www.topica.com/lists/editorium/read/message.html?mid=1710421080

And now, a caution. Using ligatures will foul up spell-checking for the words in which they are used, because Word will see the words as misspelled. For that and other reasons, you should keep a backup of your original file as a source document and consider the file containing ligatures as a presentation document. You can learn more about this here:

http://www.topica.com/lists/editorium/read/message.html?mid=1709632986

_________________________________________

READERS WRITE

Last week's newsletter included an article on making a wildcard dictionary and asking for your help in compiling one by submitting your favorite wildcard strings with a brief explanation of what they do. Some readers have been kind enough to send them in, but others are still holding out. Come on guys--you know who you are! Please send your niftiest wildcard creations here: mailto:editor [at symbol] editorium.com. Thanks!

_________________________________________

RESOURCES

Want to see the old-fashioned approach to using ligatures? Here's the scoop:

http://www.orbitals.com/self/ligature/ligature.htm

Will Harris presents an informative and persuasive argument *against* using ligatures at his strikingly designed Web site:

http://www.will-harris.com/ligatures.htm

Wildcard Dictionary

If you've been reading Editorium Update for a while, you know about wildcard searches and some of the neat things you can do with them. If you don't know about them, you can learn by reading these past issues of the newsletter:

http://www.topica.com/lists/editorium/read/message.html?mid=1705963026

http://www.topica.com/lists/editorium/read/message.html?mid=1706069286

http://www.topica.com/lists/editorium/read/message.html?mid=1706167662

http://www.topica.com/lists/editorium/read/message.html?mid=1706267069

http://www.topica.com/lists/editorium/read/message.html?mid=1706365638

http://www.topica.com/lists/editorium/read/message.html?mid=1706458823

Even though I use wildcard searches all the time, I don't do a very good job of saving my wildcard entries so I can use them again. But that's going to change when I make my wildcard dictionary. The dictionary will include entries in the following format:

* A description of what the Find and Replace wildcard strings do.

* The wildcard Find and Replace strings themselves.

* Some keywords I can search for if I'm looking for wildcard strings for a certain purpose.

* Before-and-after examples of what the wildcard strings do.

* Other comments.

Here's an example, with a wildcard string you may be able to use:

DESCRIPTION: Find parenthetical publishing information in source citations and replace it with nothing to help in changing citations to short form.

FIND WHAT: ([A-z ,.]@:[!)]@[0-9]{4})

RELACE WITH: [nothing]

KEY WORDS: publishing information, source, citation, footnotes, endnotes, books, parentheses, long, short, delete

BEFORE: Jack M. Lyon, Total Word Domination (Edina, Minn.: PocketPCPress, 2001), p. 237.

AFTER: Jack M. Lyon, Total Word Domination, p. 237.

COMMENTS: Won't find or delete other parenthetical text. *Note that the Find string includes a space in front of it, and that space is necessary.*

I'll save this kind of information for all of my wildcard strings henceforth and forever. Maybe you'd like to do something similar with yours.

I'll tell you what: If you'll send me your favorite wildcard strings with brief descriptions of what they do, I'll compile them into one big dictionary and publish it in a future issue of the newsletter for all to share. Please send your entries here:

mailto:editor [at symbol] editorium.com

If you don't have any, it's time to read those newsletter articles I mentioned above. You'll be glad you did!

_________________________________________

READERS WRITE

Continuing our Dvorak keyboard discussion, Rich Shattenberg wrote:

If you can find an old copy of Mavis Beacon, version 5, it has instructions for the Dvorak keyboard. I tried to convert once a year ago but something happened along the way and I reverted back to the old Qwerty system. It may have helped me if I had been using an actual Dvorak keyboard instead of a Qwerty keyboard.

Thanks to Rich for the useful information.

_________________________________________

RESOURCES

About.com has a valuable list of free software and other resources for word processing and desktop publishing:

http://desktoppub.about.com/cs/freebiesmisc/

Macro to Swap Table Cells

If you work with tables, you've probably wished for a way to automatically swap the contents of two adjacent cells. If so, here's a macro that will do the trick. Just put your cursor in the first of the two cells you want to transpose and then run the macro.

If you don't know how to use macros like this, you can learn how here.

'THE MACRO STARTS HERE
Sub SWAPCELLS()
WordBasic.ScreenUpdating 0  'So you don't have to watch gyrations
WordBasic.SelType 1 'Get off any selected text
'In first cell
WordBasic.NextCell  'So you can select cell contents
WordBasic.PrevCell  'Select cell contents
If Asc(WordBasic.[Selection$]()) = 13 Then  'Cell is empty
WordBasic.MsgBox "This cell contains no text to invert.", "Cell Empty"
GoTo Endmacro
Else
WordBasic.WW7_EditAutoText Name:="IMCell1IM", Context:=0, InsertAs:=0, Add:=1
WordBasic.WW6_EditClear
End If
WordBasic.NextCell
'In second cell
If Asc(WordBasic.[Selection$]()) = 13 Then  'Cell is empty
WordBasic.MsgBox "The next cell contains no text to invert.", "Next Cell Empty"
WordBasic.EditUndo  'Put the text back into the first cell
WordBasic.SelType 1 'Get off selected text
GoTo Endmacro
Else
WordBasic.WW7_EditAutoText Name:="IMCell2IM", Context:=0, InsertAs:=0, Add:=1
WordBasic.WW6_EditClear
WordBasic.WW7_EditAutoText Name:="IMCell1IM", Context:=0, InsertAs:=0, Insert:=1
WordBasic.WW7_EditAutoText Name:="IMCell1IM", Context:=0, InsertAs:=0, Delete:=1
End If
WordBasic.PrevCell
'Back in first cell
WordBasic.WW7_EditAutoText Name:="IMCell2IM", Context:=0, InsertAs:=0, Insert:=1
WordBasic.WW7_EditAutoText Name:="IMCell2IM", Context:=0, InsertAs:=0, Delete:=1
Endmacro:
WordBasic.ScreenUpdating 1
WordBasic.ScreenRefresh
End Sub
'THE MACRO ENDS HERE

____________________________________________________

DVORAK KEYBOARD UPDATE

After practicing about half an hour a day for the past three weeks, I'm almost at the point where I can stand to work exclusively in Dvorak, which for me is about 25 words a minute. I still can't get my fingers to automatically go where they should all the time, especially if I try to type quickly. Here are my recommendations for any who are seriously considering making the switch:

1. If you're a beginning typist or don't type very quickly anyway, learn the Dvorak keyboard.

2. If you suffer from repetitive stress injuries but must continue to type (have you considered speech recognition?), learn the Dvorak keyboard.

3. If you're an accomplished QWERTY typist, think twice about taking on the challenge. In the end, the effort may be worth it (I've decided to stick with it), but getting proficient will cost you in time, effort, and exasperation.

4. Take it slow. You won't get fast overnight, so don't try. Initially, aim for accuracy. Speed will come with practice.

5. Use a good typing tutor program to help you learn. Don't use Mavis Beacon Teaches Typing, which no longer supports Dvorak. There's a pretty good free program (KP Typing Tutor) here:

http://www.fonlow.com/zijianhuang/kp/

A program with more thorough instruction and fancier features is TypingMaster, which you can try and buy here:

http://www.typingmaster.com/

6. Practice at least half an hour every day. If you do more than that, take breaks frequently.

7. After your speed reaches about 25 words a minute, avoid working in QWERTY. Otherwise, your fingers will get confused. At least mine do.

8. Try to learn during a time when your workload is light. If deadlines are looming, your reduced typing speed will drive you crazy.

Good luck!

_________________________________________

READERS WRITE

Last week's newsletter explained how to select text vertically using the mouse. Hilary Powers responded:

For the mouse-phobic, there's an easier way: Press and release Shft-Ctrl-F8. The insertion point changes to a long thin line, after which you can select your rectangle with the arrow keys - much more comfortable.

Katie Lewis sent the same tip with some additional information:

You know F8 is an alternative to holding down the Shift key for selecting text? It works well with the cursor keys, so is much more controlled than using the mouse. Ctrl+Shift+F8 does the same thing for vertical selection. (Esc to turn off.)

Thanks to Hilary and Katie for the useful tips.

_________________________________________

RESOURCES

Last week's newsletter listed some document comparison programs to replace the "retired" CompareRite. Both Donna Payne and Bill Rubidge wrote to recommend DeltaView, which you can learn about here:

http://www.workshare.net

Bill noted:

The only downside is that DeltaView is focused on enterprise users (particularly law firms), so they don't offer single-user licenses. They've considered this, but have not accepted it so far because they feel the customer support would cost them too much. Perhaps if enough of us asked about single-user licenses...

As an alternative, examdiff is okay, I also recommend that your readers visit http://www.componentsoftware.com/products/ and take a look at CSdiff and HTMLdiff.

And then again, you can always just stick with your current version of Word. I'm a big fan of downgrading instead of upgrading.

Thanks to Donna and Bill for this helpful information.