unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Re: emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi
       [not found] ` <20220729074428.12D06C00095@vcs2.savannah.gnu.org>
@ 2022-07-29  8:49   ` Stefan Kangas
  2022-07-29  9:13     ` Štěpán Němec
                       ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Stefan Kangas @ 2022-07-29  8:49 UTC (permalink / raw)
  To: Štěpán Němec, emacs-devel

Štěpán Němec <stepnem@gmail.com> writes:

>     ; Correct the meaning of "cf." in tips.texi
>
>     Cf. e.g. https://en.wiktionary.org/wiki/cf.
>
>     * doc/lispref/tips.texi (Documentation Tips): Correct the meaning of
>     "cf.".
> ---
>  doc/lispref/tips.texi | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi
> index a3f49c19bc..eddbbfe8b9 100644
> --- a/doc/lispref/tips.texi
> +++ b/doc/lispref/tips.texi
> @@ -845,7 +845,7 @@ find an alternate phrasing that conveys the meaning.
>  @item
>  Try to avoid using abbreviations such as ``e.g.'' (for ``for
>  example''), ``i.e.'' (for ``that is''), ``no.'' (for ``number''),
> -``cf.'' (for ``in contrast to'') and ``w.r.t.'' (for ``with respect
> +``cf.'' (for ``compare''/``see also'') and ``w.r.t.'' (for ``with respect
>  to'') as much as possible.  It is almost always clearer and easier to
>  read the expanded version.@footnote{We do use these occasionally, but
>  try not to overdo it.}

I'm not sure about this change:

- I don't think "see also" is correct.

- In Bug#40011, I quote Writing for Computer Science by Justin Zobel
  (2004), which says:

    "It is often tempting to use abbreviations such as 'no.', 'i.e.',
    'e.g.' 'c.f.' and 'w.r.t.'  These save little space on the page,
    but slow readers down.  It is almost always desirable to expand
    these abbreviations, to 'number', 'that is', 'for example',
    'compared with' (or more accurately 'in contrast to', since that
    is the sense in which 'c.f.' should be used), and 'with respect
    to', or synonyms of these expressions.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi
  2022-07-29  8:49   ` emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi Stefan Kangas
@ 2022-07-29  9:13     ` Štěpán Němec
  2022-07-29  9:50       ` Stefan Kangas
  2022-07-29  9:29     ` Andreas Schwab
  2022-07-29 10:04     ` Gregory Heytings
  2 siblings, 1 reply; 5+ messages in thread
From: Štěpán Němec @ 2022-07-29  9:13 UTC (permalink / raw)
  To: Stefan Kangas, emacs-devel

On Fri, 29 Jul 2022 01:49:13 -0700
Stefan Kangas wrote:

> Štěpán Němec <stepnem@gmail.com> writes:
>
>>     ; Correct the meaning of "cf." in tips.texi
>>
>>     Cf. e.g. https://en.wiktionary.org/wiki/cf.
>>
>>     * doc/lispref/tips.texi (Documentation Tips): Correct the meaning of
>>     "cf.".
>> ---
>>  doc/lispref/tips.texi | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/doc/lispref/tips.texi b/doc/lispref/tips.texi
>> index a3f49c19bc..eddbbfe8b9 100644
>> --- a/doc/lispref/tips.texi
>> +++ b/doc/lispref/tips.texi
>> @@ -845,7 +845,7 @@ find an alternate phrasing that conveys the meaning.
>>  @item
>>  Try to avoid using abbreviations such as ``e.g.'' (for ``for
>>  example''), ``i.e.'' (for ``that is''), ``no.'' (for ``number''),
>> -``cf.'' (for ``in contrast to'') and ``w.r.t.'' (for ``with respect
>> +``cf.'' (for ``compare''/``see also'') and ``w.r.t.'' (for ``with respect
>>  to'') as much as possible.  It is almost always clearer and easier to
>>  read the expanded version.@footnote{We do use these occasionally, but
>>  try not to overdo it.}
>
> I'm not sure about this change:
>
> - I don't think "see also" is correct.
>
> - In Bug#40011, I quote Writing for Computer Science by Justin Zobel
>   (2004), which says:
>
>     "It is often tempting to use abbreviations such as 'no.', 'i.e.',
>     'e.g.' 'c.f.' and 'w.r.t.'  These save little space on the page,
>     but slow readers down.  It is almost always desirable to expand
>     these abbreviations, to 'number', 'that is', 'for example',
>     'compared with' (or more accurately 'in contrast to', since that
>     is the sense in which 'c.f.' should be used), and 'with respect
>     to', or synonyms of these expressions.

Giving "in contrast to" as the (only) expansion felt obviously strange
to me both etymologically (the abbreviation comes from Latin for
"compare") and semantically (how it has been typically used in English),
so I thought it was more likely to be an oversight, and my change likely
uncontroversial.

I have no idea about the book you quote.

In any case, it might not be terribly important to dwell on the single
best cf. expansion, given that the main message of the paragraph in
tips.texi is "let's try to avoid these abbreviations in the docs".

If you want to be really scientific about this, I suggest checking a
quality English corpus rather than a book or a few people's (native
speakers or not) opinion.

Nevertheless, in retrospect I see I should have checked the revision
history and the bug (I usually do, but see my first paragraph above)
and I do apologize for not doing so.

I hope this is not going to become one of those emacs-devel threads.

-- 
Štěpán



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi
  2022-07-29  8:49   ` emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi Stefan Kangas
  2022-07-29  9:13     ` Štěpán Němec
@ 2022-07-29  9:29     ` Andreas Schwab
  2022-07-29 10:04     ` Gregory Heytings
  2 siblings, 0 replies; 5+ messages in thread
From: Andreas Schwab @ 2022-07-29  9:29 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: Štěpán Němec, emacs-devel

On Jul 29 2022, Stefan Kangas wrote:

> - In Bug#40011, I quote Writing for Computer Science by Justin Zobel
>   (2004), which says:
>
>     "It is often tempting to use abbreviations such as 'no.', 'i.e.',
>     'e.g.' 'c.f.' and 'w.r.t.'  These save little space on the page,
>     but slow readers down.  It is almost always desirable to expand
>     these abbreviations, to 'number', 'that is', 'for example',
>     'compared with' (or more accurately 'in contrast to', since that
>     is the sense in which 'c.f.' should be used), and 'with respect
>     to', or synonyms of these expressions.

The wiktionary refers to
https://dictionary.cambridge.org/us/dictionary/english/cf, which prefers
`cf.' over `c.f.', and uses the meaning `compare with'.

-- 
Andreas Schwab, schwab@linux-m68k.org
GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510  2552 DF73 E780 A9DA AEC1
"And now for something completely different."



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi
  2022-07-29  9:13     ` Štěpán Němec
@ 2022-07-29  9:50       ` Stefan Kangas
  0 siblings, 0 replies; 5+ messages in thread
From: Stefan Kangas @ 2022-07-29  9:50 UTC (permalink / raw)
  To: Štěpán Němec; +Cc: Emacs developers

Štěpán Němec <stepnem@gmail.com> writes:

> Giving "in contrast to" as the (only) expansion felt obviously strange

How about "compare with"/"in contrast to"?



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi
  2022-07-29  8:49   ` emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi Stefan Kangas
  2022-07-29  9:13     ` Štěpán Němec
  2022-07-29  9:29     ` Andreas Schwab
@ 2022-07-29 10:04     ` Gregory Heytings
  2 siblings, 0 replies; 5+ messages in thread
From: Gregory Heytings @ 2022-07-29 10:04 UTC (permalink / raw)
  To: Stefan Kangas; +Cc: Štěpán Němec, emacs-devel


>>  Try to avoid using abbreviations such as ``e.g.'' (for ``for
>>  example''), ``i.e.'' (for ``that is''), ``no.'' (for ``number''),
>> -``cf.'' (for ``in contrast to'') and ``w.r.t.'' (for ``with respect
>> +``cf.'' (for ``compare''/``see also'') and ``w.r.t.'' (for ``with respect
>>  to'') as much as possible.  It is almost always clearer and easier to
>>  read the expanded version.@footnote{We do use these occasionally, but
>>  try not to overdo it.}
>
> I'm not sure about this change:
>
> - I don't think "see also" is correct.
>
> - In Bug#40011, I quote Writing for Computer Science by Justin Zobel 
> (2004), which says:
>

The reference on these matters is the CMOS, in which "cf." is defined as 
follows (section 10.43, p. 505): "{\it confer}, compare ("see, by way of 
comparison"; should not be used when {\it see} alone is meant)".



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-07-29 10:04 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <165908066777.10020.10943301720600410977@vcs2.savannah.gnu.org>
     [not found] ` <20220729074428.12D06C00095@vcs2.savannah.gnu.org>
2022-07-29  8:49   ` emacs-28 2c6a94c5b8: ; Correct the meaning of "cf." in tips.texi Stefan Kangas
2022-07-29  9:13     ` Štěpán Němec
2022-07-29  9:50       ` Stefan Kangas
2022-07-29  9:29     ` Andreas Schwab
2022-07-29 10:04     ` Gregory Heytings

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).