How can I force a paragraph style without losing italic?

This has been annoying me for ages. I work on documents in Word, applying italic to book titles etc, and then import into indesign. I apply a paragraph style and three times out of four the bits of italic are preserved. However, the fourth time the paragraph style doesn't take (probably because of the presence of italic) and I have to force it to do so by using Alt-click. Invariably the italic is then replaced by roman.
It's happening just now with a whole lot of footnotes and endnotes in a book I'm working on and means I have to go back through them all, manually applying italic to my book titles and references. Is there any way to force an endnote/footnote paragraph style without losing the italic text?
Thanks for any suggestions,
Tom.

I'm not sure that forward planning is so necessary here.
If your only concern is losing italics when importing from Word, create,
in InDesign, an italic character style. Then do a search and replace
throughout the InDesign document (after you've placed the Word file)
searching for italics formatting, and replacing with your italics
character style.
That will prevent you from losing your italics formatting.
Repeat for bold, bold italics, superscript, subscript, and anything else
the author uses.
There are some scripts that help in this process (I think one of them is
called "preptext", by Jongware).
If you want a comprehensive solution that can find every type of
formatting override and creates and applies the appropriate character
style, check out my "Create Character Styles from Overrides" script,
available under the scripting tab on freelancebookdesign.com.
Ariel

Similar Messages

  • My old email address was hacked and I am no longer able to access it. How can i reset my icloud ID without losing all of my pictures and more inportantly contacts? I have created a new ID but i cannot seem to use it until I delete the old account

    my old email address was hacked and I am no longer able to access it. How can i reset my icloud ID without losing all of my pictures and more importantly contacts? I have created a new ID but i cannot seem to use it until I delete the old account

    You need to use the old ID and password to delete the iCloud account. After you delete the old account, you can sign in with the new ID in iCloud.
    Have you seen this.
    http://support.apple.com/kb/HT5796
    iCloud
    iOS 6 and later: Go to Settings > iCloud.
    If you signed out before changing your Apple ID, enter your current Apple ID to sign in. The data from your iCloud account will download to your device.
    If you're still signed in with your previous Apple ID:
    Scroll down and tap Delete Account. Depending on what iCloud options are turned on, you'll be asked to confirm that you want to delete data from your device. To confirm, tap Delete. (If you're using iOS 7 and have Find My iPhone turned on, you'll be asked to enter the password for your previous Apple ID. Enter the password, then tap Turn Off.) The data will be deleted from your device, but not from iCloud.
    Enter your current Apple ID to sign in. The data from your iCloud account will download again to your device.

  • How can I change my iCloud email without losing pictures and data

    HOw can I change me iCloud email without losing pictures and data

    If you sign out it will be removed from the phone (but not from the icloud account)
    What are you trying to achieve here, why change your email address?
    I just realised that I answered the wrong person.
    Jill, you should start your own thread.

  • When i tried to download iOS8 on my iPad Mini it told me that I needed to connect my iPad to iTunes, I have done that and now it says I need to restore my iPad. How can I get my iPad working without losing everything on my iPad?

    When i tried to download iOS8 on my iPad Mini it told me that I needed to connect my iPad to iTunes, I have done that and now it says I need to restore my iPad. How can I get my iPad working without losing everything on my iPad? I don't want to lose my apps and photos!
    Help would be much appreciated!

    If you are getting the connect to iTunes screen then it's too late to take a new backup and/or copy anything off it. Prior to starting the update did you take a backup, either to the cloud and/or to your computer's iTunes ? If not then have you recently taken a backup that might have your photos and apps content/settings in it ?
    As long as the apps are still in your country's store then you should be able to redownload them via the Purchased tab in the App Store app (and the Purchased link under Quick Links on the right-hand side of the iTunes store homepage on your computer's iTunes), and if the apps store their content on a server/cloud service then you might be able to get their content back from that - if they store their content on the device then you will need to have a backup.
    For our photos you could try doing a search for programs that claim to be able to recover content from a device - I haven't used any so I can't suggest one.

  • TS3276 Mail application keeps shutting down short after start up - resulting in an error message. how can I repair what is wrong without losing my mail history?

    Mail application keeps shutting down short after start up - resulting in an error message. how can I repair what is wrong without losing my mail history?

    Will I lose my emails I have on there? I have numerous client email files and can't afford to lose any of them. I do have everything backed up but I'm fearful of losing important client info. What if something happened during the back up and it doesn't have my files?

  • How can you create a paragraph style that removes all spaces and forces everything to lower case?

    Hi,
    Is there anyway of using GREP (or some other magical wizardry) to create a paragraph style that automatically removes all spaces and forces words into lower case?
    Strange request i know....I'm wanting to use it for datamerged email addresses.
    Thanks

    so doing it through InDesign is a work around I'm exploring.
    Excel has the 'LOWER' function and the ability to record macros for a quick find/replace on the spaces - so that's definitely a good option if it can't be solved purely in InDesign.
    You can change case via scripting in InDesign. This AppleScript (OSX only) will set the case of the selected paragraph style to lower. It would be possible to add some code that would strip spaces as well:
    tell application "Adobe InDesign CS6"
        activate
            set StyleList to name of every paragraph style of active document
        set myDialog to make dialog with properties {name:"Document Paragraph Styles"}
        tell myDialog
            tell (make dialog column)
                tell (make border panel)
                    tell (make dialog column)
                        make static text with properties {static label:"Choose a Style", min width:150}
                    end tell
                    tell (make dialog column)
                        set myPresetsDropdown to make dropdown with properties {string list:StyleList, selected index:0, min width:150}
                    end tell
                end tell
            end tell
        end tell
        set myResult to show myDialog
        if myResult = true then
            --+1 gets the correct name because list starts at 0
            set myStyle to item ((selected index of myPresetsDropdown) + 1) of StyleList
        else
            return
        end if
        destroy myDialog
        tell active document
            set myStyle to paragraph style myStyle
            repeat with j from 1 to (count stories)
                repeat with i from 1 to (count paragraphs in story j)
                    if applied paragraph style of paragraph i of story j is myStyle then
                        --defines a variable to replace the generic this_text parameter in the handler
                        set SCText to the contents of paragraph i of story j
                        set contents of paragraph i of story j to my change_case_of(SCText)
                    end if
                end repeat
            end repeat
        end tell
    end tell
    on change_case_of(this_text)
        set the_comparison_string to "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
        set the_source_string to "abcdefghijklmnopqrstuvwxyz"
        set the_new_text to ""
        repeat with thisChar in this_text
            set x to the offset of thisChar in the_comparison_string
            if x is not 0 then
                set the_new_text to (the_new_text & character x of the_source_string) as string
            else
                set the_new_text to (the_new_text & thisChar) as string
            end if
        end repeat
        return the_new_text
    end change_case_of

  • How can i give multiple paragraph styles on the same line

    i want to give different paragraph style in the same line in an indesign document. bt when i tried it, it is coming in two different line.
    actually i am doing a project in which Frame maker document is transformed into indesign document. in frame maker this is possiable, but in indesign i cannot give different paragraph style in the same line of the document.
    Is there any way to do this ????

    YaneshTyagi wrote:
    i want to give different paragraph style in the same line in an indesign document. bt when i tried it, it is coming in two different line.
    actually i am doing a project in which Frame maker document is transformed into indesign document. in frame maker this is possiable, but in indesign i cannot give different paragraph style in the same line of the document.
    Is there any way to do this ????
    Hi, Yanesh:
    Please understand, the FrameMaker feature known as a run-in paragraph, which is a paragraph with a "carriage return" but without a "line feed," HAS NO COUNTERPART in InDesign. InDesign also lacks the FrameMaker side heading feature, which is created by the combination of a reserved area in the text frame and the paragraph property to inhabit that area. FrameMaker separates paragraphs by using the larger of space below paragraph and space above paragraph, but InDesign separates paragraphs by adding the space below paragraph and the space above paragraph.
    There are several complicated manual methods of simulating these FrameMaker properties in InDesign.
    Here's a recent forum discussion of these exact issues: http://forums.adobe.com/message/3759635#3759635. The thread mentions DTP Tools' conversion tool, the MIF Filter commercial plug-in for InDesign, and discusses its shortcomings. I don't recall it mentioning in-tools.com plug-ins that can simulate side headings, like those in FrameMaker, but they don't convert FrameMaker to InDesign. 
    You can add your vote for InDesign's developers to include these FrameMaker features, and any others you'd like to see, here: wish.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How can I change the paragraph style of the Table of Contents entries themselves?

    From what I can see, all Table of Contents entries are the same font, size, indentation and layout when the book is viewed in Portrait mode on an iPad. I have long subheadings in my Table of Contents, and they get truncated!
    How can I modify the style definition of the TOC entries themselves so that they will display in a smaller font size with less indenting, etc.?

    Modifying the TOC: http://support.apple.com/kb/PH2752?viewlocale=en_US
    Have you tried altering the style of the default items on the TOC page?

  • How can I fully indent Paragraph Style Numbering (Bullets)?

    Hi there.
    I have this:
    accomplished through a paragraph style that causes it to become numbered (bullets).
    Problem is I want it to look like this:
    Any help is appreciated.

    I have these settings:

  • I have an old ipod that got put through the washer. I want to restore it but i already have a new ipod. How can i restore my old ipod without losing all of my new itunes songs?

    I accidently put my old 2nd generation Ipod nano through the washer a few years ago. Well after that it would no longer work do to water damage. After a while i got a new Ipod (the same type) and was able to get new songs to put on it and what not. Well i was playing around with the one i washed opne day and found that i could still restore it on iTunes. However, it wont let me restore it without losing all of my music and what not that i got for the new one. I would like to continue to use the old one, but I am afraid of losing all of my current stuff. Does anyone have any suggestions as to how i can restore the old and keep the new? I am in desperate need.

    Well, two thoughts.
    The battery has completely discharged and will take overnight to recharge, so don't expect much in an hour.
    The battery has deep discharged and is now dead. It will never recharge and should be replaced.
    If your iPod Touch, iPhone, or iPad is Broken
    Apple does not fix iDevices. Instead they exchange yours for a refurbished or new replacement depending upon the age of your device and refurbished inventories. On rare occasions when there are no longer refurbished units for your older model, they may replace it with the next newer model.
    You may take your device to an Apple retailer for help or you may call Customer Service and arrange to send your device to Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes international calling numbers.
    iPod Service Support and Costs
    iPhone Service Support and Costs
    iPad Service Support and Costs
    There are third-party firms that do repairs on iDevices, and there are places where you can order parts to DIY if you feel up to the task. Start with Google to search for these.
    The flat fee for a battery exchange is, I believe, $99.00 USD.

  • How can I make a drive bootable without losing data on it?

    Is there a way to make a second internal drive bootable without losing the data that is already on it?
    The second drive was created under Panther 10.3.9. My main internal drive has had a clean install of Tiger 10.4.3. The second drive used to appear in the start up disk list when I was running 10.3.9 on the main drive. That is, it used to be bootable under 10.3.9. No kidding. After the main drive was given a clean install of Tiger, the second drive disappeared from the start up disk list. Please note: the second drive remains completely accessible when I am running off the main drive in 10.4.3. I can even use the few applications I had placed on the drive. It appears as separate drive under disk utility.
    I assume the second drive was installed as slave. (Both it and the main drive were independently bootable under 10.3.9.) It is not locked. "Ignore ownership" is not checked. The system has read-write privileges. Admin has read-write all others are read only. I am the only person who has access to this machine. It is not networked.
    I tried to ask this question a few days ago, but I think the way I phrased it confused the issue. My real question is NOT how did this get like this? It is can I make a drive bootable when it already has data on it?
    Thanks
    G4 Panther & Tiger   Mac OS X (10.4.3)  

    Hi,
    Thanks for your reply.
    You replied:
    the drive that you cannot
    boot from is a separate physical hard drive from the
    internal drive with 10.4.3. Is that correct?
    Yes.
    Have you used System Preferences > Startup Disk and
    looked to see if the 10.3.9 system shows up there?
    Yes, I have looked and it's not there.
    I got the impression that you have backed up the 10.3.9
    disk and that you do not really need the data there.
    Yes, I backed up a drive that was bootable, but then it lost its "bootabilty" and what I got was two non-bootable drives--the original second internal drive that I'm asking about and the back-up of it. I want the data on the drive and I wan the drive to be bootable.
    One thing that you might try when you are booted off
    your 10.4.3 system is to use Disk Utility, select the
    other disk and do a Repair Disk.
    Done that and it says there is no problem. Nada. Zero. It just won't boot, no more, no how, no way. BUT it remains fully accessible--I can access all my info. It's just become a storage drive that cannot be booted. Go figure.
    reformatting means
    destroying the data on the disk.
    Yup, which is why I asked my original question. Does anyone know if there is any way to make a drive bootable without destroying the data on it?
    I suspect the answer is no (given these particulars), but I thought some wise super-techie out there might have a trick up their sleeve.

  • How can I do a hard reset without losing app data?

    I have international texting on my phone and it's having an issue sending images to my friends overseas. The words go through but no media.
    I have Verizon's More Everything plan and after two days trying to get this sorted on their end, they want me to try a hard reset and test the texting before I restore my backup to see if it's something in the phone.
    the last time I had to do this I lost EVERYTHING regarding data in my apps. Some of the apps I have now I cannot afford to lose the info stored in them.
    I need to make sure that I can restore safely once we are done with the troubleshooting.
    If I have to manually put my items back in, HOW can I do that with the apps I really need the data preserved?
    FYI - ALL my settings for iMessage are correct.
    My international friends are not using iPhone AND I checked my settings there and they too are correct.
    So, before I go and wipe everything out, can someone reassure me with some directions and ease my worries?
    iPhone 5
    iOS 8.1

    Twitchin Kitten wrote:
    razmee209 wrote:
    My response was to the OP and not you.
    OK I'm going to say this for the what? 3rd time?
    I know the difference between a hard RESET and a full RESTORE. My mistake in the OP was mixing up the WORDS.
    If you read carefully, you would have probably figured it out without all this arguing.
    I'm going to make this simple ok?
    Verizon wants me to do do a RESTORE and NOT put my data back in from the backup.
    They want me to test what is broken to see if it works.
    If it works, then i am to RESTORE THE BACKUP and test again.
    I just don't want to lose data on the backup and restore. I have indeed lost data with restoring a backup when iOS 7 came out. It was a disaster.
    I fully understand what you are saying but I am TRYING to explain that it failed the last time I had to do this. I cannot make myself any more clear.
    Now, I think I'm done with this since it's all become such a topic of contention. All I wanted to know is if it could be done without losing data and now the stupid cloud comes into it, those with good intentions are getting yelled at by the guy with the basketball avatar and I just don't have the strength to keep repeating myself.
    All of this would be so easy if people took the time to read all the words and when / if not sure, read it again. That's what I do and I find it helpful.
    You should probably go back and re read all of my response to you.  Which answered all your question.  I don't need to repeat myself again and again.

  • [win][js][cs4]find/change paragraph styles without losing local overrides

    Hi guys i need a little help here.
    I created a javascript which will find and replace doc file paragraph styles with indesign paragraph styles. everything works fine but the problem is that when it applies the paragraph styles it loses all local overrides. i tried:
    changetext(false);
    but its not working is there some kind of conditional parameter that i can put in the changetext() function so that it wont clear local overrides?
    Thanks.
    CharlesD

    Thanks Kasyan. You're always there to save my day. Thank you very much...
    I slightly modify the script to go through all my paragraph styles that need to be replaced coz there are hundreds of them. Im not sure though if this is the best or is there any faster way to do this:
    replace("T1", "Text", "T1");
    replace("T", "Text", "T");
    replace("1", "Heads", "1");
    replace("2", "Heads", "2");
    function replace(input, folder, output) {
        var foundItem;   
        var doc = app.activeDocument;
        app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;
        app.findGrepPreferences.findWhat = ".+";
        app.findGrepPreferences.appliedParagraphStyle = input;
        var foundItems = doc.findGrep();
        for (var i = 0; i < foundItems.length; i++) {
            foundItem = foundItems[i];
            foundItem.applyParagraphStyle(doc.paragraphStyleGroups.item(folder).paragraphStyles.item( output), false);
        app.findGrepPreferences = app.changeGrepPreferences = NothingEnum.NOTHING;

  • How can I change a restrictions passcode without losing all the restricted settings?

    We have two iPads for two boys... both are heavily restricted.  One of my boys saw the passcode and I changed it by disabling and then re-enabling restrictions, only to be shocked when ALL MY SETTINGS were reverted to default and DIDNT come back after enabling restrictions again.  How can I change the passcode on the other iPad without losing all the settings, especially the long list of blocked websites?
    Thanks in advance.

    What good would the passcode be if you could bypass it like that?

  • HT4972 I have ipad version 4.3.2.  I have music on there that I want to keep.  when I go to itunes i cannot backup those music.  how can i update to ios 7 without losing the music?

    I have ipad version 4.3.2 and I want to update to ios7.  However, I cannot backup my musics on itune.  How can I update without losing my musics?

    Updating will not cause you to lose data but things can always go wrong. You should definitely backup before you update. I assume you have music on the device that was not purchased in iTunes and synced with a different iTunes library. You can transfer these songs back to your computer with third party software such as TouchCopy.

Maybe you are looking for

  • Integration directory is not getting displayed..

    Hi Gurus, Our developers are facing an issue here- they are not able to view the Integration Directory (ID) window with their own ID's as well as PISUPER. They are able to view the same instance ID from a different server. But I'm able to view to ID

  • On the ES2, how do I get a pitch modulation (Pitch123) modulated by LFO2 to retrigger every time i hit a new key?

    On the ES2, how do I get a pitch modulation (Pitch123) modulated by LFO2 to retrigger every time i hit a new key? I understand this can be done with the LFO1, however, ideally I'd like this synced to the beat as can be done with the LFO2 but not the

  • Editing ABAP FM for ESS

    Hello Frnds, We have a requirement in Benifits --> Open Enrollment --> Medical plan --> Edit Plan. We don't want to show one plant type. We thought of filtering at abap side only. I found out in trace that from ESS FM HR_BEN_ESS_RFC_OFFER_DETAILS is

  • Photoshop CS4 64bit RAM detection issue

    Hi all, I have Dell Precision M6400 with 12Gb of RAM and Photoshop CS4 (as a part of master collection). Here is my problem: Figure 1 (system spec showing my 12Gb of ram) Figure 2 (showing ps cs4 64bit system info read) Figure 3 (where did all my RAM

  • IMAP fails silently

    I am trying to convert an account from POP to IMAP. The POP version works. The IMAP version does not. No messages show up in the IMAP account. There are some other strange symptoms as well: 1. I control my mail server so I can look at the server logs