I was wondering if there is a conditional command that I can use in latex (e.g., \ifthenelse) that would allow me to, in one case, use the word 'a' and in another use the word 'an' based on the whether or not the following word starts with a vowel.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
TeX provides a plain \if that compares letters. The following will work, unless you do something like \AOrAn \myapplecommand, which will give unexpected results.
You cannot manually enforce an "an" like this, but you should be able to suppress it by writing \AOrAn {}university. (Edited to take remark re exceptional cases into account.) |
|||||||||
|
|
This won't work in general, because the decision to use a or an is based, not mechanically on the letter that follows the article, but on its pronunciation. Thus 'an uncle', but 'a university' and 'an honour'. |
|||||
|