InnoDB full-text search is modeled on the Sphinx full-text search engine, and the algorithms used are based on BM25 and TF-IDF ranking algorithms. For these reasons, relevancy rankings for InnoDB boolean full-text search may differ from MyISAM relevancy rankings. InnoDB uses a variation of the ' term frequency-inverse document frequency ' (TF-IDF) weighting system to rank a document's. Text Twist 2 – sequel to one of the most popular word games of all time! A remarkable and difficult this game is doing 25,000 new added words. The popular word game turn back with a vengeance and wants you to try to solve the mystery words. In this game are five challenging game modes. To use 1-1/2-space lines, press Ctrl+5. Yes, this keyboard shortcut is for 1.5 lines not 5 lines. Use the 5 key in the typewriter area of the computer keyboard. Pressing the 5 key on the numeric keypad activates the Select All command. The Ctrl+0 (zero) keyboard shortcut applies Word's default line spacing, which is 1.15. Phrases about keys – text expansion know-how help? Text expansion utilities monitor your typing and trigger rules when you type a predefined phrase or key combinations. When it comes to text expansion tools, you've got lots of choices depending on the platform you're running.
Quick Key 2 0 – Text Expansion Word Generator
MySQL can perform boolean full-text searches using the IN BOOLEAN MODE
modifier. With this modifier, certain characters have special meaning at the beginning or end of words in the search string. In the following query, the +
and -
operators indicate that a word must be present or absent, respectively, for a match to occur. Thus, the query retrieves all the rows that contain the word 'MySQL' but that do not contain the word 'YourSQL':
In implementing this feature, MySQL uses what is sometimes referred to as implied Boolean logic, in which
+
stands forAND
-
stands forNOT
[no operator] implies
OR
Taskpaper 3 3 2 download free. Boolean full-text searches have these characteristics: Iflicks 2 4 5 download free.
They do not automatically sort rows in order of decreasing relevance.
InnoDB
tables require aFULLTEXT
index on all columns of theMATCH()
expression to perform boolean queries. Boolean queries against aMyISAM
search index can work even without aFULLTEXT
index, although a search executed in this fashion would be quite slow.The minimum and maximum word length full-text parameters apply to
FULLTEXT
indexes created using the built-inFULLTEXT
parser and MeCab parser plugin.innodb_ft_min_token_size
andinnodb_ft_max_token_size
are used forInnoDB
search indexes.ft_min_word_len
andft_max_word_len
are used forMyISAM
search indexes.Minimum and maximum word length full-text parameters do not apply to
FULLTEXT
indexes created using the ngram parser. ngram token size is defined by thengram_token_size
option.The stopword list applies, controlled by
innodb_ft_enable_stopword
,innodb_ft_server_stopword_table
, andinnodb_ft_user_stopword_table
forInnoDB
search indexes, andft_stopword_file
forMyISAM
ones.InnoDB
full-text search does not support the use of multiple operators on a single search word, as in this example:'++apple'
. Use of multiple operators on a single search word returns a syntax error to standard out. MyISAM full-text search will successfully process the same search ignoring all operators except for the operator immediately adjacent to the search word.InnoDB
full-text search only supports leading plus or minus signs. For example,InnoDB
supports'+apple'
but does not support'apple+'
. Specifying a trailing plus or minus sign causesInnoDB
to report a syntax error.InnoDB
full-text search does not support the use of a leading plus sign with wildcard ('+*'
), a plus and minus sign combination ('+-'
), or leading a plus and minus sign combination ('+-apple'
). These invalid queries return a syntax error.InnoDB
full-text search does not support the use of the@
symbol in boolean full-text searches. The@
symbol is reserved for use by the@distance
proximity search operator.They do not use the 50% threshold that applies to
MyISAM
search indexes.
The boolean full-text search capability supports the following operators:
+
A leading or trailing plus sign indicates that this word must be present in each row that is returned.
InnoDB
only supports leading plus signs.-
A leading or trailing minus sign indicates that this word must not be present in any of the rows that are returned.
InnoDB
only supports leading minus signs.Note: The
-
operator acts only to exclude rows that are otherwise matched by other search terms. Thus, a boolean-mode search that contains only terms preceded by-
returns an empty result. It does not return 'all rows except those containing any of the excluded terms.'(no operator)
By default (when neither
+
nor-
is specified), the word is optional, but the rows that contain it are rated higher. This mimics the behavior ofMATCH() . AGAINST()
without theIN BOOLEAN MODE
modifier.@
distance
This operator works on
InnoDB
tables only. It tests whether two or more words all start within a specified distance from each other, measured in words. Specify the search words within a double-quoted string immediately before the@
operator, for example,distance
MATCH(col1) AGAINST('word1 word2 word3' @8' IN BOOLEAN MODE)
> <
These two operators are used to change a word's contribution to the relevance value that is assigned to a row. The
>
operator increases the contribution and the<
operator decreases it. See the example following this list.( )
Parentheses group words into subexpressions. Parenthesized groups can be nested.
~
A leading tilde acts as a negation operator, causing the word's contribution to the row's relevance to be negative. This is useful for marking 'noise' words. A row containing such a word is rated lower than others, but is not excluded altogether, as it would be with the
-
operator.*
The asterisk serves as the truncation (or wildcard) operator. Unlike the other operators, it is appended to the word to be affected. Words match if they begin with the word preceding the
*
operator.If a word is specified with the truncation operator, it is not stripped from a boolean query, even if it is too short or a stopword. Whether a word is too short is determined from the
innodb_ft_min_token_size
setting forInnoDB
tables, orft_min_word_len
forMyISAM
tables. These options are not applicable toFULLTEXT
indexes that use the ngram parser.The wildcarded word is considered as a prefix that must be present at the start of one or more words. If the minimum word length is 4, a search for
'+
could return fewer rows than a search forword
+the*''+
, because the second query ignores the too-short search termword
+the'the
.'
A phrase that is enclosed within double quote (
'
) characters matches only rows that contain the phrase literally, as it was typed. The full-text engine splits the phrase into words and performs a search in theFULLTEXT
index for the words. Nonword characters need not be matched exactly: Phrase searching requires only that matches contain exactly the same words as the phrase and in the same order. For example,'test phrase'
matches'test, phrase'
.If the phrase contains no words that are in the index, the result is empty. The words might not be in the index because of a combination of factors: if they do not exist in the text, are stopwords, or are shorter than the minimum length of indexed words.
The following examples demonstrate some search strings that use boolean full-text operators:
'apple banana'
Find rows that contain at least one of the two words.
'+apple +juice'
Find rows that contain both words.
'+apple macintosh'
Find rows that contain the word 'apple', but rank rows higher if they also contain 'macintosh'.
'+apple -macintosh'
Find rows that contain the word 'apple' but not 'macintosh'.
'+apple ~macintosh'
Find rows that contain the word 'apple', but if the row also contains the word 'macintosh', rate it lower than if row does not. This is 'softer' than a search for
'+apple -macintosh'
, for which the presence of 'macintosh' causes the row not to be returned at all.'+apple +(>turnover
Find rows that contain the words 'apple' and 'turnover', or 'apple' and 'strudel' (in any order), but rank 'apple turnover' higher than 'apple strudel'.
'apple*'
Find rows that contain words such as 'apple', 'apples', 'applesauce', or 'applet'. https://coolufile355.weebly.com/unity-5-3-6f1-high-end-game-development-app.html.
'some words'
Find rows that contain the exact phrase 'some words' (for example, rows that contain 'some words of wisdom' but not 'some noise words'). Note that the
'
characters that enclose the phrase are operator characters that delimit the phrase. They are not the quotation marks that enclose the search string itself.
InnoDB
full-text search is modeled on the Sphinx full-text search engine, and the algorithms used are based on BM25 and TF-IDF ranking algorithms. Word processor pro 2 1. For these reasons, relevancy rankings for InnoDB
boolean full-text search may differ from MyISAM
T post driver for front end loader. relevancy rankings.
InnoDB
uses a variation of the 'term frequency-inverse document frequency' (TF-IDF
) weighting system to rank a document's relevance for a given full-text search query. The TF-IDF
weighting is based on how frequently a word appears in a document, offset by how frequently the word appears in all documents in the collection. In other words, the more frequently a word appears in a document, and the less frequently the word appears in the document collection, the higher the document is ranked.
The term frequency (TF
) value is the number of times that a word appears in a document. The inverse document frequency (IDF
) value of a word is calculated using the following formula, where total_records
is the number of records in the collection, and matching_records
is the number of records that the search term appears in.
When a document contains a word multiple times, the IDF value is multiplied by the TF value:
Using the TF
and IDF
values, the relevancy ranking for a document is calculated using this formula:
The formula is demonstrated in the following examples.
Relevancy Ranking for a Single Word SearchThis example demonstrates the relevancy ranking calculation for a single-word search.
There are 8 records in total, with 3 that match the 'database' search term. The first record (id 6
) contains the search term 6 times and has a relevancy ranking of 1.0886961221694946
. This ranking value is calculated using a TF
value of 6 (the 'database' search term appears 6 times in record id 6
) and an IDF
value of 0.42596873216370745, which is calculated as follows (where 8 is the total number of records and 3 is the number of records that the search term appears in):
The TF
and IDF
values are then entered into the ranking formula:
Performing the calculation in the MySQL command-line client returns a ranking value of 1.088696164686938.
You may notice a slight difference in the ranking values returned by the SELECT . MATCH . AGAINST
statement and the MySQL command-line client (1.0886961221694946
versus 1.088696164686938
). The difference is due to how the casts between integers and floats/doubles are performed internally by InnoDB
(along with related precision and rounding decisions), and how they are performed elsewhere, such as in the MySQL command-line client or other types of calculators.
This example demonstrates the relevancy ranking calculation for a multiple-word full-text search based on the articles
table and data used in the previous example.
If you search on more than one word, the relevancy ranking value is a sum of the relevancy ranking value for each word, as shown in this formula:
Performing a search on two terms ('mysql tutorial') returns the following results:
In the first record (id 8
), 'mysql' appears once and 'tutorial' appears twice. There are six matching records for 'mysql' and two matching records for 'tutorial'. The MySQL command-line client returns the expected ranking value when inserting these values into the ranking formula for a multiple word search:
The slight difference in the ranking values returned by the SELECT . MATCH . AGAINST
statement and the MySQL command-line client is explained in the preceding example.
Quick Key 2 0 – Text Expansion Words
Action | Shortcut Key |
---|---|
Go to 'Tell me what you want to do' | Alt + Q |
Zoom | Alt + W, Q, Tab to value you want |
Select an entire word | Double-click anywhere in the word |
Select an entire sentence | Press Ctrl while clicking anywhere in the sentence |
Select an entire paragraph | Triple-click anywhere in the paragraph |
Move to the beginning of the current word | Ctrl + Left arrow |
Move to the beginning of the next word | Ctrl + Right arrow |
Move to the beginning of the next paragraph | Ctrl + Down arrow |
Undo | Ctrl + Z |
Redo | Ctrl + Y |
Toggle between last 4 edit positions | Alt + Ctrl + Z |
Show/Hide character formatting | / (slash) key on numeric keypad |
Create a New document | Ctrl + N |
Open a document | Ctrl + O |
Save a document | Ctrl + S |
Close a document | Ctrl + W |
Split a window | Alt + Ctrl + S |
Remove window split | Alt + Ctrl + S |
Delete one word to the left | Ctrl + Backspace |
Delete one word to the right | Ctrl + Delete |
Indent a paragraph | Ctrl + M |
Remove an indent | Ctrl + Shift + M |
Hanging indent | Ctrl + T |
Remove a hanging indent | Ctrl + Shift + T |
Center a paragraph | Ctrl + E |
Left-align a paragraph | Ctrl + L |
Right-align a paragraph | Ctrl + R |
Justify a paragraph | Ctrl + J |
Create a non-breaking space | Ctrl + Shift + Spacebar |
Create a page break | Ctrl + Enter |
Create a line break | Shift + Enter |
Remove all Formatting | Ctrl + Shift + N |
Open the page setup dialog box | Double-click the ruler margin |
Open the paragraph dialog box | Double-click an indent marker |
Open the tab dialog box | Double-click a tab marker |
Insert the current date | Alt + Shift + D |
Insert the current time | Alt + Shift + T |
Insert hyperlink | Ctrl + K |
Set single-space line spacing | Ctrl + 1 |
Set double-space line spacing | Ctrl + 2 |
Set 1.5-line spacing | Ctrl + 5 |
Open the macros dialog box | Alt + F8 |
Search a document (Navigation task pane) | Ctrl + F |
Replace items in a document | Ctrl + H |
Open Go To dialog box | Ctrl + G |
Open the thesaurus | Shift + F7 |
Open the word count dialog box | Ctrl + Shift + G |
Create a non-breaking hyphen | Ctrl + Hyphen |
Decrease font size one value | Ctrl + Shift + < |
Increase font size one value | Ctrl + Shift + > |
Decrease font size 1 point | Ctrl + [ |
Increase font size 1 point | Ctrl + ] |
Remove paragraph or character formatting | Ctrl + spacebar |
Paste Special | Ctrl + Alt + V |
Switch to Print Layout view | Ctrl + Alt + P |
Switch to Outline view | Ctrl + Alt + O |
Switch to Draft view | Ctrl + Alt + N |
Copy formatting from text | Ctrl + Shift + C |
Paste formatting only | Ctrl + Shift + V |
Change case | Shift + F3 |
Switch to Print Preview | Ctrl + F2 or Alt + Ctrl + I |
Insert a comment | Alt + Ctrl + M |
Beginning of Document | CTRL+HOME |
End of Document | CTRL+END |
Beginning of line | Home |
End of line | END |
CTRL+P | |
Bold Text | CTRL + B |
Italic Text | CTRL + I |
Underline Text | CTRL + U |
Convert the selected text to capital letters or vice versa | CTRL+SHIFT+A |
Moves to the Next Misspelling | ALT+F7 |
Turn on/off Tracking Changes | Ctrl + Shift + E |
Close Reviewing pane | Alt + Shift + C |
Cancel | Esc |
Outline view: Promote a paragraph in an outline | Alt + Shift + Left arrow |
Outline view: Demote a paragraph in an outline | Alt + Shift + Right arrow |
Outline view: Move selected outline paragraphs up | Alt + Shift + Up arrow |
Outline view: Move selected outline paragraphs down | Alt + Shift + Down arrow |
Outline view: Expand outline text below a heading | Alt + Shift + + |
Outline view: Collapse outline text below a heading | Alt + Shift + – |
Outline view: Collapse or show all text or headings | Alt + Shift +A |
Move to File tab ribbon | Alt + F, use letters to navigate |
Move to Home tab ribbon | Alt + H, use letters to navigate |
Move to Insert tab ribbon | Alt + N, use letters to navigate |
Move to Design tab ribbon | Alt + G, use letters to navigate |
Move to Layout tab ribbon | Alt + P, use letters to navigate |
Move to References tab ribbon | Alt + S, use letters to navigate |
Move to Mailings tab ribbon | Alt + M, use letters to navigate |
Move to Review tab ribbon | Alt + R, use letters to navigate |
Move to View tab ribbon | Alt + W, use letters to navigate |
On the ribbon, to move between commands | Tab or Shift-tab |
To move between groups on a ribbon | Ctrl + Right Arrow or Ctrl + Left Arrow |
Activate a selected command on the ribbon | Spacebar or Enter key |
Open a gallery on the ribbon | Spacebar or Enter key |
Finish with a control on the ribbon and move back to the document | Enter key |
Expand or collapse the ribbon | Ctrl + F1 |
Help | F1 |
Move selected text | Select text, press F2, click in paste location, press Enter |
Copy selected text | Select text, press Shift + F2, click in paste location, press Enter |
Insert Building Block | F3 |
Repeat | F4 |
Go To | F5 |
Skip to next frame/pane | F6 |
Spell check | F7 |
Activate extended selection mode | F8 |
Refresh | F9 |
Display ribbon key tip letters | F10 |
Go to next field in document | F11 |
Save as | F12 |
Action | Shortcut Key |
---|---|
Select an entire word | Double-click anywhere in the word |
Select an entire sentence | Press Ctrl while clicking anywhere in the sentence |
Select an entire paragraph | Triple-click anywhere in the paragraph |
Move to the beginning of the current word | Ctrl + Left arrow |
Move to the beginning of the next word | Ctrl + Right arrow |
Move to the beginning of the next paragraph | Ctrl + Down arrow |
Undo | Ctrl + Z |
Redo | Ctrl + Y |
Toggle between last 4 edit positions | Alt + Ctrl + Z |
Show/Hide character formatting | / (slash) key on numeric keypad |
Create a New document | Ctrl + N |
Open a document | Ctrl + O |
Save a document | Ctrl + S |
Save as | F12 |
Close a document | Ctrl + W |
Split a window | Alt + Ctrl + S |
Remove window split | Alt + Ctrl + S |
Delete one word to the left | Ctrl + Backspace |
Delete one word to the right | Ctrl + Delete |
Indent a paragraph | Ctrl + M |
Remove an indent | Ctrl + Shift + M |
Hanging indent | Ctrl + T |
Remove a hanging indent | Ctrl + Shift + T |
Center a paragraph | Ctrl + E |
Left-align a paragraph | Ctrl + L |
Right-align a paragraph | Ctrl + R |
Justify a paragraph | Ctrl + J |
Create a non-breaking space | Ctrl + Shift + Spacebar |
Create a page break | Ctrl + Enter |
Create a line break | Shift + Enter |
Remove all Formatting | Ctrl + Shift + N |
Open the page setup dialog box | Double-click the ruler margin |
Open the paragraph dialog box | Double-click an indent marker |
Open the tab dialog box | Double-click a tab marker |
Insert the current date | Alt + Shift + D |
Insert the current time | Alt + Shift + T |
Insert hyperlink | Ctrl + K |
Set single-space line spacing | Ctrl + 1 |
Set double-space line spacing | Ctrl + 2 |
Set 1.5-line spacing | Ctrl + 5 |
Open the macros dialog box | Alt + F8 |
Search a document (Navigation task pane) | Ctrl + F |
Replace items in a document | Ctrl + H |
Open Go To dialog box | Ctrl + G |
Open the thesaurus | Shift + F7 |
Open the word count dialog box | Ctrl + Shift + G |
Create a non-breaking hyphen | Ctrl + Hyphen |
Decrease font size one value | Ctrl + Shift + < |
Increase font size one value | Ctrl + Shift + > |
Decrease font size 1 point | Ctrl + [ |
Increase font size 1 point | Ctrl + ] |
Remove paragraph or character formatting | Ctrl + spacebar |
Paste Special | Ctrl + Alt + V |
Switch to Print Layout view | Ctrl + Alt + P |
Switch to Outline view | Ctrl + Alt + O |
Switch to Draft view | Ctrl + Alt + N |
Copy formatting from text | Ctrl + Shift + C |
Paste formatting only | Ctrl + Shift + V |
Change case | Shift + F3 |
Switch to Print Preview | Ctrl + F2 or Alt + Ctrl + I |
Insert a comment | Alt + Ctrl + M |
Beginning of Document | CTRL+HOME |
End of Document | CTRL+END |
Beginning of line | Home |
End of line | END |
CTRL+P | |
Bold Text | CTRL + B |
Italic Text | CTRL + I |
Underline Text | CTRL + U |
Convert the selected text to capital letters or vice versa | CTRL+SHIFT+A |
Moves to the Next Misspelling | ALT+F7 |
Turn on/off Tracking Changes | Ctrl + Shift + E |
Close Reviewing pane | Alt + Shift + C |
Refresh | F9 |
Outline view: Promote a paragraph in an outline | Alt + Shift + Left arrow |
Outline view: Demote a paragraph in an outline | Alt + Shift + Right arrow |
Outline view: Move selected outline paragraphs up | Alt + Shift + Up arrow |
Outline view: Move selected outline paragraphs down | Alt + Shift + Down arrow |
Outline view: Expand outline text below a heading | Alt + Shift + + |
Outline view: Collapse outline text below a heading | Alt + Shift + – |
Outline view: Collapse or show all text or headings | Alt + Shift +A |
Action | Shortcut Key |
---|---|
Select an entire word | Double-click anywhere in the word |
Select an entire sentence | Press Ctrl while clicking anywhere in the sentence |
Select an entire paragraph | Triple-click anywhere in the paragraph |
Move to the beginning of the current word | Ctrl + Left arrow |
Move to the beginning of the next word | Ctrl + Right arrow |
Move to the beginning of the next paragraph | Ctrl + Down arrow |
Indent a paragraph | Ctrl + M |
Remove an indent | Ctrl + Shift + M |
Hanging indent | Ctrl + T |
Remove a hanging indent | Ctrl + Shift + T |
Center a paragraph | Ctrl + E |
Left-align a paragraph | Ctrl + L |
Right-align a paragraph | Ctrl + R |
Justify a paragraph | Ctrl + J |
Create a non-breaking space | Ctrl + Shift + Spacebar |
Create a page break | Ctrl + Enter |
Create a line break | Shift + Enter |
Remove all Formatting | Ctrl + Shift + N |
Open the page setup dialog box | Double-click the ruler margin |
Open the paragraph dialog box | Double-click an indent marker |
Open the tab dialog box | Double-click a tab marker |
Insert the current date | Alt + Shift + D |
Insert the current time | Alt + Shift + T |
Set single-space line spacing | Ctrl + 1 |
Set double-space line spacing | Ctrl + 2 |
Set 1.5-line spacing | Ctrl + 5 |
Open the macros dialog box | Alt + F8 |
Open the thesaurus | Shift + F7 |
Open the word count dialog box | Ctrl + Shift + G |
Create a non-breaking hyphen | Ctrl + Hyphen |
Decrease font size one value | Ctrl + Shift + < |
Increase font size one value | Ctrl + Shift + > |
Decrease font size 1 point | Ctrl + [ |
Increase font size 1 point | Ctrl + ] |
Remove paragraph or character formatting | Ctrl + spacebar |
Paste Special | Ctrl + Alt + V |
Switch to Page Layout view | Ctrl + Alt + P |
Switch to Outline view | Ctrl + Alt + O |
Copy formatting from text | Ctrl + Shift + C |
Paste formatting only | Ctrl + Shift + V |
Change case | Shift + F3 |
Switch in or out of Print Preview | Ctrl + F2 |
Insert a comment | Alt + Ctrl + M |
Beginning of Document | CTRL+HOME |
End of Document | CTRL+END |
Beginning of line | Home |
End of line | END |
CTRL+P | |
Bold Text | CTRL + B |
Italic Text | CTRL + I |
Underline Text | CTRL + U |
Convert the selected text to capital letters or vice versa | CTRL+SHIFT+A |
Moves to the Next Misspelling | ALT+F7 |
Action | Shortcut Key |
---|---|
Select an entire word | Double-click anywhere in the word |
Select an entire sentence | Press Ctrl while clicking anywhere in the sentence |
Select an entire paragraph | Triple-click anywhere in the paragraph |
Move to the beginning of the current word | Ctrl + Left arrow |
Move to the beginning of the next word | Ctrl + Right arrow |
Move to the beginning of the next paragraph | Ctrl + Down arrow |
Indent a paragraph | Ctrl + M |
Remove an indent | Ctrl + Shift + M |
Hanging indent | Ctrl + T |
Remove a hanging indent | Ctrl + Shift + T |
Center a paragraph | Ctrl + E |
Left-align a paragraph | Ctrl + L |
Right-align a paragraph | Ctrl + R |
Justify a paragraph | Ctrl + J |
Create a non-breaking space | Ctrl + Shift + Spacebar |
Create a page break | Ctrl + Enter |
Create a line break | Shift + Enter |
Remove all Formatting | Ctrl + Shift + N |
Open the page setup dialog box | Double-click the ruler margin |
Open the paragraph dialog box | Double-click an indent marker |
Open the tab dialog box | Double-click a tab marker |
Insert the current date | Alt + Shift + D |
Insert the current time | Alt + Shift + T |
Set single-space line spacing | Ctrl + 1 |
Set double-space line spacing | Ctrl + 2 |
Set 1.5-line spacing | Ctrl + 5 |
Open the macros dialog box | Alt + F8 |
Open the thesaurus | Shift + F7 |
Open the word count dialog box | Ctrl + Shift + G |
Create a non-breaking hyphen | Ctrl + Hyphen |
Decrease font size one value | Ctrl + Shift + < |
Increase font size one value | Ctrl + Shift + > |
Decrease font size 1 point | Ctrl + [ |
Increase font size 1 point | Ctrl + ] |
Remove paragraph or character formatting | Ctrl + spacebar |
Paste Special | Ctrl + Alt + V |
Switch to Page Layout view | Ctrl + Alt + P |
Switch to Outline view | Ctrl + Alt + O |
Copy formatting from text | Ctrl + Shift + C |
Paste formatting only | Ctrl + Shift + V |
Change case | Shift + F3 |
Switch in or out of Print Preview | Ctrl + F2 |
Insert a comment | Alt + Ctrl + M |
Action | Shortcut Key |
---|---|
Select an entire word | Double-click anywhere in the word |
Select an entire sentence | Press Ctrl while clicking anywhere in the sentence |
Select an entire paragraph | Triple-click anywhere in the paragraph |
Move to the beginning of the current word | Ctrl + Left arrow |
Move to the beginning of the next word | Ctrl + Right arrow |
Move to the beginning of the next paragraph | Ctrl + Down arrow |
Indent a paragraph | Ctrl + M |
Remove an indent | Ctrl + Shift + M |
Hanging indent | Ctrl + T |
Remove a hanging indent | Ctrl + Shift + T |
Center a parapgraph | Ctrl + E |
Left-align a paragraph | Ctrl + L |
Right-align a paragraph | Ctrl + R |
Justify a paragraph | Ctrl + J |
Create a non-breaking space | Ctrl + Shift + Spacebar |
Create a page break | Ctrl + Enter |
Create a line break | Shift + Enter |
Remove all Formating | Ctrl + Shift + N |
Open the page setup dialog box | Double-click the ruler margin |
Open the paragraph dialog box | Double-click an indent marker |
Open the tab dialog box | Double-click a tab marker |
Insert the current date | Alt + Shift + D |
Insert the current time | Alt + Shift + T |
Set single-space line spacing | Ctrl + 1 |
Set double-space line spacing | Ctrl + 2 |
Set 1.5-line spacing | Ctrl + 5 |
Open the macros dialog box | Alt + F8 |
Open the thesaurus | Shift + F7 |
Open the word count dialog box | Ctrl + Shift + G |
Recalculate the workd count on the word count toolbar | Alt + C |