If you are trying to insert the therefore symbol into a Word document
Hold down the ALT key and type 8756
In Excel, select insert, then select Symbol.
Then using the pulldown menu by Font, select Symbol
Type character code 92 in decimal.
You can do the same in Word as well.
If you are trying to insert the therefore symbol into a Word document
Hold down the ALT key and type 8756
In Excel, select insert, then select Symbol.
Then using the pulldown menu by Font, select Symbol
Type character code 92 in decimal.
You can do the same in Word as well.
in the symbol section there fore sign was not there but thanks for ALT+8756 was useful in word and than copy and paste to Excel
Videos
If you are trying to insert the therefore symbol into a Word document
Hold down the ALT key and type 8756
In Excel, select insert, then select Symbol.
Then using the pulldown menu by Font, select Symbol
Type character code 92 in decimal.
You can do the same in Word as well.
Hey guys. I'm a philosophy undergraduate. As I often have to formally write out arguments I'm constantly using the 'therefore' symbol (∴). It would be useful to be able to have a single key (or a alt + a key, ideally alt + t) to input this symbol to save time. I tried googling how to do this, and came to an article which suggested using 'AutoHotkey', however as far as I can tell, the therefore symbol appears to be a unicode character and the script for 'Autohotkey' is written in 'ANSI' (although correct me if I'm horribly mistaken about that). So I'm a bit stuck and it would be nice to have a straightforward answer to this problem specific to my situation, so I know exactly what I'm doing. I'm using windows 8.1 and word 2013 if that makes a difference.
Any assistance would be great!
If you want to do this often, you can create a keybindings file in your Library to map it to a key combination.
In ~/Library create a directory named KeyBindings. Create a file named DefaultKeyBinding.dict inside the directory. You can add key bindings in this format:
{
"x" = (insertText:, "\U23CF");
"y" = (insertText:, "hi"); /* warning: this will change 'y' to 'hi'! */
}
The LHS is the key combination you'll hit to enter the character. You can use the following characters to indicate command keys:
@ - Command
~ - Option
^ - Control
You'll need to look up the unicode for your character (in this case, ∴ is \U2234). So to type this character whenever you typed Control-M, you'd use
"^m" = (insertText:, "\U2234");
You can find more information here: http://www.hcs.harvard.edu/~jrus/site/cocoa-text.html
First you use a full stop, then you hold down alt and press the letter H and put in another full stop. .˙.
Office 365 Word 2018
So the therefore symbol on the left is the one I want and the one on the right (U+2234) is the one default one that word accepts as a symbol. I can insert the one on the right with a CMD+OPT+T custom keyboard shortcut (achieved by going to insert (Font: Symbol), selecting the therefore image then keyboard shortcut). Is there anyone to use the therefore symbol I want over the default one? I've tried text replacement in system preferences & word but they won't accept my preferred symbol.
Possible solutions that might work but I don't know where to start:
- Is there a keyboard language that supports this exact symbol?
- Is there a clipboard manager that I can use to store this symbol and then have a hotkey to use it
Usually, I copy my preferred symbol from googling "therefore symbol" and copying the symbol in the immediate definition but this prevents me from copying anything else.