To achieve the following custom template

Hi all,
I am trying to achieve the following layout for my word report with substantial amount of accompanying images. Pardon me that my enquiry looks like a book. ;-]
1.
- I need a LANDSCAPE orientation with two vertical columns. The columns are of different width, LEFT column takes 3 quarter of page; RIGHT column 1 quarter of page. I wish for this setting to run through out the whole document. [I know how to do this.]
- However, i only intend the LEFT/ 3 quarter column to carry the BODY TEXT, leaving the RIGHT/1 quarter column to carry accompanying IMAGES (they relate to body text next to them, and should MOVE with the body text). Read on and you will know why INLINE in INSPECTOR does not work.
- This means, all my RIGHT column through out the doc is only to be filled with images ONLY IF required by the body text next to them. If there is NO accompanying IMAGE on a page, the RIGHT column is intended to be EMPTY.
- To achieve the above, i tried [BREAK COLUMN]. If i understand correctly, it means after my body text fill up the LEFT column on each page, this setting help me to SKIP the NEXT column, which is always the right column. Correct me if i am wrong because in fact i dont quite get the DIFFERENCES of LAYOUT BREAK, SECTION BREAK, COLUMN BREAK etc.
- But the complicacy came in when my right column is intended for images. The [column break] will push my image to the next column. Or sometimes, to my confusion, it jumble up the whole thing into a mess.
2.
- I then tried an ALTERNATIVE setting. Instead of the above setting, could the following alternative be easier: that i set the right MARGIN to be taking up 1 quarter of the page width, hence leaving the body text to occupy 3 quarter of page.
- I then, drag drop image along the 1 quarter MARGIN? But aren't margin created to be EMPTY ZONE? I have tried dropping images in the margin area and it works, but i am afraid in the end teh whole doc will jumbled up? The images jumps to a random chaos because nothing is supposed to occupy MARGIN?
- In all, i need the body text to flow continuously ONLY on the LEFT column of all pages. And inserted images on right column should move with body text. The above two solutions does not seem correct. And i skim thru the ready-made templates Mac offers, none of them seem to fit either.
What is the best way to do this?
_Y

I think the second solution, with the graphics displayed in the margin, will work better. This way you don't have to keep track of column breaks. The graphics are not actually IN the margin, they are just displaying there. Every graphic is 'anchored' to some point in the text. If it is an 'in-line' graphic the graphic will move along with the anchor point just like a character of text. If it is a 'floating' graphic, it is supposed to keep its relative position on the page regardless of whether the text moves or not.
If your graphics move or jump when you insert a graphic with the the column format, it is probably because you are inserting the column break BEFORE its anchor position. If you turn on "Show Invisibles" you can more easily track where your paragraphs and anchors are.
BTW, the differences among the 'BREAKS' are these:
Layout Break - starts a new SECTION on the same page. It is known in other applications as a Continuous Section Break
Section Break - starts a new SECTION on a new page.
Column Break - ends the current column and starts a new column.
The difference between a new SECTION and a PAGE or COLUMN is that a Section can contain different headers, footers, columns and other layout options than the previous or subsequent sections. A new Page or Column uses the same layout settings as the current Page or Column.
As for why your graphics jump around - I notice many complaints here about graphics moving about whether they are place in-line or as floating objects. I don't use them often enough to offer a solution, but someone else may.
Good luck,
Terry

Similar Messages

  • I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    I am changing from Word to Pages. I have created my custom template with all my styles etc and that is what comes up when I go for a New Document. Fine. How do I get it to use the same Custom Template when I use Pages to open a Word document?

    The template is a document in itself, it is not applied to an existing document whether it is a Pages document or a Word document converted to a Pages document.
    You would need to either copy and paste content, using existing styles, or apply the styles to the converted Word document.
    You can Import the Styles from an existing document and those imported Styles can be used to override the current document's styles:
    Menu > Format > Import Styles
    The process is simplified if the styles use the same names, otherwise you will need to delete the style you don't want and replace it with the one that you do want when asked, then the substitution is pretty straightforward.
    Peter

  • How to achieve the following logic

    I have a target and a source table.
    CREATE TABLE scd_tgt(
    col1 VARCHAR2(10) not null,
    col2 VARCHAR2(10) not null,
    start_date DATE not null,
    end_date DATEnot null
    INSERT INTO scd_tgt VALUES('100','AKS','1-JAN-2010','9-SEP-9999');
    INSERT INTO scd_tgt VALUES('101','Singh','1-JAN-2010','9-SEP-9999');
    CREATE TABLE scd_src(
    col1 VARCHAR2(10) not null,
    col2 VARCHAR2(10) not null
    INSERT INTO scd_src VALUES('99','Kumar');
    INSERT INTO scd_src VALUES('100','Abhijit');
    INSERT INTO scd_src VALUES('101','Singh');
    Now, I have to perform update/insert data in scd_tgt using source data in scd_src based on the following rules:
    1) INSERT any records from the SOURCE that aren't already in the TARGET, based on a col1.
    2) If the TARGET has a record present in SOURCE (based on col1) and col2 of TARGET does not match with col2 of SOURCE then UPDATE the end_date to SYSDATE - 1. Proceed to Step 3.
    3) INSERT the record from #2 into TARGET. Set start_Date as SYSDATE and end_date as '9-sep-9999'
    Can this be achieved using MERGE? I am using 10.2g
    After executing the steps scd_tgt should have the following data
    99     Kumar     18-JUN-10     09-SEP-99
    100     AKS     01-JAN-10     17-JUN-10
    100     Abhijit     18-JUN-10     09-SEP-99
    101 Singh 01-JAN-10     09-SEP-99

    Hi,
    With a merge it's not possible if you want to to update and insert (or insert/update) at the same time within the same condition (when matched or when not matched parts of the stement), what's authorizzed with a merge is:
    an update + a delete in the "when matched" clause
    an insert in the "when not matched" clause
    So one solution could be that you use two differents DML op:
    UPDATE scd_tgt
       SET end_date =   TRUNC(SYSDATE)
                      - 1
    WHERE col1 IN(SELECT col1
                   FROM   scd_src)
    INSERT INTO scd_tgt
       SELECT col1,
              col2,
              TRUNC(SYSDATE),
              TO_DATE('09-sep-9999', 'dd-mon-yyyy')
       FROM   scd_srcIf the number of rows generally updated by the 1st statement is low (comparing to the volume of the scd_tgt table) an index on col1 in(scd_tgt table) would probably be benifical...
    If you never delete from scd_tgt and if the performance goal is qiete important, then consider an /*+ APPEND */ hint with the insert ..
    (depends on how many rows are inserted each time this code is ran).
    As often this is not the only one solution but this the most simple one
    -> In development always remind this addage: the most is simple the code is the better is (for everyone!) ..

  • Grep command to achieve the following - Almost got it

    Hi
    I have been on here before and received great help with grep styles but have one that I can't find a solution for from online resources
    I am using the following grep command to add a descriptor to a event.
    My text looks like this
    9.00     Football
    Grep command is
    (\d+\.\d+\t)(Football)(.*\r.+\r)
    $1$2$3Play football.\r
    Which acheives...
    9.00     Football
                Play football
    Problem is
    Some of the titles are
    9.00   Sunday Football
    9.00   Junior Football
    9.00   Junior 5 a side Football
    I ideally need a grep command that will do exactly the same but ignore Sunday, Junior, Junior 5 a side (but leave it in) I can't add extra greps as there are too many
    Is there a command that will find the digits (ignore everthing until football) and add the descriptor
    Hopefuly it is just a little addition to the grep but I can't find a solution
    Any help much appreciated

    I'm a little unclear
    when starting with:
    9.00   Sunday Football
    9.00   Junior Football
    9.00   Junior 5 a side Football
    what do you want the result to be? This, or something else--
    9.00   Sunday Football
              Play Football
    9.00   Junior Football
              Play Football
    9.00   Junior 5 a side Football
              Play Football

  • Using RegEx to achieve the following

    Here is what I want to achieve:
    INPUT:
    access-list 99 permit 172.0.0.0 0.255.255.255
    access-list 99 permit 192.168.0.0 0.0.255.255
    access-list 99 deny any
    snmp-server community Cust1 RO 99
    snmp-server community Cust1-RW RW 99
    snmp-server community Cust1-RW RW 100
    The intent is to find the any snmp-server line that has a number at the end which is not defined in the above set of lines. In the above example we should be able to find the last line.
    How can we do this in pure java regex.
    I highly appreciate any response on this.
    Thanks
    Sanjeev

    Hi,
    I don't know what you mean by "pure java regex". But you could try it with something like this:
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.util.HashSet;
    import java.util.Iterator;
    import java.util.regex.Pattern;
    import java.util.regex.Matcher;
    class RegEx {
        public static void main(String[] args) throws Exception {
            BufferedReader br = new BufferedReader(new FileReader("file.txt"));
            String line;
            HashSet set = new HashSet();
            Pattern p1 = Pattern.compile("access-list (\\d*) .*");
            while ((line=br.readLine()) != null) {
                Matcher m = p1.matcher(line);
                if (m.find()) {
                    String number = m.group(1);
                    if (!set.contains(number)) {
                        set.add(number);
            br.close();
            br = new BufferedReader(new FileReader("file.txt"));
            StringBuffer sb = new StringBuffer();
            Iterator iter = set.iterator();
            if (iter.hasNext()) {
                sb.append(iter.next().toString());
            for ( ; iter.hasNext(); ) {
                sb.append("|");
                sb.append(iter.next().toString());
            String regex = "snmp-server.* " + sb.toString() + "$";
            Pattern p = Pattern.compile(regex);
            while ((line=br.readLine()) != null) {
                if (line.startsWith("snmp-server")) {
                    Matcher m = p.matcher(line);
                    if (!m.find()) {
                        System.out.println(line);
    }Stefan

  • Q: Can Oracle Access Manage achieve the following? WS-Fed(RP) - SAML2(IdP)

    Can Oracle Access Manager do protocol translation and act as a gateway for multiple SAML2 IdP's talking back to a WS-Fed (RP/SP) ?
    <-> SAML2 (IdP) (multiple namespaces)
    WS-Fed (RP) <-> SAML2 (IdP) (multiple namespaces)
    <-> SAML2 (IdP)
    Sincerely,
    Adam

    Can Oracle Access Manager do protocol translation and act as a gateway for multiple SAML2 IdP's talking back to a WS-Fed (RP/SP) ?
    <-> SAML2 (IdP) (multiple namespaces)
    WS-Fed (RP) <-> SAML2 (IdP) (multiple namespaces)
    <-> SAML2 (IdP)
    Sincerely,
    Adam

  • SAP Cloud For Customer : How to change the Logo or Image into the Standard Form Template

    Hi Experts,
    I have requirement to change the standard template format.
    I have copy standard template and edit using Adobe Life Cycle Designer to change the logo / image.
    After changed and upload modified template and change the output setting for print i can able to see the changes but logo / image can not display.
    Can anyone have idea how to solve this issue ?
    Can we change the template within cloud system?
    If Yes than How ?
    Regards,
    Mithun

    The following are the instructions (November 2014 version of SAP Cloud for Customer)
    Edit a Form Master Template
    Overview
    As an administrator, you can edit existing form master templates. These are used to define the header, footer, and logos used in form templates. Form master templates also contain an e-mail disclaimer that is appended to automatically generated e-mails sent to business partners when a document is output from the system.
    Procedure
    1. Go to Application and User Management or Administrator Business Flexibility Master Template Maintenance .
    2. In the Master Template Maintenance view, select Form Master Templates from the Show menu.
    3. Select the master template you want to edit and click Edit.
    4. On the Form Master Template tab, do the following:
    Under Header, click Upload and browse to find the file you want as logo. Adjust the size and alignment of the logo, as required.The file formats .gif, .bmp, .jpg, .png, and .tif are supported. The logo should not be larger than 40 mm width x 20 mm height. If you upload a graphic that is larger than 40 mm x 20 mm, it is resized automatically.Select the Header Divider checkbox if you want a graphical divider to appear on your form.Under Sender Address, enter your company’s address. The sender address is shown above the recipient's address in a letter.Under Footer, choose the number of footer columns you want to display. Enter the footer text exactly as you would like it to appear on the form. You can maintain up to 4 footer blocks with a maximum of 10 lines per footer.Note that the width of each footer block is equally divided over the available space. If a line of text in the footer is too long for the current font size, the system will automatically enter a line break. If this automatic line break does not meet your needs, you may need to enter the text after the line break as a separate line.To maintain multiple languages, you must first add the language from the Add menu and then maintain the texts in that language by selecting the language from the dropdown list.
    5. Click the refresh button to preview your changes. From the dropdown list under Preview, you can select a country. The preview is then displayed using the country-specific template, for example, some countries do not use sender addresses or have different paper sizes.
    6. On the E-Mail Disclaimer tab, you can enter a disclaimer or other company-specific legal information.
    This text is appended to the main text body of e-mails that are created when a document is output by the system. It is not possible to create separate language versions of this text; therefore if your company uses multiple communication languages, you should enter all language versions of the disclaimer here.
    7. Click Save and Close.
    Result
    If required, you can now assign the form master template to a company/org unit and/or output channel. For more information, see the Master Template Maintenance Quick Guide.
    Note that master templates can be activated and deactivated for each form template in the Form Template Maintenance view. For more information, see the Form Template Maintenance Quick Guide.

  • How do I get the custom template working?

    Hi, I have asked this here before and got a half answer, but on trying the answer things didn't work out, so I'm trying again as I feel the previous thread has been lost.
    I want to create a custom list template so that I can display a list of News Announcements on a home page as described on this page Business Catalyst Help | Using custom templates for modules
    I have done all it says; created a list template and saved it as listHome.tpl in the Layouts/Announcement folder. On the page I have linked to it with the following code
    {module,announcement,a template=”/Layouts/Announcement/listHome.tpl”}
    But it doesn't generate a list, the page merely displays the code. Seems simple enough, yet it won't work. Can anybody tell me where I am going wrong please?
    Thanks

    Thanks Adam, yes, I was getting the raw code, but correcting the code to module_announcement has fixed that. However, I am now getting 'No News found' instead which is not what I want either. On the news page I am using {module_announcement,a,}  This gives me the list of news announcements using the original list template, which is what I want on that page, you can see it here News  But on the home page, using this
    {module_announcement,78981, a template=”/Layouts/Announcement/listHome.tpl”}
    I get 'No News found' as the output, I was expectign just the one news announcement with the id of 78981. Ideally I want the code to generate the latest 2 news announcements.
    (This has also been posted on Linkedin BC Cafe, what ever solution I get I will post here for future reference for others).

  • How to create custom audit rule for the following in jdeveloper ESDK

    Hi,
    I need customized audit rule which uses Oracle Jdeveloper 11.1.2.0 with ESDK extension. Can any one help me please.
    The following is the audit rule I need.
    I should not use any where "+" for concatenating more than one string in our project.
    How can I achieve this.
    Thanks in advance.
    Lakshmi Narayanan.

    Hi,
    see
    http://blogs.oracle.com/jdevextensions/entry/don_t_fear_the_audit
    http://blogs.oracle.com/jdevextensions/entry/don_t_fear_the_audit1
    Frank

  • I have several custom templates in the my templates/templates chooser. How do I remove and/or delete them.

    I have several custom templates in the my templates/templates chooser. How do I remove and/or delete them?

    Hi Muizen,
    Your remark that Yvan's "remarks are completely useless to (you)" may be correct, but that's hardly his fault.
    Your question was posted in the Numbers community, a place for discussions of issues and techniques specific to the Apple spreadsheet application Numbers, part of the iWork set.
    This community is one of several at the Apple Support Communities site, a place for discussion of technical issues specific to Apple hardware and software.
    Your question regarding removing unwanted templates, posted in the middle of a discussion of Numbers templates (with a side trip to templates made with Pages, the word processing and page layout application that is also part of the iWork set) contained no reference to any application other than Numbers having produced those templates.
    Yvan may have added 'unclearness' to your understanding of the issue, but the origin of that unclearness is your initial post. In case you've forgotten it, here is that post again, quoted in its entirety:
    "Hi Edgar,
    I am struggling to remove custom templates that I don't need.
    The advise is:
    Use the Finder to navigate to the templates and send them to the trash. Look in:
    Username/Library/Application Support/iWork/Numbers/Templates/My Templates.
    However after Application Support iWork does not show up.
    Do you have a solution?"
    Where in that post do you make it clear that the custom templates you are talking about are "MS Word" templates? Where do you even mention that fact?
    In your most recent post you state: "I tried this approach but reported that there is no iWork in my system."
    Actually, you did not report "there is no iWork in (your) system,"t. You did report that "iWork does not show up" when you followed the path given.
    You had made no mention to that time that iWork was not installed on your computer, and the fact that you had posted a question about removing templates in a forum(and in a discussion thread) specifically for one of the iWork applications would lead any reasonably intelligent reader to assume that the application was on your computer, and that, like the other users in this discussion, you were asking about Numbers templates, or at least about templates for one of the iWork applications.
    Given that assumption, and given that the supplied path was the correct path to a user's custom templates for numbers, the most likely explanation of iWork's name missing from the path would be the one Yvan assumed—a misstep by the user at the beginning of the path.
    Regards,
    Barry

  • How do you make a customized template?? When I customize an original template it does not apply it to the whole document! How do you apply style changes permanently to your document???

    When one customize text styles or spacing between paragraphs. How do you apply settings permanently to a document???
    Should you create a new template???

    Happily, when you edit a document created by a given template, the changes aren't stored in the template.
    If you want to get a template embedding your changes, you need to use :
    File > Save as Template
    then use the newly created custom template as starting point.
    Yvan KOENIG (VALLAURIS, France) dimanche 22 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My Box account  is : http://www.box.com/s/00qnssoyeq2xvc22ra4k
    My iDisk is : http://public.me.com/koenigyvan

  • Unable to execute the following sql statement in Jdev10g -- custom sql quer

    Hi All,
    I have requirement where I need to execute the below Query String through Jdev10g to Sql Server 2005.
    Query string -- select * from table where #InputString
    << Input String -- col3 like 'col%' and col1 like 'col2%' ...... >>
    Here the Input string will be generated by the client and the results will be transferred back to the client. Can any one help how to do this? Input string would like
    col1 like 'col%' and col2 like 'col2%' and so on.. and this is dynamic which can be changed in runtime like col3 like 'col3%' and col1 like 'col1%' and so on..
    I have tokenized the string and assinged the values and executed the custom string through Input parameters for all the fileds instead of only search string .. since table having so many null fields not receiving the exact row counts and records.. hence I have to pass only the Input string as I mentioned like Query String.. If some body got the same concern please let me know..
    Your help would be greatly appreciated..
    Thanks & Regards,
    Khasim

    Hi All,
    Even though the answer is a bit tedious by formulating the where clause with all fields and dynamic parameters, I achieved the goal. But we do have another option to use orcl:query-database in the transformation. But this one give tedious results when you are trying to achieve multiple rows from this. If some one have a better idea to utilize this query-database function, you are most welcome.
    Thanks & Regards,
    Khasim

  • How to make a custom template the default for Apple Mail (10.7.5)?

    Hi,
    I'm OK with making a new custom template in Apple Mail.  It shows up fine once under "custom" in the stationary pane (and once I take off signature in a new email).  But... that's a lot of trouble to go through everytime I want to send an email.
    So the question is: can I make my custom template my default for all my emails, unless I want to manually change it?  Seems like this should be possible but I can't figure it out and haven't run into any solutions (only on how to make a template).
    Do I really have to select it each time?
    Best,
    Joel

    As an FYI: I just solved the problem by going the "low road." I'll be a bit laborious in case someone else wants a solution at a later date (I know I Googled the topic and found nothing). I experimented by simply:
    Opening a new email message
    Selecting my custom template
    Copying the custom signature (Select All)
    Opening another new email message
    Selecting Edit on the Signature pulldown menu
    Hitting the plus symbol to create/add a new signature in the pane
    Pasting into the new signature
    Naming it
    Selecting "Choose signature" at the bottom of the signatures pane
    And violà!!
    It now appears as a possible selection *and* as the default.
    Better yet - it is now my default and will work as a reply to an email.
    I think I got it all right in the list above.
    OK, granted, this is a pretty simply signature - a list of my website, SoundCloud, twitter etc with those names in bold and a graphic of my color logo - but... it works! YMMV.
    Give it to Apple to make it so simple that any fool could do it (that would be me), you wouldn't need a "specialized" app, and - of course - there wouldn't even be instructions on how to do it!
    Best,
    Joel

  • Custom batch rename files with Aperture 3 in the following format: IMG_0023.cr2 to Smith_YYMMDD_0023.cr2?  I cannot find a way to structure the date in Aperture as such, as well as extract only the camera file

    Please advise how to custom batch rename files with Aperture 3 in the following format: IMG_0023.cr2 to Smith_120816_0023.cr2?  I cannot find a way to structure the date in Aperture as such (YYMMDD), as well as extract only the camera file (0023, for example).  Adobe Bridge CS5 can do this, but NONE of the Adobe software is retina optimized, and is terrible to look at.

    In Aperture you are limited to renaming files by the entries in the File Naming preset window.
    At what point are you looking to rename, import or export? It might be possible to do what you are looking to do external to Aperture either via a script or other software.
    regards

  • Has anyone seen the following on their WP? Message from webpage WARNING: Time Warner Cable Customer – Your Internet Explorer browser and  computer may be compromised by security threats. Call 844-600-6224 now for IMMEDIATE assistance.  OK

    Has anyone seen the following on their WP?
    Message from webpage
    WARNING: Time Warner Cable Customer –
    Your Internet Explorer browser and
    computer may be compromised by
    security threats. Call 844-600-6224 now for
    IMMEDIATE assistance.
    OK

    This sounds like a virus or malware program that has made its way onto your computer.  I would ensure you have the latest virus definitions on your computer and run a thorough (complete) scan of your system.  If this doesn't work, I would suggest  you use Microsoft's Malware Removal Tool.  You can download it at the link below.   Hope this helps.
    http://www.microsoft.com/security/pc-security/malware-removal.aspx

Maybe you are looking for