Math I: Super/Subscripts and Common Commands

Total Page:16

File Type:pdf, Size:1020Kb

Math I: Super/Subscripts and Common Commands LATEX for Absolute Beginners Math Typesetting I Math I: Super/Subscripts and Common Commands Introduction This tutorial will show you how to do some basic typesetting of math symbols, equations and matrices. Although LATEX in its basic form (i.e. when you start to write it in WinEdt) can do almost everything in math that the normal user will want to do, we can make it more user-friendly by telling it to load certain packages into its operating memory. ² open WinEdt and write the following: \documentclass{article} \usepackage{amsmath, amssymb} \begin{document} \end{document} Note that this is just like last time, except that we have added \usepackage{amsmath, amssymb} in our preamble. These packages gives LATEX access to some more symbols and some more structures that we will ¯nd useful and will make our lives a bit easier today. You don't have to load them every-time you want to write math, but some of our commands and symbols today (or in the second math typesetting session)|speci¯cally those connected to matrices|will work only if you do. Note that amsmath and amssymb are di®erent packages that need to be separated by a comma. Reminder: In Line and Display ² when you want some math in the same line as your text, you use the dollar signs. So, $4x-6y=67$ will produce the expression in the text, as 4x ¡ 6y = 67. Here is another sentence to convince you it was genuinely in text. ² when you want some math displayed on its own below your text, you use \[ \]. So, \[x+37=56\] gives x + 37 = 56: ² everything I say below about writing math in dollar signs will apply to the math display mode, \[ \], too. Sometimes it will look slightly di®erent, 1 LATEX for Absolute Beginners Math Typesetting I because LATEX adjusts heights of characters and their spacing to look more Pn reasonable given it is in text. For example, i=1 f(x) looks di®erent to Xn f(x); i=1 but they were produced using the same commands (but in-line and dis- played, respectively) ² note that numbers like 1, 2, 67, 3459 are always in math mode. There seems to be a UK/US di®erence when writing large numbers with commas. Americans often don't leave a space between the comma and the next number, but many other nationalities do. So, Brits write $100,000$ to write 100; 000, whereas Americans write 100,000 (without the $ $ signs) to write 100,000. ² note that letters in math mode look very di®erent compared to those in text. So $x$ gives x, while in text, we would have x ² Be careful with punctuation in math mode. Suppose you wanted to write @y 1 = ; @x jxj then you need to be sure that you put the comma (or semi-colon, or whatever) in the right place. This displayed formula was produced with the following code: \[\frac{\partial y}{\partial x}=\frac{1}{|x|},\] Note that the comma that comes at the end of the formula occurs before the command \]. If we put the comma after the \] command it would appear on the next line (incorrectly). That said, when we write in line math |recall with dollar signs| make sure you put the comma after the closing dollar sign. Greek Letters In math mode, you sometimes need Greek letters, like γ, ², Á and so on. ² generally, the command structure is $\letter-name$. So, to get a theta you type $\theta$. That gives you θ. ² note that I used a lower-case t at the start of theta to get a lower case theta in math mode. To get an upper case one, you use a capital T. So, $\Theta$ gives £ 2 LATEX for Absolute Beginners Math Typesetting I ² this upper/lower case distinction is not the case for all Greek letters: for example, there is only one type of alpha and beta LATEX will produce (and they both take the lower case): $\alpha$ gives you ® and $\beta$ gives you ¯, whilst $\Beta$ will give you an `unde¯ned command' message ² if you can't remember all the names of the letters, WinEdt can help youP out. Look at the top of your tool bar, and you will see a sum button (this is actually a capital epsilon, but is produced using $\sum$. To the left of it is a pictureP of a video camera and to the right is an umlauted E. Pressing the button gives you all the math and Greek characters you will need (and a lot of other useful symbols beside). Pick one, and press its button. Notice that it just writes the command for that symbol: you need to put it in dollar signs otherwise LATEX won't understand what you want to do. ² when you write a greek letter command (or any other math command), you must leave a space between the end of the command and the next nonoperation|like +; ¡; ¥; £ |character. So, it won't know what to do with $\alpha5$, but if you give it $\alpha 5$ it will write ®5 (note how it deletes the space you left between the characters). Subscripts and Superscripts ² to subscript an expression, like Pi you use an underscore in the following way: $P_i$. If there an expression of several symbols that are to be a subscript, you need to use braces. If you don't use an opening brace after the underscore, only the ¯rst character will be subscripted. So, $R_i\beta$ gives you Ri¯, but $R_{i\beta}$ gives you Ri¯. ² to superscript an expression, like F x you use the hat symbol in the fol- lowing way: $F^x$. If there an expression of several symbols that are to be a superscript, you need to use braces. If you don't use an opening brace after the hat, only the ¯rst character will be superscripted. So, $G^2\alpha$ gives you G2®, but $G^{2\alpha}$ gives you G2®. ² sometimes symbols have a subscript and a superscript. Here is a John m Duggan favorite: xi which was produced by writing $x_i^m$: you could also use $x^m_i$ since LATEX understands either order of superscripts and subscripts. What was said about braces (above) still applies. ² subscripts and superscripts can themselves have subscripts and super- scripts. To get eki , you use $e^{k_i}$. Note that the i used for the subscript of the k is smaller than the e and the k. ² for things like integrations and sums, we use exactly the same principles. To show integration between x and 1 for example, we type $\int^\infty_x$ 3 LATEX for Absolute Beginners Math Typesetting I R 1 which yields x , or Z 1 x in display mode. Summing between i = 1 and n over xi is written as $\sum^{n}_{1} x_i$ Pn which yields i=1 xi, or Xn xi i=1 in display mode. Inequalites, equalities, set notation etc. A LTEX hasP lots of symbols available for use. You can ¯nd many of these if you press the key on the tool-bar as we discussed above. We will not list all the possible symbols (you can ¯nd them in any LATEX guide book), but some of the common ones are in the table below (once again, all of this must be in the math mode). Some of the are commands are intuitive, some aren't. You (may) need to use the packages we speci¯ed above to have access to of all of them. Notice that some of them allow you to write subscripts/superscripts and limits in the way we discussed before. For example, you could write \[\bigcap^\infty_{i=1}(i-1,i)=\emptyset\] if the mood so took you. This gives: \1 (i ¡ 1; i) = ;: i=1 (If that is correct, credit to me. If it is wrong, blame Tu¹gbaGÄuven»c.She never did give us solution sets. ) 4 LATEX for Absolute Beginners Math Typesetting I output input output input = = 6= \ne < < > > · \leq ¸ \geq 2 \in 3 \ni 2= \notin 8 \forall 9 \exists @ \nexists ; \emptyset R \mathbb{R} 0 \prime ¥ \blacksquare @ \partial ¥ \div S[ \cup T\ \cap \bigcup \bigcap ½ \subset ⊃ \supset ⊆ \subseteq ¶ \supseteq , \Leftrightarrow () \Longleftrightarrow ( \Leftarrow ) \Rightarrow £ \times ¼ \approx xjy x|y Q) \therefore 1 \infty \prod _ \vee ^ \land Words: lim, det, sin... In math you often use small words like cos to mean cosine, max to mean maxi- mum and so on. If you just write the words in math mode, it won't look correct. For example, if we write $sin\theta$ we get sinθ, which is not what we want. If we write $\sin\theta$, though, it reads as: sin θ. The commands for these operators are generally intuitive, and we give a brief list of some common ones here. output input output input det \det inf \inf lim \lim lim inf \liminf lim sup \limsup sup \sup max \max min \min Pr \Pr arg \arg cos \cos exp \exp sin \sin cos \cos tan \tan deg \deg lim \varinjlim lim \varprojlim ¡! á 5 LATEX for Absolute Beginners Math Typesetting I Brackets Examples include parentheses like (a; b) which was produced using (a,b) or curly braces like fa; bg produced using \{a,b\}. ² if you type the commands above, they give you only a certain (regulated) size of delimiter. But that doesn't look correct in some circumstances. For example: Xn ( ); i=1 produced by \[(\sum_{i=1}^n)\] looks strange. You can correct for this by using variable size delimiters which have the general format: \leftopen delimiter math bit \rightclose delimiter.
Recommended publications
  • The Origins of the Underline As Visual Representation of the Hyperlink on the Web: a Case Study in Skeuomorphism
    The Origins of the Underline as Visual Representation of the Hyperlink on the Web: A Case Study in Skeuomorphism The Harvard community has made this article openly available. Please share how this access benefits you. Your story matters Citation Romano, John J. 2016. The Origins of the Underline as Visual Representation of the Hyperlink on the Web: A Case Study in Skeuomorphism. Master's thesis, Harvard Extension School. Citable link http://nrs.harvard.edu/urn-3:HUL.InstRepos:33797379 Terms of Use This article was downloaded from Harvard University’s DASH repository, and is made available under the terms and conditions applicable to Other Posted Material, as set forth at http:// nrs.harvard.edu/urn-3:HUL.InstRepos:dash.current.terms-of- use#LAA The Origins of the Underline as Visual Representation of the Hyperlink on the Web: A Case Study in Skeuomorphism John J Romano A Thesis in the Field of Visual Arts for the Degree of Master of Liberal Arts in Extension Studies Harvard University November 2016 Abstract This thesis investigates the process by which the underline came to be used as the default signifier of hyperlinks on the World Wide Web. Created in 1990 by Tim Berners- Lee, the web quickly became the most used hypertext system in the world, and most browsers default to indicating hyperlinks with an underline. To answer the question of why the underline was chosen over competing demarcation techniques, the thesis applies the methods of history of technology and sociology of technology. Before the invention of the web, the underline–also known as the vinculum–was used in many contexts in writing systems; collecting entities together to form a whole and ascribing additional meaning to the content.
    [Show full text]
  • Unicode Nearly Plain-Text Encoding of Mathematics Murray Sargent III Office Authoring Services, Microsoft Corporation 4-Apr-06
    Unicode Nearly Plain Text Encoding of Mathematics Unicode Nearly Plain-Text Encoding of Mathematics Murray Sargent III Office Authoring Services, Microsoft Corporation 4-Apr-06 1. Introduction ............................................................................................................ 2 2. Encoding Simple Math Expressions ...................................................................... 3 2.1 Fractions .......................................................................................................... 4 2.2 Subscripts and Superscripts........................................................................... 6 2.3 Use of the Blank (Space) Character ............................................................... 7 3. Encoding Other Math Expressions ........................................................................ 8 3.1 Delimiters ........................................................................................................ 8 3.2 Literal Operators ........................................................................................... 10 3.3 Prescripts and Above/Below Scripts........................................................... 11 3.4 n-ary Operators ............................................................................................. 11 3.5 Mathematical Functions ............................................................................... 12 3.6 Square Roots and Radicals ........................................................................... 13 3.7 Enclosures.....................................................................................................
    [Show full text]
  • Vol. 123 Style Sheet
    THE YALE LAW JOURNAL VOLUME 123 STYLE SHEET The Yale Law Journal follows The Bluebook: A Uniform System of Citation (19th ed. 2010) for citation form and the Chicago Manual of Style (16th ed. 2010) for stylistic matters not addressed by The Bluebook. For the rare situations in which neither of these works covers a particular stylistic matter, we refer to the Government Printing Office (GPO) Style Manual (30th ed. 2008). The Journal’s official reference dictionary is Merriam-Webster’s Collegiate Dictionary, Eleventh Edition. The text of the dictionary is available at www.m-w.com. This Style Sheet codifies Journal-specific guidelines that take precedence over these sources. Rules 1-21 clarify and supplement the citation rules set out in The Bluebook. Rule 22 focuses on recurring matters of style. Rule 1 SR 1.1 String Citations in Textual Sentences 1.1.1 (a)—When parts of a string citation are grammatically integrated into a textual sentence in a footnote (as opposed to being citation clauses or citation sentences grammatically separate from the textual sentence): ● Use semicolons to separate the citations from one another; ● Use an “and” to separate the penultimate and last citations, even where there are only two citations; ● Use textual explanations instead of parenthetical explanations; and ● Do not italicize the signals or the “and.” For example: For further discussion of this issue, see, for example, State v. Gounagias, 153 P. 9, 15 (Wash. 1915), which describes provocation; State v. Stonehouse, 555 P. 772, 779 (Wash. 1907), which lists excuses; and WENDY BROWN & JOHN BLACK, STATES OF INJURY: POWER AND FREEDOM 34 (1995), which examines harm.
    [Show full text]
  • Declaration of Independence Font Style
    Declaration Of Independence Font Style Heliocentric and implanted Jeremiah prize her duteousness cannonades while Tabor numerate some Davy tonally. How integrant is Juergen when natatory and denticulate Xenos balk some inmate? Outsize and unmeant Shimon spottings fundamentally and synthesise his loungers ghastfully and aguishly. Headings should be closer to the text they introduce than the text that preceeds them. Son foundry was divided among his heirs. HTML hyperlinks are automatically converted. Need help finding the right font for your brand? Prince currently defaults to the RGB color space. Characters are in this declaration independence calligraphy font was the lanston caslon. Mulberry comes as a group of six fonts that cover a whole array of different styles and ligatures. By signing up for this email, you are agreeing to news, offers, and information from Encyclopaedia Britannica. Now check your email to confirm your subscription. Research on font trustworthiness: Baskerville vs. Files included in attentions to hear from the depository of? Writers used both cursive styles: location, contents and context of the text determined which style to use. In general, although some of the shapes of individual characters are different, the biggest variation is in line spacing and character size. Some fonts give off assertiveness. The Declaration of Independence in its popular calligraphic form, with signatures. Should this be of importance, use the second approach instead. There are several bibles that are set with Lexicon as well. Garamond will undoubtedly fit the bill. However, it will be tricky to support nested styles this way. Who are your people, and how do you want to talk to them? QUILTSportraits of famous African Americans as a way to document and commemorate their achievements.
    [Show full text]
  • Basic Facts About Trademarks United States Patent and Trademark O Ce
    Protecting Your Trademark ENHANCING YOUR RIGHTS THROUGH FEDERAL REGISTRATION Basic Facts About Trademarks United States Patent and Trademark O ce Published on February 2020 Our website resources For general information and links to Frequently trademark Asked Questions, processing timelines, the Trademark NEW [2] basics Manual of Examining Procedure (TMEP) , and FILERS the Acceptable Identification of Goods and Services Manual (ID Manual)[3]. Protecting Your Trademark Trademark Information Network (TMIN) Videos[4] Enhancing Your Rights Through Federal Registration Tools TESS Search pending and registered marks using the Trademark Electronic Search System (TESS)[5]. File applications and other documents online using the TEAS Trademark Electronic Application System (TEAS)[6]. Check the status of an application and view and TSDR download application and registration records using Trademark Status and Document Retrieval (TSDR)[7]. Transfer (assign) ownership of a mark to another ASSIGNMENTS entity or change the owner name and search the Assignments database[8]. Visit the Trademark Trial and Appeal Board (TTAB)[9] TTAB online. United States Patent and Trademark Office An Agency of the United States Department of Commerce UNITED STATES PATENT AND TRADEMARK OFFICE BASIC FACTS ABOUT TRADEMARKS CONTENTS MEET THE USPTO ������������������������������������������������������������������������������������������������������������������������������������������������������������������ 1 TRADEMARK, COPYRIGHT, OR PATENT ��������������������������������������������������������������������������������������������������������������������������
    [Show full text]
  • 19. Punctuation
    punctuation 19. Punctuation Punctuation is important because it helps achieve clarity and readability . ’ Apostrophes Use • before the “s” in singular possessives: The prime minister’s suggestion was considered. • after the “s” in plural possessives: The ministers’ decision was unanimous. Do not use • in plural dates and abbreviations: 1930s, NGOs • in the possessive pronoun “its”: The government characterised its budget as prudent. See also: Capitalisation, pp. 66-68. : Colons Use • to lead into a list, an explanation or elaboration, an indented quotation • to mark the break between a title and subtitle: Social Sciences for a Digital World: Building Infrastructure for the Future (book) Trends in transport to 2050: A macroscopic view (chapter) Do not use • more than once in a given sentence • a space before colons and semicolons. 90 oecd style guide - third edition @oecd 2015 punctuation , Commas Use • to separate items in most lists (except as indicated under semicolons) • to set off a non-restrictive relative clause or other element that is not part of the main sentence: Mr Smith, the first chairperson of the committee, recommended a fully independent watchdog. • commas in pairs; be sure not to forget the second one • before a conjunction introducing an independent clause: It is one thing to know a gene’s chemical structure, but it is quite another to understand its actual function. • between adjectives if each modifies the noun alone and if you could insert the word “and”: The committee recommended swift, extensive changes. Do not use • after “i.e.” or “e.g.” • before parentheses • preceding and following en-dashes • before “and”, at the end of a sequence of items, unless one of the items includes another “and”: The doctor suggested an aspirin, half a grapefruit and a cup of broth.
    [Show full text]
  • 236 Tugboat, Volume 9 (1988), No. 3 Some Typesetting Conventions
    236 TUGboat, Volume 9 (1988), No. 3 Some Typesetting Conventions suitability to contents Graeme McKinstry, Not all these factors are equal in their effect on readability University of Otago, nor are all the factors within your control but it is possible New Zealand. to use some of the above factors to make your documents more readable. One of the major advantages of T@ is that it makes it possible for authors to typeset their own work. However, Typeface and size of type this new found power has not been automatically asso- There are two broad classes of fonts: serif ("serifs" are ciated with a knowledge of typesetting and typographic the finishing strokes at the end of letters) and sans-serif design and so some very unreadable documents have en- (without serifs, e.g., fonts such as Helvetica). Of the sued. This is further exacerbated by authors believing two, serif fonts (such as Computer Modem, and Times- they do know something about typesetting ("Doesn't ev- Roman) are easier to read for large quantities of text, eryone?") and ignoring all attempts to lead them in the "because it has been shown that we read our own lan- right direction, e.g., LV@. guage not letter by letter but by recognizing the shapes Although TEX users are less prone to fall into this of words . " [31. The serifs tend to help in this "shape trap as compared to your average WYSIWYG user there are recognition". For example try to decipher the following still some fundamental typographic lessons to be learned. two lines (they don't form words): These principles are so fundamental that even a com- puting consultant, such as myself, is able to learn, and possibly even more importantly, understand why we have them.
    [Show full text]
  • Lesson 3 8,UNBELIEVABLE60 HE SAYS4
    L 3 Qotatio M, A, Pnt, S B, O, L L (U), Ssh Now learn the following additional punctuation signs: apostrophe ’ [or] ' ' (dot 3) opening one-cell (non-specific) quotation mark 8 (dots 236) closing one-cell (non-specific) quotation mark 0 (dots 356) opening single quotation mark ‘ [or] ' ,8 (dots 6, 236) closing single quotation mark ’ [or] ' ,0 (dots 6, 356) opening parenthesis ( "< (dots 5, 126) closing parenthesis ) "> (dots 5, 345) opening square bracket [ .< (dots 46, 126) (dots 46, 345) closing square bracket ] .> 3.1 S D Qotatio M [UEB §7.6] In braille, there are several different symbols to represent the various types of print quotation marks (additional information about quotation marks will be studied in Lesson 16). In most cases, the opening and clo one- (-ecific) tatio marks should be used to represent the primary or outer quotation marks in the text, and the two- cell opening and closing single quotation marks should represent the inner quotation marks. Examples: "Unbelievable!" he says. 8,BEIEABE60 HE A4 "I only wrote 'come home soon'," he claims. 3 - 1 8,I E ,8CE HE ,010 HE CAI4 3.2 Arop Follow print for the use of apostrophes. Example: "Tell 'em Sam's favorite music is new—1990's too old." 8,E 'E ,A' FAIE IC I E,-#AIIJ' D40 3.2 A api lette. A capital indicator is always placed immediately before the letter to which it applies. Therefore, if an apostrophe comes before a capital letter in print, the apostrophe is brailled before the capital indicator. Example: "'Twas a brilliant plan," says Dan O'Reilly.
    [Show full text]
  • List of Approved Special Characters
    List of Approved Special Characters The following list represents the Graduate Division's approved character list for display of dissertation titles in the Hooding Booklet. Please note these characters will not display when your dissertation is published on ProQuest's site. To insert a special character, simply hold the ALT key on your keyboard and enter in the corresponding code. This is only for entering in a special character for your title or your name. The abstract section has different requirements. See abstract for more details. Special Character Alt+ Description 0032 Space ! 0033 Exclamation mark '" 0034 Double quotes (or speech marks) # 0035 Number $ 0036 Dollar % 0037 Procenttecken & 0038 Ampersand '' 0039 Single quote ( 0040 Open parenthesis (or open bracket) ) 0041 Close parenthesis (or close bracket) * 0042 Asterisk + 0043 Plus , 0044 Comma ‐ 0045 Hyphen . 0046 Period, dot or full stop / 0047 Slash or divide 0 0048 Zero 1 0049 One 2 0050 Two 3 0051 Three 4 0052 Four 5 0053 Five 6 0054 Six 7 0055 Seven 8 0056 Eight 9 0057 Nine : 0058 Colon ; 0059 Semicolon < 0060 Less than (or open angled bracket) = 0061 Equals > 0062 Greater than (or close angled bracket) ? 0063 Question mark @ 0064 At symbol A 0065 Uppercase A B 0066 Uppercase B C 0067 Uppercase C D 0068 Uppercase D E 0069 Uppercase E List of Approved Special Characters F 0070 Uppercase F G 0071 Uppercase G H 0072 Uppercase H I 0073 Uppercase I J 0074 Uppercase J K 0075 Uppercase K L 0076 Uppercase L M 0077 Uppercase M N 0078 Uppercase N O 0079 Uppercase O P 0080 Uppercase
    [Show full text]
  • Quotation Marks Are Used to Enclose and Set Off Text That Is Directly Quoted, Titles, Technical Terms, and Words Or Phrases That Carry a Subtext
    PUNCTUATION QUOTATION MARKS ( “…” or ‘…’ ) Quotation marks are used to enclose and set off text that is directly quoted, titles, technical terms, and words or phrases that carry a subtext. USES Use quotation marks to enclose a short direct quote (a quote of no more than 40 words). a title of short works, such as titles of articles, essays, book chapters, songs, films, and poems. a word or short phrase that is meant to express irony or sarcasm. slang that is out of character with the rest of the writing or to enclose a deliberate misspelling. Do not use quotation marks to enclose a colloquial expression. a long direct quote (a quote more than 40 words). o Set apart a long quote by indenting five spaces from both margins and introducing the quote with a colon. an indirect quotation, which is usually introduced by that. e.g., The meteorologist said that it will rain tomorrow. < Correct (indirect quote) The meteorologist said that, “it will rain tomorrow.” < Incorrect (indirect quote) The meteorologist said, “It will rain tomorrow.” < Correct (direct quote) PLACEMENT OF PUNCTUATION WHEN USING QUOTATION MARKS Punctuation placed inside quotation marks Periods, commas, question marks, and exclamation marks are enclosed within quotation marks. o Exception: If the question or exclamation mark punctuates the sentence as a whole, the question mark or exclamation mark falls outside the quotation marks. e.g., Have you heard the proverb, “Do not count your chickens until they hatch”? Punctuation placed outside quotation marks Colons and semi-colons appear outside quotation marks. Parentheses with in-text citation fall outside quotation marks.
    [Show full text]
  • Development of Computer Typesetting
    Early steps in computer typesetting in the 1960s Jonathan Seybold, September 2018 1961–1964 Michael Barnett’s “Experiments in Typesetting” In 1961, Michael Barnett, an associate professor at MIT wrote a computer program that could produce punched paper tape output to drive a phototypesetting machine. He used this to produce the “Tail” from Alice in Wonderland, and a phototypeset press release. These were the first documents that were phototypeset from output generated by a computer. In 1962 Barnett received a research grant to continue this experiments. This lead to development of the PC6 system, which was used to produce a variety of reports, pamphlets and other publications in late 1963 and early 1964.1 Hardware: IBM 709/90 computer and a Photon 560 phototypesetter. Software: Written in Fortran, with a few routines written in FAP (Fortran Assembler). Written for a specific Photon 560 set-up. Typefonts were identified by disk position and row number. The TYPRINT program for text output composed text to fit a predefined page width and depth. Lines were broken after the last complete word that would fit on that line. There was no attempt at hyphenation. Pages were arbitrarily broken after the last line that would fit on the page. Special commands could be embedded in the text to tie text elements together. When it encountered these, the program would simply make the page as long as necessary to accommodate all of the text in the “no break” area. Given the scientific academic setting, the most notable feature of TYPRINT was a program written by J.M.
    [Show full text]
  • Top Ten Tips for Effective Punctuation in Legal Writing
    TIPS FOR EFFECTIVE PUNCTUATION IN LEGAL WRITING* © 2005 The Writing Center at GULC. All Rights Reserved. Punctuation can be either your friend or your enemy. A typical reader will seldom notice good punctuation (though some readers do appreciate truly excellent punctuation). However, problematic punctuation will stand out to your reader and ultimately damage your credibility as a writer. The tips below are intended to help you reap the benefits of sophisticated punctuation while avoiding common pitfalls. But remember, if a sentence presents a particularly thorny punctuation problem, you may want to consider rephrasing for greater clarity. This handout addresses the following topics: THE COMMA (,)........................................................................................................................... 2 PUNCTUATING QUOTATIONS ................................................................................................. 4 THE ELLIPSIS (. .) ..................................................................................................................... 4 THE APOSTROPHE (’) ................................................................................................................ 7 THE HYPHEN (-).......................................................................................................................... 8 THE DASH (—) .......................................................................................................................... 10 THE SEMICOLON (;) ................................................................................................................
    [Show full text]