Have you read _This Book_?
Saturday, 4 December 2004 08:32![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
It annoys me slightly when people write in HTML and underline book titles such as, say, Animal Farm.
As far as I know, "proper" typography used italics for book titles, and underlining is merely a necessity forced on users of typewriters who had no separate italics typeface. Well, guess what: in HTML you do have an "italics" tag! So I consider it proper to italicise titles (Animal Farm).
In the spirit of semantic markup, I suppose a separate tag would be better, but I can't think of one whose meaning matches, so I just use the generic <i>
tag. (Which I also use for, say, marking up foreign words that are still perceived to be foreign, when I do so, as in vice versa.)
no subject
Date: Friday, 3 December 2004 23:42 (UTC)You consider "vice versa" to be foreign? Or do you mean, just when you write in German it's considered foreign?
What I'll never understand is why some people feel the need to differentiate between the <em> tag and the <i> tag, or between the <strong> tag and the <bold> tag. I once had a friend edit some HTML for my web page (this was back before CSS; heck, it was back when the use of frames was highly controversial) and he insisted it was no longer preferred to use the <i> tag and changed all my <i>'s to <em>'s.
no subject
Date: Saturday, 4 December 2004 01:22 (UTC)Kind of. At least, when I'm in the mood for marking up Latin-derived phrases. I'd also be inclined to italicise versus in such cases.
What I'll never understand is why some people feel the need to differentiate between the <em> tag and the <i> tag, or between the <strong> tag and the <bold> tag.
Hm. I tend to try to use <em> and <strong> when appropriate, i.e. when emphasising some word or words, and to use the meaningless <i> and <b> when I'm using them because certain things are italicised or bold by convention. In general, I try to mark up my HTML by semantics, e.g. using <h2> instead of font tags to make a normal paragraph bigger and bold.
i, b, u (and s/strike, which isn't in HTML 4 Strict IIRC, though the others are) are kind of "warts" in HTML, since in general, it tries to mark up structure, not presentation.
heck, it was back when the use of frames was highly controversial
You mean it isn't now? :)
he insisted it was no longer preferred to use the <i> tag
That's my understanding, too—at least among people who take HTML semi-seriously and don't just slap together a layout in MS FrontPage by eye, regardless of the code produced.
and changed all my <i>'s to <em>'s.
Now that I wouldn't do, and I don't like HTML editors that italicise text by putting "em" tags around it. Usually, italics are used for emphasis, and bold text for strong emphasis, but not always! So you can't just go and replace all i's with em's because then you're claiming that all this text is emphasised, which may not be true.
no subject
Date: Saturday, 4 December 2004 04:27 (UTC)no subject
Date: Saturday, 4 December 2004 04:54 (UTC)I agree on all points. The words I tend to italicise most are versus, ergo (both Latin, as you do) and vis-à-vis (French in that case) - also the interjection n'est-ce pas, which I use a lot. And underlining? Please. :) Usually I resort to underlining only when emphasising in bold italics just isn't enough...
no subject
Date: Saturday, 4 December 2004 06:14 (UTC)no subject
Date: Saturday, 4 December 2004 02:37 (UTC)no subject
Date: Saturday, 4 December 2004 02:54 (UTC)But I hate seeing stuff underlined in HTML regardless because I always think it's a link.
no subject
Date: Saturday, 4 December 2004 05:12 (UTC)no subject
Date: Saturday, 4 December 2004 10:11 (UTC)no subject
Date: Saturday, 4 December 2004 11:53 (UTC)So nyah.
The correct tag is cite
Date: Saturday, 4 December 2004 17:37 (UTC)A user stylesheet can then determine how it is displayed.
Re: The correct tag is cite
Date: Saturday, 4 December 2004 21:00 (UTC)I used to think that <cite> was pretty useless since I didn't understand what it could "properly" be used for. (For example, I used to use it to quote other people until it was pointed out to me that that was not what it was intended for.)
However, for things such as binomial names for organisms (see
Re: The correct tag is cite
Date: Sunday, 5 December 2004 03:47 (UTC)Tennyson
Albert Einstein
Of course cite is also an attribute, when the citation is a URI. User agents should allow this link to be followed:
As for binomial names: I can't really think of a tag that would suit them well, but neither I nor SPAN seem correct. I'd use something like <em class="binname">Homo sapiens</em> probably.
<I>, <B>, <S>, <U> are not tags which should be used, ever — but they cannot and should not be replaced with <EM>, <STRONG> etc. automatically either.
Incidently, I wish there were some clear (logical, not visual) distinction between EM and STRONG…