Importing Word into InDesign, problem with styles

OS 10.6, CS5
Hi everyone,
Does anyone have any experience with importing styled Word docs into InDesign?
Editors style their Word documents with some basic styles (Text, References, Headline, etc.) using a Word template that I created. Designers use import options to match the Word styles to the ID styles. This worked fine in Word 2004 and InDesign CS3: Word  "text" style would map on import to the InDesign "text" style, even though they had totally different attributes. Superscripts, italics, etc. would be respected as local overrides in InDesign.
Then we upgraded to CS5. Automatic mapping on import no longer seems to work: After importing text, all the styles in InDesign have local overrides assigned to them that don't make sense (hyphenation exceptions, tab settings). So I'm left with importing the Word styles, using auto-renaming so that InDesign explicitly does NOT match styles.
Then delete the Word styles one by one from the paragraph style panel, replacing with the desired ID style.
This has gone on for several months and we've now upgraded to Office 2011 but that hasn't solved the problem.
With Word 2011 docx files, the import works almost like it did in CS3, the styles almost come in cleanly: If the style in Word has NO local overrides, such as italics or superscripts, the InDesign style is correctly applied. The problem is those local overrides in Word--InDesign not only respects the italic or superscript, it also respects the font attribute. All the Word styles are Times New Roman so all superscripts in InDesign are coming in as superscript + TNR. (see screenshot)
Are we left with our original work-around? Importing styles then manually deleting and replacing them?
This is frustrating because it used to be smooth and seamless and while some new features of CS5 are great, it's annoying that it's broken this fundamental function!
I've tried saving the Word files as doc or rtf instead of docx but this doesn't make a difference in this problem.
Any help or advice would be much appreciated.

I'm an author / publisher.  I write in Word and I publish with InDesign. When I'm in the review stages, I like to edit my text in Word, so I export the text as an RTF.  When I import it back into InDeisgn I often find that some of the styles have annoying overrides from Word that break things.  (1) Paragraph style stuff about hyphenation and (2)  Characters style stuff about  Character direction: Left-to-Right style.
* Easy global  fix:  select the whole text open the Window | Style | Paragraph window, and click the button on the bottom to remove all overrides. And do the same for the Window | Style | Character window. Before doing this, I like to check that I don’t have any italics that are in the file as overrides rather than being in there as part of a header style or as part of the Emphasis style that I try to use throughout the text instead of just an italic override. It makes me uneasy to remove all overrides, as I always worry there might be an important one I could have kept.
* (1) Specific fix for the hyphenation overrides: Make sure the hyphenation settings in the individual InDesign paragraph styles match, so far as possible, the Word global hyphenation settings in the Page Layout | Hyphenation dialog of Word.    InDesign will import any Word hyphenation settings that don’t match the InDesign doc styles as overrides.
Specifically,  set InDesign Hyphen Limit to ( say) 1 and set Word | Hyphenation | Hyphenation Options | Limit consecutive hyphens to the same number (say) 1. Also set InDesign Paragraph Style Hyphenation | Hyphenation Zone to (say) 0.5” and set Word | Hyphenation | Hyphenation Options | Hyphenation Zone to the same number (say) 0.5”.  And turn off all the InDesign optional hyphenation check boxes at the bottom of the dialog, and the turn off the two check boxes in the Word Hyphenation Options box as well.In Word you should also set Hyphenation | Automatic.  If you cautiously set Word Hyphenation | None the import will throw a “Hyphenation” override on the hyphenated paragraph styles, even though this maikes no sense.
You may still pick up some hyphenation related overrides on your heder styles, if you have set the headers not to hyphenate.  You can either dump the overrides in InDesign or you can set your header styles to hyphenate…and be careful not have any headers actually be longer than one line.
(2) I still haven't found the fix for the Left-to-Right text override.

Similar Messages

  • Issues importing word into indesign and keeping notes/superscripts

    Hi
    I have a job coming up where I will need to import word documents into indesign that come from various sources.
    I did some web surfing and discovered I should be able to do it by placing the word document into my template. It seemed to work when I first tried it, but I have now discovered that only the first few notes have from through (first 14 to be precise). Then the numbers disappear (and are replaced by soft returns) until note 33 where they jump back in. But of course this starts at the next number missing, so in this case 15. Which of course means all the numbers are out of order and so need to be fixed.
    I would just input or fix manually but as I have 15 stories place and format and the first one has 95 notes... I am hoping to find a less time consuming solution.
    I am guessing it is something in how the author has edited the word document, but I truly have no idea.
    Any suggestions as best way to overcome this? Ideally something I can ask the authors to fix. Or is there something in the import options?
    I am about to get EXTREMELY desperate with this issue.
    Thanking you call in advance.
    Cheers
    Nikola

    OK after some more web seraching I have tried saving as and RFT file and that seemed to work. So fingers crossed.
    Using these settings:
    If anyone knows why it happened please let me know as it would be most useful.
    Thanks
    N

  • Importing CSV into table - problem with tab-deliminated files

    Hi All,
    I have written an application based on well-known Uploading excel sheet using Oracle Application Express (APEX) example from the following site:
    http://avdeo.com/2008/05/21/uploading-excel-sheet-using-oracle-application-express-apex/
    All works as expected...
    However the code in the example assumes that the CSV file is really comma-delimited file:
    v_line := REPLACE (v_line, ',', ':');
    Now, I have noticed that when different people use "Save as CSV" function in Excel they sometimes get different results. For example sometimes you get a file which is semicolon delimited (';').
    However, I need to process a file which is tab-delimited file. Thinking is was quite simple task I simply change the above line of code to:
    v_line := REPLACE (v_line, chr(9), ':');
    where chr(9) is the ASCII code for horizontal TAB
    I was very surprised however to see that if I process the tab-delimited file with the above line I receive an extra character between EVERY CHARACTER. To give you an example:
    1) When processing a normal comma or semicolon delimited file using v_line := REPLACE (v_line, *','*, ':'); or v_line := REPLACE (v_line, *';'*, ':'); I receive correct results:
    SQL> select contract_value,dump(CONTRACT_VALUE) from sdpr_upload;
    CONTRACT_VALUE DUMP(CONTRACT_VALUE)
    354000 Typ=1 Len=6: 51,53,52,48,48,48
    555569 Typ=1 Len=6: 53,53,53,53,54,57
    2) When processing a TAB-DELIMITED file using v_line := REPLACE (v_line, chr(9), ':'); I get this:
    SQL> select contract_value,dump(CONTRACT_VALUE) from sdpr_upload;
    CONTRACT_VALUE DUMP(CONTRACT_VALUE)
    3 5 4 0 0 0 Typ=1 Len=13: 0,51,0,53,0,52,0,48,0,48,0,48,0
    5 5 5 5 6 9 Typ=1 Len=13: 0,53,0,53,0,53,0,53,0,54,0,57,0
    Now the BIG QUESTION ARE:
    Where do these 0's come from? How to get rid of them?
    Many thanks for any pointers!
    Pawel.

    Thanks for the tip, however the problem is to actually load the tabbed file.
    I think the issue lies somewhere else. I see some weird characters in the export file when viewing it in Linux vi. So I am guessing this could be some unnicode conversion problem rather than any issue with the application or script.
    Is there anyway one could upload a UNICODE text file into Apex?

  • I burned a playlist to a data CD using itunes 11 but what is best way to get it import it into another computer with itunes running?

    I burned a playlist to a data CD using itunes 11 but what is best way to get it import it into another computer with itunes running?  I get an "X" when trying to copy to the "automatically add to itunes" folder on the 2nd computer.

    ok... so i i just made sure all my music is all together in 1 folder and i am going to trash my old music folder that is in the itunes folder... and follow your directions - let itunes start w/new library and bring my music in. Well, last little hurdle/question. I noticed that the place where my itunes library is - on an external drive doesnt have much space left on it. The place where i gathered all my music together in order to start fresh - is a different external drive and has LOTS of free space on it.
    SO... i now would like to just keep all that freshly compiled clean music right where it is but in advanced preferences I want to point to that new folder on the drive that has so much more space. So... should i delete the old music then go into itunes with a blank library and change the folder in preferences - quit and go back in and then follow your steps to loading my music? If i change the setting of where itunes looks for the music - that doesn't wipe out the old stuff... it just mixes it all up together right? I dont want that!!
    i promise this is the last question - i would love to fix this problem tonight and just be DONE!
    Thanks in advance for your patience and knowledge!!
    Lisa

  • Import CSS into InDesign?

    My company wants to move about 200 books that are about 250-500 pages into InDesign. They are currently stored in a database in XML format and we use CSS and PrinceXml to publish. I am able to import the XML into InDesign, but I haven't found a way to import the CSS styles. Is that possible?

    As far as I know, there is no ability to import CSS into InDesign. When you export as EPUB, you have the option of using a CSS stylesheet to format the EPUB file.
    It's been explained to me that there are too many differences between the way InDesign creates styles from the way CSS works to do such a thing. For example, in CSS you can define placement on the HTML or XHTML page in a way that's not possible in InDesign.

  • Office Web Apps Server 2013 - Word Web App - Problem with Tab space

    Hello We have Office Web Apps Server 2013 running with SharePoint 2013.  Users Editing a Word document with Office Web Apps, can't use "Tabs", any Word document with Tabs; the tabs are replaced with a single space.
    Has anyone noticed this?  Is this a bug?
    -thanks
    thomas
    -Tom

    Yes, currently the Word Web App does not support
    Tab Keyboard shortcut for editing document content .
    For more information, you can have a look at
    the article:
    http://office.microsoft.com/en-us/office-online-help/keyboard-shortcuts-in-word-online-HA010378332.aspx?CTT=5&origin=HA010380212
    http://social.technet.microsoft.com/Forums/en-US/3f5978d3-67a1-4c8c-981f-32493d72610b/office-web-apps-server-2013-word-web-app-problem-with-tab-space?forum=sharepointgeneral

  • Filming on a Panisonic 24p camera but I imported it into final cut with a

    Filming on a Panisonic 24p camera but I imported it into final cut with a Sony HD camera. Will this mess up the quality of of my shots when I ad slow motion? I have noticed that the slow mo is a little chopy. PLEASE HELP!....

    24p is captured with your standard "DV-NTSC" easy setup, whereas 24pA is captured with the "DV-NTSC 24p (23.98) Advanced Pulldown" easy setup. Correct me if I'm wrong I still have yet to work in 24pA.
    http://www.kenstone.net/fcphomepage/24p_in_FCPnattress.html
    This page is priceless.
    http://www.nattress.com/Solutions/solutions.htm
    This page is nice too for reference

  • Importing interaction into InDesign

    I understand that the Captivate 7 interaction must first be put into Edge Animate and saved as OAM file before importing it into InDesign, but I don't know how to import a Captivate interaction into Edge Animate. If anyone knows steps for how to do this I'd greatly appreciate it.

    I don't think that's true. I don't know if you can save the interaction by itself but you certainly can save the Captivate file after you get it working and import it into InDesign.
    Can you tell us exactly what you're trying to do? In the meantime, check out this blog post from Pooja...it's excellent:
    http://blogs.adobe.com/captivate/2013/08/a-step-by-step-guide-to-create-an-interactive-ebo ok.html
    Dave

  • I've run into a problem with my trail version of Adobe Premier 13, and it appears to be a major one.

    I’ve run into a problem with my trail version of Adobe Premier 13, and it appears to be a major one. Here’s what happened.  Yesterday when I turned on the computer, I got a prompt asking if I wanted to link my Adobe Lightroom with Adobe Premier.  I “x’d” the prompt but then the computer went into a “do not turn off” mode.  45 minutes later the computer was still prompting me not to turn it off. Thinking that the computer was hung up I did turn it off.  Then I turned it back on, went to Adobe Lightroom to discover that all my work from the past three-to four years had disappeared. 
    At this point I am afraid to mess with Adobe Premier, so it’s still on my computer.  I used Windows 7, Photoshop CS3 and Lightroom 4.  Do you think if I uninstalled my trial version of Adobe Premier 13, my work on Lightroom would return?  Or is it lost?
    Thanks to any who offer suggestions. 
    Bert Gildart

    Bert Gildart
    I was unaware that you could establish any direct linkage between Lightroom and Premiere Elements. Are you sure that the association was to be for  Photoshop CS3 and Lightroom?
    Have you tried to do a System Restore to a point before you installed Premiere Elements 13 or before you OK'd whatever this Lightroom linkage was?
    Have you asked your question in the Adobe Lightroom Forum, asking about recovery of work lost from Lightroom? Have you found any traces of your lost Lightroom work in the Recycle Bin?
    ATR

  • [svn:fx-trunk] 11707: Fix incremental compilation problem with styles.

    Revision: 11707
    Author:   [email protected]
    Date:     2009-11-12 10:52:49 -0800 (Thu, 12 Nov 2009)
    Log Message:
    Fix incremental compilation problem with styles.
    QE notes: None.
    Doc notes: None.
    Bugs: SDK-24173
    Reviewer: Paul
    Tests run: checkintests
    Is noteworthy for integration: No.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-24173
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java

    You have used elements like header, footer, footer1 and nav without using the correct DOCTYPE declaration. Replace the first line of your code with
    <!doctype html>
    Also have a look here for other problems http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fhome.surewest.net%2Fstorytales%2F test%2Fforposting.html
    After the above has been fixed, please come back here to fix the remaining problem(s)
    Gramps

  • My i phone was stolen and now I need to upload my contact to my i cloud from my I tunes...any ideas how to import contacts into i cloud, with either i tunes or with old iphone

    My i phone was stolen and now I need to upload my contacts to my i cloud from my I tunes...any ideas how to import contacts into i cloud, with either i tunes or with old iphone?

    If you have the contacts on the phone you can sync the phone to the computer. The contacts should then show in address book. At this point you can sync the address book data to iCloud. You have to make sure the iCloud account is setup on the computer and this will not work unless the computer is running 10.7.2 of course. There are other ways to add the contacts to iCloud like through the phone but the phone must be running iOS5. If it is you can simply add the cloud account to the phone and toggle the contacts slider. You will get a prompt to keep or delete the contact data. Of course you keep. Then you will get a prompt to merge at which point you do. This should merge the contacts on the phone with iCloud. Hope this helps.

  • Using CC2014, I have a psd with smart objects. I would like to place it into indesign along with type

    Using CC2014, I have a psd with smart objects. I would like to place it into indesign along with type & logos. I would like to then export a pdf from indesign hoping that the smart objects stay as vector. Exported a pdf 1.7, but everything rasters. Writing a postscript gives the same results. Any help?

    Using CC2014, I have a psd with smart objects. I would like to place it into indesign along with type & logos. I would like to then export a pdf from indesign hoping that the smart objects stay as vector. Exported a pdf 1.7, but everything rasters. Writing a postscript gives the same results. Any help?

  • Problem with importing graphics into InDesign

    This is a fictitious example to illustrate my problem...
    I have .PSD file measuring 10cm square. It's completely blank except for a layer containing a 5cm square box in the middle. When I import to InDesign it places as a 10cm square picture frame (with the 5cm image in the middle surrounded by blank space), rather than a 5cm square picture frame "snapped" to the edges of the .PSD content.
    This means doing a "Fit Frame to Content" now makes the InDesign frame the same dimensions as the .PSD document (ie. 10cm square), when it used to make it 5cm square (i.e the same dimensions as the CONTENT of the .PSD document). Any ideas about changing this back? I've no idea what's changed recently...
    Apologies; that's been described incredibly badly. I hope someone understands what I mean!
    Thanks in advance

    Thanks guys. But in the past when this has happened it's seemed to be linked to the last image I opened in PhotoShop. Often I have to render PDFs in PhotoShop to send visuals to printers and, depending on what I pick in the "Crop to:" drop down box, in the past has altered the way my next image imports in InDesign. In the past if the next .PSD image imported into InDesign with the extra white space around it, I turned Import Options on and then got similar "crop to" options in InDesign, and (off the top of my head) chose "Bounding Box" to resolve the issue. Now I'm just getting the option to turn layers on or off.
    That said, InDesign does now seem to be behaving exactly as you (Daniel) describe. This is annoying because I've been testing this now on a .PSD graphic which used to place and crop to the content, but now places at the size of the full PhotoShop document.
    And Rik: I agree that I could crop the original images in PhotoShop, which would technically resolve the issue - and may end up being what I have to do in the short term. But I've got a bee in my bonnet about this now, because this isn't how InDesign has been behaving for me for the past 5 years.
    I've tried deleting the preferences for both InDesign and PhotoShop in the vain hope it would be as simple as that. That didn't work.
    I'll keep searching for the answer...

  • Problem with imported images into Indesign

    I have scanned a book as a one bit (B & W) 600 dpi document. I have imported the document into Indesign as i need to integrate some decsreened pics in. I then export the finished document as a press ready PDF and the image virtually disappears off the page and what is left is very distorted. the type is twice as high and about five times wider than the original image.
    I have contacted the scanner company and of course they put the issue with the exporting to the PDF.
    Can anybody help??

    This is bug #2960217 filed by me in September, relating to Indexed over Gray colorspace, also with a Fujitsu Scansnap S1500M.
    I have scanned a book as a one bit (B & W) 600 dpi document. I have imported the document into Indesign as i need to integrate some decsreened pics in. I then export the finished document as a press ready PDF and the image virtually disappears off the page and what is left is very distorted. the type is twice as high and about five times wider than the original image.
    The scanner that i have used is a Fujitsu Scansnap S1500M.
    In short, don't use it in Grayscale (Or BW, I guess) modes. Use it in Color, or make sure to process the iamge in another app (like Photoshop) and save
    it with a normal colorspace.

  • Successfully importing cross-references from Microsoft Word into InDesign?

    Hello --
    I am laying out a series of long documents (~130 pages each) in InDesign CS5.5.
    The writer for the project has used cross-references in MS Word for areas like the TOC, index and page references ("See page X for more information").
    Is it possible to import these cross-references into InDesign so that the InDesign document functions like the Word document with the cross-references?
    I am thinking no because I am having a ton of trouble with it so far, but wanted to get a definite answer from an expert.
    When I import the text, the cross-references appear in InDesign in the Hyperlinks/cross-reference panel. However, InDesign says they need to be updated based on the way the text flowed in InDesign. And when I click the auto update button, all sorts of funky stuff happens and basically -- the cross-references create a bunch of typos and become junk.
    Thoughts? Knowledge on this topic?
    Thanks in advance!!

    wikiElvis wrote:
    Hello --
    I am laying out a series of long documents (~130 pages each) in InDesign CS5.5.
    The writer for the project has used cross-references in MS Word for areas like the TOC, index and page references ("See page X for more information").
    Is it possible to import these cross-references into InDesign so that the InDesign document functions like the Word document with the cross-references?
    I am thinking no because I am having a ton of trouble with it so far, but wanted to get a definite answer from an expert.
    When I import the text, the cross-references appear in InDesign in the Hyperlinks/cross-reference panel. However, InDesign says they need to be updated based on the way the text flowed in InDesign. And when I click the auto update button, all sorts of funky stuff happens and basically -- the cross-references create a bunch of typos and become junk.
    Thoughts? Knowledge on this topic?
    Thanks in advance!!
    I can't speak to general or specific causes of your cross-reference problems. However, I believe that InDesign x-refs behave a bit differently in CS4, CS5, and CS5.5, and if you have either of these earlier releases, you might try them for comparison.
    Also, you might want to look into the free trial of DTP Tools' cross-references plug-in for InDesign, at dtptools.com, to see if it's more successful than InDesign's built-in x-refs.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for