EndNote - Pages integration - Boolean searches option?

I'd very much like to move from Word to Pages 9.0, but don't think I can afford to make the change for several reasons. The main one is that I have nearly 3,500 references in my EndNote X2 library and find that the search window within Pages is too unwieldy to use. When I search for a term, I frequently retrieve more than 100 references and am unable to quickly scan them all to find the one I'm after. I'd like to use AND, OR NOT terms, but the search window does not handle this.
In addition, it would be useful to be able to read the abstact associated with each reference to check that it is the correct one.
Both these approaches work well when switching between EndNote and Word and make life so much easier that I'm still prepared to put up with the crashing and various bugs that plague EndNote/Word.
Has EndNote X3 fixed this? Or is this something that needs taking care of by Apple?

_Go to "Provide Pages Feedback" in the "Pages" menu_, describe what you wish.
Then, cross your fingers, and wait _at least_ for iWork'11
Yvan KOENIG (VALLAURIS, France) mercredi 19 mai 2010 19:54:07

Similar Messages

  • ITunes 10 search for exact match or Boolean Searches

    Is there a way to force an exact match when performing a search in iTunes?
    I tried putting "" around my search and get no results.
    The goal would be to search Artists for the artist "Hem", and only show results for only "Hem" and not both "Hem" and "Edie Brickel and the New Bohemians"
    As far as I can tell there are no Boolean search options in here either.
    iTunes 10.1 (54)

    Mad.Macs wrote:
    Thanks,
    I know Smart Playlists is a workaround for this, but that is about that is about 6 clicks plus typing to accomplish what could be done by simply typing in "hem" in the search field. If you use Smart Playlists for this, you would also need to go back and delete the playlist when you are done.
    Yep, like I said I leave it there for next time....
    I wonder why they would leave what is now a universally understood search option out of iTunes?
    Who knows? Feature requests go to iTunes Feedback.
    tt2

  • No Boolean searches for Endnote references in Pages?

    Dear All,
    I use Endnote heavily in technical papers and grants and have tried the new Pages 09 with Endnote X2. I really like Pages since it handles integrated text and graphics so well whereas Word really does not do that well. However,the Endnote search function in Pages appears to be quite limited, as far as i can tell, to a single word or phrase. It does not appear possible to search, for instance, for an author and a word in the title to narrow the search results. So if I want to search my Endnote database of references for all papers with "Smith" as author and that also contain "cholesterol" in the title I can't do it. Am I correct in assuming that this can't be done with the Pages search engine? Also, there does not appear to be a way to insert references from Endnote directly, so I can't do the search in Endnote and insert the reference into Pages. I would love to be wrong. Thanks in advance for any help!

    You are correct that there doesn't seem to be a Boolean search function from within Pages.
    In Endnote X2 itself, if you use the quick search function you can search author & title or author & title & keyword etcetera. For example, I put in Shakespeare as author and Hamlet as title and came up with two references in my library. I then generated a subject bibliography and inserted that into the Pages document. It is also possible to save references into Groups. There is quite a lot on managing Groups and sub-groups in the Endnote help menu.
    Hope that helps.

  • Search Option in JSP page

    Hi all,
    Any one can help me to do the search option in JSP pages.
    regards,
    Bala

    You need to index the page contents and store it somewhere (database, textfile, binaryfile, etc) and write code to crawl in the index. You can write it all youself, but as I guess that you're not very skilled to do that, it might be worth to take a look for several 3rd party Java Search Engine API's:
    http://www.google.com/search?q=java+search+engine+api

  • I'm not able to do the DELETE and the SEARCH options on my list ( HELP!! )

    import java.io.*;
    public class StudentContactManager
    public static void main(String[] args) throws IOException
    char userSelection;
    final int maxStudents = 10;
    String [] Lname = new String [maxStudents];//LName= Last Name
    String [] FName= new String [maxStudents];//FName=First Name
    String [] En= new String [maxStudents];//En = Enrolment Number
    String [] PhoneNo= new String [maxStudents];
    int activeEntries = 0;
    boolean found = false;
    //================================
    System.out.println ( "1 - Initialise contact detail list" );
    System.out.println ( "2 - Display contact details list" );
    System.out.println ( "3 - Insert new entry into cotact detail list" );
    System.out.println ( "4 - Delete entry from contact detail list" );
    System.out.println ( "5 - Search cotact detail list" );
    System.out.println ( "Q - Quit" );
    System.out.print ( "Option : " );
    userSelection = Text.readChar ( "Enter option" );
    while ( userSelection != 'Q' & userSelection != 'q' )
    switch ( userSelection )
    case '1': activeEntries=0 ;
    break;
    case '2': if (activeEntries > 0)//IF contact detail list contains entries
    System.out.println("\tEnrolment Number\tFirst Name\tSecond Name\tTelephone Number");
    for (int i = 0; i<activeEntries; i ++)//FOR each stored contact
    {//DO
    System.out.println();
    System.out.println("\t"+En[i]+"\t"+"\t"+FName[i]+ Lname[i]+"\t"+"\t"+PhoneNo);//Display one/current contact detail
    }//END-FOR
    else
    {// ELSE
    System.out.println("Contact detail list empty");//Display �Contact detail list empty� message
    }//END-IF
    break;
    case '3': if(activeEntries<maxStudents)
    En[activeEntries]= Text.readString("Enter enrolment number");
    found = false;
    int i = 0;
    while ( !found && i < activeEntries)
    if (En[i].equals(En[activeEntries]) )
    found = true;
    else
    i++;
    }//end-if
    }//end-while
    if (found == false)
    FName[activeEntries]=Text.readString("Enter first name");
    Lname[activeEntries]=Text.readString("Enter last name");
    PhoneNo[activeEntries]=Text.readString("Enter telephone number");
    // Insert new contact details into contact detail list
    activeEntries++;
    else
    System.out.println("Enrolment number already exists");
    else
    System.out.println("Contact detail list full");
    break;
    case '4': Text.showMessage("Selected Option 4");
    break;
    case '5':Text.showMessage("Selected option 5");
    default: Text.showMessage("invalid selection, Please input a valid option");
    break;
    }//switch
    userSelection = Text.readChar ( "Enter option" );
    }//while
    System.exit(0);
    }//main
    }//StudentContactManager
    //===============================================================================
    I need help with case 4 and case 5...the search option should include while statement. and the 5th case is the delete option
    Thanks guys =).

    Please use the code tags when posting code (there is a button on the posting page for them). It would also help if you told us what you are trying to do, what error you are getting, and what you expect to get.
    If you are just asking us to write the code for you, then you are in the wrong place.

  • Error using 'Search' option in Planning.

    Hi,
    when i expand my webforms list on the left side of the Planning interface i am able to see all the folders expected.
    on selecting one of those folders say 'x' i get a list of forms under 'x' which is fine .
    But when i type the name of webform which is placed under folder 'x' in Search option which at bottom right side of the planning interface,
    I get an the error ' exception occured. you dod not have sufficient access to view this page'.
    But the point over here is if i am able to see and access the webform while searching for same webform why i am i getting this error.
    can anybody help me on this?
    Thanks
    NJ

    Hi,
    when i expand my webforms list on the left side of the Planning interface i am able to see all the folders expected.
    on selecting one of those folders say 'x' i get a list of forms under 'x' which is fine .
    But when i type the name of webform which is placed under folder 'x' in Search option which at bottom right side of the planning interface,
    I get an the error ' exception occured. you dod not have sufficient access to view this page'.
    But the point over here is if i am able to see and access the webform while searching for same webform why i am i getting this error.
    can anybody help me on this?
    Thanks
    NJ

  • When I open a new tab I would like it to open to either my home page or a search page, can this be done?

    As of right now when I open a new tab it is a blank page. I would like a new tab to go right to my home page or open a search option. I could not find a way to make Firefox do that. Is it an available option?

    use this add-on:
    https://addons.mozilla.org/en-US/firefox/addon/newtaburl/
    thank you
    Please mark "Solved" the answer that really solve the problem, to help others with a similar problem.

  • How can we customize the no of rows in Search options set?

    Hi all,
    I am using EP6 SP14, and i need to display the news from a folder based on a filter criteria ( like regions, etc) i am using a KM search iview with a query to search the items of the folder and the corresponding search options set limits the no of rows to a min 5 but i need only 3 items to be displayed with the page links to the browse the rest of the news. Can anyone suggest me if there is any way of customizing the no of rows or else i am thinking of using a KM navigation iview and using the corresponding query but strangely the layout doesnt work.....Anything i need to do more to limit the no of items to be displayed?
    Help would be greatly appreciated ,
    Santosh Kumar
    Edited by: Santosh Kumar Adapa on Nov 11, 2008 8:16 AM

    Hi Santosh,
    how about developing your own search?
    These blogs gives you a nice introduction of how to implement
    [How to write a Search Application using the KM Indexmanagement API for TREX|https://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/5586]:
    [Using the KM Indexmanagement APIs for searching with TREX|https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9237e490-0201-0010-f3a1-9a322ccbd8b1]
    Best regards,
    Denis

  • How to perform Boolean Search?

    Hi-
    I have an indexed folder on my hard drive that I frequently search using Acrobat 9 (standard). I am able to use it for single-word searches only and I want to be able to input more intricate searches as Acrobat teases me that are possible.  I understand boolean principles but I am unable to apply it in my searches-nothing works!. Can someone who is knowlegable about this aspect of Acrobat please give me a good reference specifically for Acrobat searches (not general boolean searches) for advanced index searches, and also as an example, how would I input the following search: I want to find the words"Material" AND "Disposition" separated by no more than 50 characters.
    Thank you very much in advance.
    -Ben

    For the specific example:
    Open Advanced Search (Edit->Advanced Search)
    Click "Show more options" at the bottom of the dialog
    In the advanced UI, select the folder where your files are
    In results containing, select match all words
    In the options, select Proximity
    The default for Proximity searches in 900 words. You can change that in Edit>Preferences>Search>Range of words for proximity searches.

  • How to use search option using TREX.

    How can i have a search option in the portal page where in a user types for some keyword and the results are displayed accordingly.
    Thanks
    Shreya....

    Shreya,
    http://help.sap.com/saphelp_erp2005/helpdata/en/72/b595166625664fbdc110d54639f27b/frameset.htm
    Maybe that link will help.
    Regards,
    Keith

  • How do I create a search option?

    Hi,
    I am new to the web design world, but I do basic web
    maintenance for a company that needs a search option on it's
    homepage. The company sells buses and wants visitors to the site to
    be able to look for, if need be, a particular bus by searching for
    the corresponding stock # instead of having to look through the
    whole inventory list to find it. I've gotten as far as creating the
    search forms on the homepage but, I get totally lost trying to set
    up the results page, etc. Our databases are all on our in house
    servers, so I don't believe I need out-sourced data storage
    (MySQL.com?)
    I know there's probably many more bits of info I need to
    provide in order to recieve a full answer, so any suggestions to
    set me on the right path to being able to provide that info would
    be great!:)
    Thanks so much...

    You can check out
    http://www.wrensoft.com/
    Zoom Search engine - allows you to create a search function
    on your site.
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.DreamweaverResources.com
    - CSS Templates|Tutorials
    http://www.csstemplates.com.au
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "blayson" <[email protected]> wrote in
    message
    news:eabh8k$54k$[email protected]..
    > Hi,
    > I am new to the web design world, but I do basic web
    maintenance for a
    > company
    > that needs a search option on it's homepage. The company
    sells buses and
    > wants
    > visitors to the site to be able to look for, if need be,
    a particular bus
    > by
    > searching for the corresponding stock # instead of
    having to look through
    > the
    > whole inventory list to find it. I've gotten as far as
    creating the
    > search
    > forms on the homepage but, I get totally lost trying to
    set up the results
    > page, etc. Our databases are all on our in house
    servers, so I don't
    > believe I
    > need out-sourced data storage (MySQL.com?)
    >
    > I know there's probably many more bits of info I need to
    provide in order
    > to
    > recieve a full answer, so any suggestions to set me on
    the right path to
    > being
    > able to provide that info would be great!:)
    >
    > Thanks so much...
    >

  • Exclude Master Pages From RH8 Search

    Is there a way to exclude master pages from RH8 searches? There is no option in the Master Page properties as with topics.
    What I did: I created a Master Page to add a "Download PDF version" link to the PDF version of the Help, in the same way that  RJ Jacquez did in his "Web 2.0 Documentation using Adobe AIR and RoboHelp 8 OnDemand Recording" tutorial. The difference is that Jacquez's sample used an image as the link, while I used text.
    Problem: "Download PDF version" is prepended to all search results (in the context line).
    The obvious workaround is to replace the text with an image representation instead. But I thought I would ask the question about master pages and searches anyway.

    Hi Jason
    I think you misunderstood me. Note that Master Pages may be used in different ways.
    They may be used as a starting off point for a topic. You create the topic, and much like a Word template, the Master Page partially builds the topic by having certain elements already in place. From there forward, you customize the topic to your needs. Subsequent changes to the Master Page have zero effect on any topics created from them.
    They may also be used to configure a Header and a Footer. You then associate the Master Page with the Header, Footer or both to several or all topics to give the associated topics the Header or Footer information from the Master Page. In this case, subsequent changes to the Header or Footer in the Master Page DO actually appear in all associated topics.
    I was talking about the latter option. I wasn't suggesting you move things into the HTML Head area of the topic.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • I keep getting the Firefox start page with Google search. How do I get my homepage back?

    When I click the Mozilla Firefox icon, instead of my homepage I get a starter page with Google search. How can I get rid of the starter page and get my homepage back?
    == This happened ==
    Every time Firefox opened
    == Started about a week and a half ago.

    Hello Linda.
    I fear your problem may be deeper than your homepage gone missing, but you can change your homepage easily by going into Tools > Options > General and entering the address you want in the "Home Page" field.
    I should warn you, however, that the version of Firefox you are using at the moment is outdated and is no longer supported. Please install the latest version for maximum speed, security and functionality. It's completely free, as always. You can get it through Firefox update service (Help > Check for updates...) or at www.getfirefox.com

  • Search option in 11g

    Hi All,
    In 11g, we have the search option. There are list of values like Action, Analysis, Agent, KPI, Filter...
    I want to customise the list... remove some...
    Can anyone guide me to which file i should be looking into.
    Thanks,
    priti

    Hi,
    Try this-
    Copy the complete default page javascript.
    Right click on the dashboard page and view source.
    Then if you search the list options in the search, you can find all the values. There you can customize the list values.
    Now copy this javascript code and paste it in the separate text in the page and enable the HTML check box.
    But remember this includes lots of trial and error method.
    Regards
    MuRam

  • How to add a Search option?

    Hi, I want to add a "search option" on my website. It would
    be an internal search, with information that I will provide. I
    don't know how to start. I have looked around this forum and some
    other sites and it is not clear to me if I can do it with html. Any
    good books or tutorials that someone can recommend I would
    appreciated. I would like to say that all my website is based on an
    html template.....could this work for a "search option"?.
    Thanks in advance.

    seems that
    ZOOM search might be the
    appropriate solution, because it´s capable to search static
    web pages as well

Maybe you are looking for

  • Canon ir c3380 driver doesn't show up in "Add printer"

    After installing Mac OS X v10.6. My Canon IR C3380 no longer shows up. I've uninstalled all previous canon drivers per PAHU's direction and installed the latest driver found on Canon's website UFRII_v2.21. Still no luck when I try to add the printer.

  • How to delete or remove a SWCV?

    Hi everyone, I have created some test SWCV, but now I need to remove them from the Object List in the Design and Configuration Screens. How do I do it? Thank you, Felipe

  • Challenging issue with JDBC sender adapter

    Hello Guys I have this requirement From Oracle Database I have to read to tables  one for the header and one for the detailes and map the result to one RFC. I have only  worked with one table at the time with the JDBC sender adapter but never with 2 

  • How to make the payroll field in the assignment screen mandatory using personalization ?

    I am trying to make the payroll field required in the assignment screen using personalization , but it's not working, can anybody assist me ? Thanks.

  • Portege 7200 doesn't recognize external memory

    I had downloaded Windows XP on my Portege 7200 (with 256 MB external memory) and it worked well. Suddenly, it started overheating and was extremely sluggish. I reformatted the disk, downloaded XP again and it appears to work well, even though slowly;