Apstrophes and quotation marks

I have a text containing dialogue with a large number of word-initial apostrophes to indicate dropped h's (e.g. I 'ope, 'e 'as, etc). Because it's dialogue, there are also a large number of quotation marks and I want to use typographer's quotes. Is there a way of doing this without InDesign (CS5) automatically converting the apostrophes to opening single quotes.
Thanks for any advice,
Piers

Thanks Jongware and Peter. Used the Grep solution to do the bulk of it and then went through the text and manually changed back any opening quotes that had been incorrectly converted to apostrophes. The text was imported from a Word document. I feel the need for some kind of 'hard' apostrophe that never gets changed by smart quotes!
Thanks again for your help,
Piers

Similar Messages

  • How to execute "netsh wlan connect SSID", but SSID has space and quotation marks?

    Dear all:
    I have a wifi roruter with SSID test "3"
    But when I execute following command netsh wlan connect "test \"3\""
    the netsh reply: 未將設定檔 "test " 指派給指定的介面。
    Sorry my windows7 is chinese version, but as you can see, netsh detect my SSID as
    test, not test "3".
    Does everybody know how to use netsh to connect to a SSID, and these SSID has space and quotation mark both?
    Regards,
    Joseph

    Hi Joseph,
    Firstly, please modify your SSID name to make sure it do not contain spaces or special characters. SSID name is the router setting. please go there to change SSID name.
    In addition, If only one SSID is specified in the profile, then the specified SSID is used to connect, and the ssid parameter is not required. If the profile specifies multiple SSIDs, the ssid parameter is required.
    Therefore, I would like to suggest you run command as this syntax:
    netsh wlan conncet ssid=Your SSID of the unsecured wireless network name=Your current profile name
    To do this, please refer to the section “connect” in the following document:
    Netsh Commands for Wireless Local Area Network (WLAN) Preliminary
    http://technet.microsoft.com/en-us/library/cc755301.aspx#bkmk_wlanConn
    Karen Hu
    TechNet Community Support

  • Question Mark and Quotation Marks Stopped Working

    Hi, I was working away and then my computer just up and restarted. I then relaunched my application now I notice my quotation marks, and question marks dont work in any application, but they are replaced by these letters: Double Quotation is: È, Single Quotation is: è and Question mark is: É.
    I opened my System Preferences and reset the keyboard to default and the quotations and question marks still dont work. I know I have had memory problems but what can I do to fix this.
    Thanks

    Paint Guy,
    What keyboards do you have selected in System Preferences>International>Keyboards? Make sure that US is at the top of the list and uncheck any unwanted keyboard inputs. It sounds as if you might have Canadian input selected.
    littleshoulders

  • Typographically correct apostrophes and quotation marks? Bug?

    I am using the trial of Pages '08 (3.0) on a German Mac OS-X 10.4.10. Typographic quotation marks are switched on.
    Apostrophe:
    Whenever I type a phrase in English with an apostrophe, for instance the word "Let's" it uses a left single quotation mark (‘) instead of the right single quotation mark.
    Quotation marks and languages:
    Likewise, with typographic quotation marks set in the program settings, Pages uses the German quotation marks (which look like this: „word‟) although the text language is set to English. This behaviour occurs with English and English, GB. In Word this behaviour changes with the text language setting.
    I am a recent switcher, so maybe a solution to this problem is already known. If not, should I report this as a bug via feedback?

    Ian, yes, that would be Smart Quotes in English.
    You not being able to get German quotation marks in English would seem to be the same problem. I guess this is a bug then (or a missing feature) as I would expect this to change with each language (e.g. French has guillemots etc.).
    Would perhaps having several keyboard input setup in OS-X help here?
    Thanks for the link to Tom Gewecke's page. Tom, I'd be interested to hear of any other good recommendations. Are NeoOffice/OpenOffice good in this respect? Word compatibility and the ability to track changes is a must for me (as client's work with Office), but I'd rather invest in Microsoft Office when the new Universal version becomes available? I like the more simplified interface of Pages, which is why I'm trying the new version out via the trial.

  • SUBSTITUTE Function and Quotation Marks

    How do you substitute another character for a quotation mark in a string using the SUBSTITUTE function? I want to change a string such as 12"x12"x2" to read 12x12x2. I have read the User Guide and the Formulas and Functions User Guide, but I cannot find a way to 'escape' the quotation mark so that it is interpreted literally. I tried the tilde, but that did not work either; and smart quotes is turned off. My UNIX skills are rusty. Is this possible in Numbers '09?

    Thank you very much! I had tried 3 quotes, but did not think to try 4 quotes; nor did I think of Googling an Excel solution. The logic of why this works escapes me, but it DOES work and I will have to remember this tip as well as how you found the solution. Again, thank you for providing a solution.

  • Grep and quotation marks

    Hi, I have put together a grep style that will change any western characters in a Chinese document to a different font. I am having a problem with changing quotation marks around western characters without changing the ones around Chinese text as well. Is there any way to change only quotation marks that are around western characters?
    Kate

    Sure! It's perfectly possible to scan for anything but Chinese. What exactly do you have now? If you are using something like
    ".+"
    you could change it to
    "([\x{0003}-\x{2fff}]+"
    (the main bulk of Chinese starts at Unicode u+3000). This will include the text "within". An alternative way, excluding anything but the quote marks themselves, is to use lookbehind and lookahead:
    (?<![\x{2fff}-\x{faff}])[~{~}](?![\x{2fff}-\x{faff}])
    This may look daunting, but it consist of three fairly easy parts:
    (?<! [ \x{2fff}-\x{faff} ] )  Match behind for not anything in the Chinese range
    [ ~{ ~} ]   Match either opening or closing double quote (this doesn't seem to work with the " any dbl quote wildcard...)
    (?! [ \x{2fff}-\x{faff} ] )   Match in front for not anything in the Chinese range again.

  • Builder and quotation marks

    Since we don't need the quotation marks, why does the builder build using them????
    I'm trying to write the source by hand, and I use the builder to learn from.
    But any source that's been generated has all that excess stuff in it, so I have to go in and edit it out.
    Is there a toggle to turn that off?
    Marion

    This is primarily in support of object names using non-ascii characters. I believe table names can only contain A-Z 0-9 _ without using quotes around them. So, if you were French and wanted to create an employees table:
    CREATE TABLE EMPLOYÉS(ID NUMBER);
    CREATE TABLE EMPLOYÉS(ID NUMBER)
    ERROR at line 1:
    ORA-00911: invalid characterWith quotes:
    CREATE TABLE "EMPLOYÉS"(ID NUMBER);
    Table created.Since APEX is supported 9 languages in addition to English, they have to expect they will encounter this issue when querying these tables as well. So, to be safe everything is enclosed in quotes. Quotes also support mixed case object names, but that is terrible, terrible path to go down. If anyone reading this that uses Oracle in another language cares to chime-in and correct / supplement my response, feel free.
    Tyler Muth
    http://tylermuth.wordpress.com
    [Applied Oracle Security: Developing Secure Database and Middleware Environments|http://www.amazon.com/gp/product/0071613706?ie=UTF8&tag=tylsblo-20&linkCode=as2&camp=1789&creative=9325&creativeASIN=0071613706]

  • When I write in hebrew from right to left the periods/quotation marks/question marks at end of sentences jump to the beginning of the sentence. help

    I cannot seem to format a message correctly when I write in hebrew from right to left
    even if I press left margin and the message starts from the left side, all question marks, and end of sentences (periods, etc) jump to the front of the sentence and quotation marks or separation marks (such as dashes) split up the lines and jump words to the front of the sentence.
    how can I change the formatting to solve this so the recipient receives a properly formatted email?

    are you using in bidi add-on?
    https://addons.mozilla.org/en-US/thunderbird/addon/bidi-mail-ui/

  • Apostrophes, quotation marks, dashes causing problems in emails

    MacBook Pro
    OS: 10.4.7
    Program: Mail
    Since upgrading to an Intel MacBook Pro (10.4.7), my outbound email has been turning into a weird jumble of glyphs.
    For some recipients, my apostrophes and quotation marks turn into a serious of four glyphs...for other recipients, all the dashes and em dashes disappear...for yet other recipients, all the punctuation completely vaporizes.
    I’m emailing to an extremely broad set of recipients, as they are my customers from all over the country. No single ISP is in common, no particular browser, etc. The only reason I even know about this is because I’m able to see the catastrophe in my original text included in their responses. Doesn’t matter whether I’m sending from home (with our cable company ISP) or from work (an entirely different cable company ISP)...same mess either way.
    Our outbound messages are nearly incomprehensible to read—any suggestions?
    MacBook Pro, G4 PowerBook, G4 tower   Mac OS X (10.4.7)  

    The only reason I even know about this is
    because I’m able to see the catastrophe in my
    original text included in their responses.
    That doesn't necessarily mean that your outbound mail is appearing strange to the reader. I would advise you to check that and verify that you really have a problem.
    If your readers do see strange characters, it is often because you are sending rich text (which is really html mail) and they are using MS Outlook. Some possible fixes are in this note:
    http://homepage.mac.com/thgewecke/woutlook.html
    PS Getting rid of all smart punctuation (curly quotes and apostrophe's, special dashes) may also be helpful.

  • Question marks appear in my browsers now, used as quotation marks...

    Lately all sorts of question marks are appearing in certian parts of my browsers, I think that somehow a font is corrupted or something... it appears they are there appostrophies and quotations marks should be; this is very annoying. How can I fix this? As far as I know, I havent done anything with my fonts or to my system.
    Thanks
    Michael

    It would help a great deal if you would provide an example url of a site where you have this problem.
    Normally seeing ? instead of punctuation is caused by an encoding mismatch between the browser and the page being viewed, resulting from errors by the page author. You can often fix it by going to View > Text Encoding and manually setting your browser to Western (ISO Latin 1).

  • How to mark product mandatory in SAP CRM Opprotunity and Quotation?

    Hello All,
    We are using SAP CRM 4.0 and have one requirement as follows:
    Through Configuration ,I am not able to find the the way to mark mandatory for the fields Product , Description,Quantity,Exp.total Value under the Products Tab for the Opportunity. Also the field product under products Tab for the Quotation.
    Can this be done through Config or Technically?  please provide the steps for the needful and also advise do i need to put this at header or item level?
    Thanks in advance.
    Cheers
    Sreedhar

    Hi, Sreedhar
    You have to write program for Badi ORDER_SAVE or use incompleteness check.
    How to maintain the fields mandatory in Opportunity and quotation SAP CRM?
    making activity reason as incompleteness field
    Denis.

  • Quotation marks and apostophes reversed

    When editing text, I'm getting reversed quotation marks and apostophes if they are added to preexisting test. Quotation mark added to the end of a sentence that was already in the document will be pointed the wrong way. Erasing the last letter and retyping it with the quotation mark will perform correctly.
    The same happens when placing an apostophe on preexisting text.
    This happens in AppleWorks, TextEdit, and Tex-Edit Plus. This does NOT happen in Pages or InDesign. It only happens on one of my computers.
    Any ideas?
    Ric Carter

    Hello
    This may be due to a corruption of preferences files dedicated to the named applications.
    Try to trash these preferences files.
    It may also be due to corruption of some documents but I assumes that if it was specific to only some docs you had wrote this detail.
    Some system preferences may be corrupted too but I assumes that if one of them is corrupted, the corruption would strike on every applications on a single computer.
    Yvan KOENIG (from FRANCE jeudi 24 mai 2007 19:04:45)

  • Getting Quotation Marks to look like they were mirrored. In GREP or Regular find and change

    Hello,
    Is there anyway to make quotation marks come out like this image below.
    Right now I have 2 text boxes to make it work, as I cannot get the first double quote to look like a mirrored version of the right double quote ;-(
    This is what it needs to look like.
    Thanks,
    Babs

    Peter wrote:
    When you copy someone else's copy of Sgt. Pepper you deprive the distibutor of his profit on the legitimate sale and you deprive Mssrs Mc Cartney and Starr of their rightful royalties, which may be piddling, but every little bit counts.
    Little bits do not count for as much as great big bits, and it is rule-worship to assume that they do. There is no proportionality in grouping very different sorts of violation together as if they were all in the same league of criminality. Picking up a dime someone has dropped in the street is completely different from breaking into someone's house and stealing a large quantity of money.
    You'd have a fit if you found out I was using a logo you designed, without permission, and was making money from publishing it. Suppose I hacked into your system and copied your last completed job and handed it to your client before you could deliver and bill them? Would you be upset if they went ahead and used your work and didn't bother to pay you because, after all, there was no 'property' involved and they have what they need without cost?
    Yes, I would regard that as a serious legal offense, and would follow it up with the full rigors of the law. But it is not "theft" in the proper sense of the word, in my opinion, because an idea (design, logo, etc.) is a type rather than a physical token. Its authorship must be protected, its origination acknowledged, monetarily rewarded, and all that, but the idea that it has an "owner" is the product of philosophical and logical confusion.
    Human tend to over-extend the concept of ownership to all sorts of things that cannot legitimately be owned, such as other people. Even nowadays, following the abolition of slavery, many people consider themselves the owners of their spouses, children, employees, pets, etc..
    Message was edited by: Jeremy bowmangraphics
    PS: Forgot to add that I have paid for Sgt. Pepper four times already -- in mono vinyl, stereo vinyl, tape cassette, and CD. Don't you think it's time we all deserved an "upgrade"?

  • Adding a Kerning amount to the space between a digit and a quotation mark in GREP

    Hello,
    For some reason I am having a problem adding a Kerning amount between a digit and the Quotation mark in GREP.. Here is what I have :
    (?<=\d)\x{0022}
    I think the problem, is the character style lets me add a tracking amount, but not specify a kerning amount and that is what I really need. I just need a 150 Kern between the digit (sometimes a whole number or a fraction and the double quotation mark.
    Anyone out there know a good way to do this?
    thanks
    babs

    Almost right.
    No, you cannot set kerning in a character style (easily -- I think there was a trick to work around it, but I cannot recall what it was). Yep, you must apply tracking with the GREP style to part of the string. If you set the tracking for both characters, it will also be applied to the second one, making this wider as well.
    Set your GREP to this to prevent it:
    \d(?=~")
    (where the code ~" is equal to 'straight double quotes only').

  • My muse website, when uploaded, jumbles quotation marks, bullet points and apostrophes to appear as • and â€? Why?

    My muse website jumbles quotation marks, bullet points and apostrophes to appear as ’.
    Its fine when I preview in browser, only once it's been uploaded do the marks become jumbled. Why?

    Thanks Zak..The server host said that the jumbled marks are appearing as binary code while the rest of the text is appearing as "text".
    They believe that the problem may be occurring at the FTP. The server host is configured to host binary and unicode.
    They advised me to upload a zipped folder containing the site and they will try and open it at their end. Also, not sure if this is unique
    to Adobe font kits. Its from Adobe Font kit.

Maybe you are looking for

  • Error. Javamail. No object bound to name... Sun Java App. Server 9.0 updt 1

    Hello, I get this exception: No object bound to name java:comp/env/mail/SendSession I am trying to build automatic mail sending in my application I have configured my server with the next information and this code: -Error, exception: No object bound

  • Updating a big table

    Hello, i wanna update a column in a table (make it null). but the table is very big, and if i write something like update my_table set column_name=nullit takes very much time (probably hours) How can i optimize that? Any workaround for this to reduce

  • Drop the Rules of one table from existing bi directional replication setup

    Hi All, I have one small question on bi directional replication setup, Its regarding table add in existing replication setup. What happened ,When we add a new table to existing replication setup if any reason table is not replicating between two data

  • Webutil demo using jinitiator issue

    Hello, I am running dev suite 10g, patch 2 on Win 2k. I set up webutil 1.05 (with jacob 1.7, didn't work with jacob 1.9) and the webutil_demo locally, and run it with the config=webutil parameter as described in the documentation. It works except for

  • Set an authorization of ServiceCall to an user

    Hello all