* Therefore sign
@ 2012-12-30 20:33 Cecil Westerhof
2012-12-30 21:04 ` Dmitry Gutov
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Cecil Westerhof @ 2012-12-30 20:33 UTC (permalink / raw)
To: help-gnu-emacs
I need to use the ‘therefore sign’. How to use that in Emacs?
--
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Therefore sign
2012-12-30 20:33 Therefore sign Cecil Westerhof
@ 2012-12-30 21:04 ` Dmitry Gutov
2012-12-30 21:10 ` Yagnesh Raghava Yakkala
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Dmitry Gutov @ 2012-12-30 21:04 UTC (permalink / raw)
To: Cecil Westerhof; +Cc: help-gnu-emacs
Cecil Westerhof <Cecil@decebal.nl> writes:
> I need to use the ‘therefore sign’. How to use that in Emacs?
M-x insert-char RET therefore RET
Is that the one?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Therefore sign
2012-12-30 20:33 Therefore sign Cecil Westerhof
2012-12-30 21:04 ` Dmitry Gutov
@ 2012-12-30 21:10 ` Yagnesh Raghava Yakkala
[not found] ` <mailman.16364.1356901473.855.help-gnu-emacs@gnu.org>
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Yagnesh Raghava Yakkala @ 2012-12-30 21:10 UTC (permalink / raw)
To: Cecil Westerhof; +Cc: help-gnu-emacs
Hello Cecil,
On 12月 31 2012, Cecil Westerhof <Cecil@decebal.nl> wrote:
> I need to use the ‘therefore sign’. How to use that in Emacs?
you mean how to type "∴" in emacs?
If so, try the following,
,----
| C-x 8 <return> t h e r e f o r e <return>
`----
Don't forget to auto completion support for symbol name with TAB (instead of
typing all "therefore").
Thanks.,
--
ఎందరో మహానుభావులు అందరికి వందనములు
YYR
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Therefore sign
[not found] ` <mailman.16364.1356901473.855.help-gnu-emacs@gnu.org>
@ 2012-12-31 0:28 ` Cecil Westerhof
0 siblings, 0 replies; 6+ messages in thread
From: Cecil Westerhof @ 2012-12-31 0:28 UTC (permalink / raw)
To: help-gnu-emacs
Op zondag 30 dec 2012 22:04 CET schreef Dmitry Gutov:
> Cecil Westerhof <Cecil@decebal.nl> writes:
>
>> I need to use the ‘therefore sign’. How to use that in Emacs?
>
> M-x insert-char RET therefore RET
>
> Is that the one?
In my Emacs that is not an interactive function.
--
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: Therefore sign
[not found] ` <mailman.16365.1356901480.855.help-gnu-emacs@gnu.org>
@ 2012-12-31 0:30 ` Cecil Westerhof
0 siblings, 0 replies; 6+ messages in thread
From: Cecil Westerhof @ 2012-12-31 0:30 UTC (permalink / raw)
To: help-gnu-emacs
Op zondag 30 dec 2012 22:10 CET schreef Yagnesh Raghava Yakkala:
>
> Hello Cecil,
>
> On 12月 31 2012, Cecil Westerhof <Cecil@decebal.nl> wrote:
>
>> I need to use the ‘therefore sign’. How to use that in Emacs?
>
> you mean how to type "∴" in emacs?
>
> If so, try the following,
>
> ,----
> | C-x 8 <return> t h e r e f o r e <return>
> `----
>
> Don't forget to auto completion support for symbol name with TAB
> (instead of typing all "therefore").
That is exactly what I needed. This is something to look into for more
goodies. I see that the because ∵ also works.
--
Cecil Westerhof
Senior Software Engineer
LinkedIn: http://www.linkedin.com/in/cecilwesterhof
^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: Therefore sign
2012-12-30 20:33 Therefore sign Cecil Westerhof
` (3 preceding siblings ...)
[not found] ` <mailman.16365.1356901480.855.help-gnu-emacs@gnu.org>
@ 2013-01-02 13:07 ` Doug Lewan
4 siblings, 0 replies; 6+ messages in thread
From: Doug Lewan @ 2013-01-02 13:07 UTC (permalink / raw)
To: Cecil Westerhof, help-gnu-emacs@gnu.org
Cecil,
Here's a different style of solution.
I use the latin-1-prefix input method and have the following in my .emacs:
(setq default-input-method "latin-1-prefix")
(let ((quail-setup-buf (get-buffer-create "*Quail setup*")))
(save-excursion (set-buffer quail-setup-buf)
(toggle-input-method)
...
(quail-defrule ":." ?∴) ;N.B. This is backwards from rfc1345.el.
...))
I also have this comment near the above:
;; This seems rather a bit of a hack.
It's not obvious that the above technique is "good" or "the right one" (and I'm happy to learn a better style), but it gets me the symbols that I want.
,Douglas
Douglas Lewan
Shubert Ticketing
(201) 489-8600 ext 224
When I do good, I feel good. When I do bad, I feel bad and that's my religion. - Abraham Lincoln
> -----Original Message-----
> From: help-gnu-emacs-bounces+dougl=shubertticketing.com@gnu.org
> [mailto:help-gnu-emacs-bounces+dougl=shubertticketing.com@gnu.org] On
> Behalf Of Cecil Westerhof
> Sent: Sunday, 2012 December 30 15:34
> To: help-gnu-emacs@gnu.org
> Subject: Therefore sign
>
> I need to use the ‘therefore sign’. How to use that in Emacs?
>
> --
> Cecil Westerhof
> Senior Software Engineer
> LinkedIn: http://www.linkedin.com/in/cecilwesterhof
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2013-01-02 13:07 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-30 20:33 Therefore sign Cecil Westerhof
2012-12-30 21:04 ` Dmitry Gutov
2012-12-30 21:10 ` Yagnesh Raghava Yakkala
[not found] ` <mailman.16364.1356901473.855.help-gnu-emacs@gnu.org>
2012-12-31 0:28 ` Cecil Westerhof
[not found] ` <mailman.16365.1356901480.855.help-gnu-emacs@gnu.org>
2012-12-31 0:30 ` Cecil Westerhof
2013-01-02 13:07 ` Doug Lewan
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.