How do i use math type equations in pages?

I can't get my math equations to work when im in pages

That's not correct -- Pages 5.0 does work with MathType 6.7e. (You didn't say what version you're using, but I'll assume Pages 5.0.) With MathType installed, there should be an Insert MathType Equation command in the Edit menu of Pages.
However...
That's not to say the marriage of Pages and MathType is perfect. We're hearing reports that some people are having no trouble at all, and some people aren't able to edit old equations, while some people can edit old equations but can't insert new ones. Some customers have reported that if they open Pages first, then MathType, it doesn't work, but if they open MathType before Pages, it works.
We don't have any explanation for all of this. Many times it's due to the computer's software configuration, but since Pages 5.0 requires a fairly new Mac running OS X 10.9 Mavericks, there's not much that can go wrong with the configuration. We're investigating it, but you should also let Apple know if you're having problems. You can do this very easily with their Pages feedback form: http://www.apple.com/feedback/pages.html

Similar Messages

  • How do i use favorites on my home page

    how do i use favorites on my home page?

    If you mean the Blank starting page for Safari, you can tap open  the box with the arrow ion Safari when visiting a Page to Bookmark it and add it to the Favorites list. It will then appear in the Favorites start page for Safari when you open a new tab.
    If you mean your Phones home screen where your Apps are you can use the same process except tapping on Add to Homescreen instead of Bookmark.

  • How Can I use "textBee" Attribute of  xhtmlb:pager

    Hi everyone...
    I used "textBee" attribute like below...
    DATA: bee TYPE REF IF_BSP_BEE.
    DATA: html_bee TYPE REF TO CL_BSP_BEE_HTML.
    CREATE OBJECT html_bee.
      html_bee->add( html1 =
                                 html6 =  ).
    bee = html_bee.
                    <xhtmlb:pager id     = "pg1"
                                  text   = "Page [$vIndex$] of $vMax$"
                                  textBee   = "<%= bee %>"
                                  vMax   = "<%= lines( itab ) %>"
                                  design = "VERTICAL_SIMPLE+INDICATOR" />
    It does not work... How can I use this???

    Hi,
    Did you check things like
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bsp/htmlb&
    http://help.sap.com/saphelp_nw2004s/helpdata/en/0d/3ff4ac67a5b14e8cd260d7b42f0f06/content.htm
    http://help.sap.com/saphelp_nw2004s/helpdata/en/28/4bae407e69bc4ee10000000a1550b0/content.htm
    Eddy

  • How do i use Connection pool in JSP pages

    Hey everyone,
    I am using a connection pool in my web application. I am using DbConnectionBroker from Javaexchange.com. It has a class that creates a connection pool available for the servlets. I am trying to figure out that how to use connection pool within the JSP pages if I want to connect to the database. In the servlets i am using DBConnectionBroker pool = (DbConnectionBroker) getServletContext().getAttribute("dbPool") to get database connection. How Can i use this in JSP page to get a db connection.
    Thanks

    If the reference to the connection pool is already stored as an ServletContex attribute, try:
    <jsp:useBean id="dbPool" scope="application" class="com.javaexchange.dbConnectionBroker" />
    <%
    Connection con = dbPool.getConnection();
    %>

  • How do I use the french version of pages?

    I bought pages from the app store.  I was downloaded in english.  how do i use the french version?

    Apologizes to English users but it seems that the question was posted from France.
    Bonjour
    Pages s'adapte automatiquement à la langue qui se trouve en première position dans la liste disponible dans la Préférence Système "Langue et texte"
    Avec la configuration ci-dessus, Pages fonctionne en Français.
    Je vous remercie car votre question m'a permis de remarquer que j'ai oublié de supprimer quelques langues installées dans le seul but de répondre à une question posée récemment dans un forum.
    Yvan KOENIG (VALLAURIS, France) samedi 5 novembre 2011 17:39:15
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How I cant use 2 Type of rate in FM CONVERT_TO_FOREIGN_CURRENCY

    Hi,
       I need 2 types of rate for a same CURRENCY, for the use of FM CONVERT_TO_FOREIGN_CURRENCY, in some one case I need an rate and in other case other rate.
      Then how to change the type of rate or create another in thys FM, thys is the source code:
    function convert_to_foreign_currency.
    ""Interfase local
    *"  IMPORTING
    *"     VALUE(CLIENT) LIKE  SY-MANDT DEFAULT SY-MANDT
    *"     VALUE(DATE) LIKE  SYST-DATUM
    *"     VALUE(FOREIGN_CURRENCY)
    *"     VALUE(LOCAL_AMOUNT)
    *"     VALUE(LOCAL_CURRENCY)
    *"     VALUE(RATE) DEFAULT 0
    *"     VALUE(TYPE_OF_RATE) DEFAULT 'M'
    *"     VALUE(READ_TCURR) DEFAULT 'X'
    *"  EXPORTING
    *"     VALUE(EXCHANGE_RATE)
    *"     VALUE(FOREIGN_AMOUNT)
    *"     VALUE(FOREIGN_FACTOR)
    *"     VALUE(LOCAL_FACTOR)
    *"     VALUE(EXCHANGE_RATEX)
    *"     VALUE(DERIVED_RATE_TYPE) LIKE  TCURR-KURST
    *"     VALUE(FIXED_RATE)
    *"  EXCEPTIONS
    *"      NO_RATE_FOUND
    *"      OVERFLOW
    *"      NO_FACTORS_FOUND
    *"      NO_SPREAD_FOUND
    *"      DERIVED_2_TIMES
    Tks to all.

    Hi,
    Try using this FM instead FI_CURRENCIES_CONVERT. This FM has the option of providing more than one currency rate type KUTY2 and KUTY3.
    Do let me know if this helped you.
    Regards,
    Hari

  • How can I use authentication type in sending/receiving a message

    Dear all,
    I am building a mail client program. I have a problem: I don't know use javamail to authenticate to mail server in while send/receive messages. I know some authentication types as PLAIN, LOGIN, CRAM-MD5, DIGIT-MD5, NTLM and GSSAPI. and I tried use "mail.imap.sasl.mechanisms" property, but it do not work. Any suggestion is helpful for me. Thanks!

    Thank for quick your reply,
    I checked with Imap protocol to receive message. The mail server supported authentication type: Plain and Login. Below is code:
          Properties props = System.getProperties();
          String socketFactoryClass = "javax.net.SocketFactory";
          String host = account.getIncomingHost();
          int port = Integer.valueOf(account.getIncomingPort());
          String fallback = "mail.imap.socketFactory.fallback";
          String imapSocketFactoryClass = "mail.imap.socketFactory.class";
          String emailAddress = account.getIncomingUser();
          props.put("mail.mime.base64.ignoreerrors", "true");
          if (account.isIncomingSsl()) {
            MailSSLSocketFactory socketFactory = this.getSSLSocketFactory(host);
            if (account.getSecureAuthsIncoming().equalsIgnoreCase("starttls"))
              props.put("mail.imap.starttls.enable", true);
            else
              props.put("mail.imap.ssl.enable", "true");
            props.put("mail.imap.ssl.socketFactory", socketFactory);
            props.put("mail.imap.sasl.mechanisms", account.getAuthMechsIncoming());
          props.put(fallback, "false");
          props.put(imapSocketFactoryClass, socketFactoryClass);
          Session session = Session.getInstance(props, null);
          String protocolName = "imap";
          if (Utils.isGmailAccount(emailAddress))
            protocolName = imaps;
          IMAPStore imapStore = (IMAPStore) session.getStore(protocolName);
          try {
            imapStore.connect(host, port, emailAddress, account.getIncomingPassword());
          } catch (Exception e) {.....}account.getAuthMechsIncoming() return authentication types, this instance is Login or Plain(as I tested). By the way, I have a problem how to check authentication types supported by server(as Evolution Mail on Ubuntu has)?. sorry for my English. Thank for your consider time.

  • How do I use Object Type

    Hi,
    I have the following object type
    create or type address_type as object
    (street varchar2(10), no varchar2(10));
    and table: create table test(id integer, address address_type)
    How can I insert values in my table test using apex?
    Thank you

    Hi,
    Both the above suggestions do not work
    I have say an ITAB of type SPFLI.
    How do I convert this data into xstring type?
    Also does my ITAB have to be a specific type for me to get this to work?
    Cheers
    Kiran

  • How can I use object type in Jdeveloper 11g?

    Dear friends
    I made some object types(Database layer) and each one refer to functions or procedures to generate table or view, for instance in one of my project I could make a View Object with this function and generate a table:
    Select * from table (genarate_emp(2019))
    In this sample I used a static value (2019) and I did it perfectly, but I want to make a table with dynamic value for instance I would like to set partial trigger of this view object and get dynamic value from the other view object.
    Please help me if you have any suggestions.
    Best regards,
    Babak Saraie

    Hi Babak
    It's a common requirement on posting to this forum that you describe which version of JDeveloper you're using and what technologies (obviously ADF BC in this case).
    For making the static value dynamic within your View Object, are you familiar with the View Object bind variables/bind parameters? This will allow you to define a named variable in your VO that you can set programmatically or even let the user set. Play around with those first and see if they solve one part of your problem, then come back to the forum for the second part.
    Regards,
    CM.

  • How to insert a math symbol in a pages document

    I have a nonstandard math symbol to insert inot a pages document. Please explain how to do it.

    If it is really non-standard, like not in Unicode, then you would have to use an image.  For things in Unicode, try an app like Cymbol or search the app store for "equation".

  • How do I use harvard outline format in pages?

    I do not know how to use this outline to return to previous levels I.E.
    I. samplesample
         A. SAMPLE
              1. Sample
                   a) sample
                   b) sample
         ?. (This will not go to B.)
    ? (this will not go to II.)
    How do I make this work?

    Hi Allan,
    Basic steps for the question you ask:
    You'll find more about creating an outline in the article Creating an Outline, in Chapter 5 of the Pages '09 User Guide. The guide is available for download via the Help menu in Pages.
    Regards,
    Barry

  • How do I use one layer for multiple pages?

    I've been using Photoshop to create a series of web pages. I have about 20 such pages right now.
    Unfortunately, I need to change the navigation menu that is found on all 20 pages.
    To make these changes, do I need to change 20 different files? Or is there a way to link one layer group to multiple PSD files so that editing it once results in it changing on all 20 pages?
    Thanks,
    C

    You'll have to make some sort of change to each document, but it should only take a few minutes when there's only 20 of them. You edit the group in one, then for each of the others, simply duplicate or drag the edited group into it and delete the old group.
    There is also the option of structuring your workflow with Smart Objects which can be refreshed in each document with a common document containing only the menu group. For linking of Smart Object content, there is a third party plug-in but I don't know whether it is reliable.

  • PREVIEW  How do I use it to assemble PDF pages into a book?  I used to be able to do it, but now the pages do not follow on one after another.

    I used to be able to load PDF pages into Preview to make a book and to see the pages follow one after the other.  Now the pages stay separate even when the file is saved and opened in either Adobe reader or Preview.

    Are you going to the thumbnail view and dragging the separate PDF's onto the top one so they combine?

  • How can I use a word file without pages changing the file

    I want to edit this word file I created, but pages either can't open it because i sent it via email from google docs, or it will change it completley. I don't want to get Office for mac, so What Do I Do?

    http://www.libreoffice.org
    It's open-source and quite nice and full-featured

  • How to insert and edit equations with Math Type in IBA??

    Hi,
    I want to add  fractions in IBA with Math Type.
    Here is what i found:
    And here is the General Preferences
    Like you see, i can't select Insert and edit equations with Math Type, it's grey.
    How can i use Math Type?
    Tx

    We have an article that describes not only how to use MathType with iBooks Author (iBA), but also using LaTeX and MathML. http://www.dessci.com/en/support/mathtype/works_with.asp#!target=ibooks_author_m ac
    It's important to note that no matter how you get equations into iBA, all equations are represented as MathML in the published iBook. (except, obviously I hope, equations that are simply images that you insert)
    If you need more help, feel free to ask here.
    Bob Mathews
    Design Science

Maybe you are looking for