How can I lay out a newspaper look using a photo?

How can I lay out a newspaper look and incorporate a photo?
Content to include:  Michelson/Draper Weekender
                                   Nuptual Edition
date info
Headline
Photo
Articles
Schedule of events
Possibly be able to fold

I recommend Apple's Pages app.  Here is a screen shot from Pages' template chooser:

Similar Messages

  • How can I find out whitch table are used in whitch document?

    How can I find out whitch table are used in whitch document?
    In the table EUL5_DOCUMENTS are stored the Documents and in the table EUL5_OBJS are stored the tables. How can I query these tables together?
    Are there other possiblities?
    Thanks

    Hi Dierk
    Please take a look at this thread: Re: An EUL query to list out All the Columns  (Fileds) for each Workbook
    I think you may well find what you are looking for in the answer that I gave there.
    Best wishes
    Michael

  • I have my personal music (not purchased from Itunes) stored in two locations, on my PC and on an external HD. How can I find out which directory itunes uses to access this music? I am using Itunes version 11.4.0.18. Thanks

    I have my personal music (not purchased from Itunes) stored in two locations, on my PC and on an external HD. How can I find out which directory itunes uses to access this music? I am using Itunes version 11.4.0.18. Thanks

    Many thanks JEM24 for your help.  Ive just spent the best part of six hundred pounds on a new Sony Rx100m2 compact camera, so I have no interest in the Ipods camera at all really. I doubt Ill be watching many videos on it as Im very lucky in that I have a good Android tablet. Its more as a stock music player that Ill be buying the Ipod for, if indeed I do end up buying one. I dont like the idea of paying the exorbitant amount added for more memory space that Apple along with most other companies charge. In fact I read an article on this very subject just yesterday in the tech section of Flipboard. It stated in the article that in the case of the Iphone  the actual cost of each additional  gigabyte of storage  to Apple et al is something in the order of 60p.. This is certainly not reflected in the price us the customer has to pay at the till.. Its for this reason primarily that Apple in particular, because their products do not allow adding expandable memory of your own in the form of cheap to buy cards, that nobody in their right mind buys the 64gig etc Iphones..I am aware that we are discussing my potential purchase of an Ipod Touch here but you see my point. Many thanks again though for helping me.

  • How can I find out the number of pixels a photo has in i photo.

    How can I find out the number of pixels a photo has in iphoto.

    Do you mean in iPhoto on the MacBook Pro?
    The dimensions (width and height iin pixels)are shown in the "Info" panel - multiply the two numbers:
    Regards
    Léonie
    P.S: on an IOS device you see the same information in iPhoto, when you select the photo in an album and click th Info button ( i ).

  • How can i find out what app is using data at 5am

    i have used an unusual amount of data this month.  something on my phone is using data at 5am every morning.  its not me.  how can i find out what it is?

    The times reported for data usage on your bill do not necessarily reflect the time the data was actually used. The system gathers information from the cell sites and reports on a schedule.

  • HT204053 how can i find out which id i used to purchase an app?

    i can't update iphoto, imovie and garageband cause it says "sign in to the account you used to purchase it" but those were pre-installed when i bought my iMac and i don't have a second id. what can i do or how can i find out which is the right account for these apps?
    thanks in advance

    I also have a linked problem like that. I bought various apps under different ids and now I don't know how to sign in - where to sign in under the emails that I bought them on so i can't update my Pages app.
    Can anyone help us please?
    Is there a way to put them altogether now under my apple id with icloud?
    Thanks

  • Help! How can I lay out forms?

    Hi:
    I've tried everything and I just can't get Java to lay out a form for me.
    I'm currently using TableLayout:
    http://www.clearthought.info/software/TableLayout/
    I expect the buttons to be in the bottom right hand corner of the form.
    Only one shows up and it's apparantly over top the other one. They're at the top of the form.
    What am I doing wrong?
    public static void main(String[] args)
            btnOne = new JButton(" One ");
            btnOne.setPreferredSize(new Dimension(80, 25));
            btnTwo = new JButton(" Two ");
            btnTwo.setPreferredSize(new Dimension(80, 25));
            lbOne = new JLabel("Top Label");
            lbTwo=  new JLabel("Second Label");
           double size[][] =
                {{TableLayout.FILL, 200},
                 {0.05, TableLayout.FILL, 25}};
            pnExt = new JPanel(new TableLayout(size));
            pnExt.setPreferredSize(new Dimension(775, 575));
            double sizeLbl[][] =
                {{250},
                 {0.05, TableLayout.FILL, 25}};
            pnLabel = new JPanel(new TableLayout(sizeLbl));
            pnLabel.add(lbOne, "0, 0, l, t");
            pnLabel.add(lbTwo, "0, 0, l, t");
             double sizeBtn[][] =
                {{150},
                 {TableLayout.FILL, 25, 25}};
            pnButtons = new JPanel(new TableLayout(sizeBtn));
            pnButtons.setPreferredSize(new Dimension(125, 550));
            pnButtons.add(btnOne, "0, 1, r, b");
            pnButtons.add(btnTwo, "0, 2, r, b");
            pnExt.add(lbOne, "0, 0, l, t");
            pnExt.add(pnLabel, "0, 1, l, t");
            pnExt.add(pnButtons, "1, 0");
            fme = new JFrame("My Test");
            fme.setSize(800, 600);
            fme.getContentPane().add(pnExt, BorderLayout.WEST);    
            fme.show();
        }

    I've never used TableLayout, but here is some code for a common situation. Suppose you want components arranged like this:
    label component (say text field or button)
    label component
    label component
    import java.awt.*;
    import javax.swing.*;
    public class LayoutExample {
        public static void main(String[] args) {
            JPanel p = new JPanel(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.fill = GridBagConstraints.HORIZONTAL;
            gbc.anchor = GridBagConstraints.NORTH;
            gbc.insets = new Insets(0,5,0,0);
            //row 0
            gbc.gridy = 0;
            gbc.gridx = 0;
            p.add(new JLabel("label 0", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JTextField("field row 0", 20), gbc);
            //row 1
            gbc.gridy = 1;
            gbc.gridx = 0;
            p.add(new JLabel("label 1", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JTextField("field row 1", 20), gbc);
            //row 2
            gbc.gridy = 2;
            gbc.gridx = 0;
            p.add(new JLabel("longer label 2", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JButton("row 2"), gbc);
            //row 3
            gbc.gridy = 3;
            gbc.weighty = 100;
            gbc.gridx = 0;
            p.add(new JLabel("label 3", JLabel.RIGHT), gbc);
            gbc.gridx = 1;
            p.add(new JButton("row 3"), gbc);
            display("LayoutExample", p);
        static void display(String title, Component c) {
            JFrame f = new JFrame(title);
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(c);
            f.pack();
            f.setLocationRelativeTo(null);
            f.show();
    }Resize the frame. the components remain centred horizontally but anchored to the north (that's the effect of weighty).
    Of course, your mileage may vary, but don't give up on GridBagLayout. It reminds me of that 60's song, "If you want to be happy for the rest of your life (get yourself and ugly wife)"...

  • How can I find out what application is using bandw...

    I've noticed recently there is a constant active internet connection on my phone. If I disconnect it in connection manager it just starts again but I can't figure out which application on my phone is causing this as there is nothing running in the open applications window but I know alot of apps can hide now.
    Is there any way to find out what needs this constant connection?
    Solved!
    Go to Solution.

    Hello, dear brothers in arms...I have exactly the same problem with my new Nokia C7.
    It is connecting to WLAN automatically less then a minute after I disconnect it !
    I have set  as follows: Menu->Settings->Connectivity -> Settings:
    Switch to WLAN: MANNUAL
    Data use in home country: ALWAYS ASK
    Data use when abroad: ALWAYS ASK
    and however, it is trying to connect all the time.
    When at home - it stays connected to my home WLAN (despite all the disconnections I make manually).
    When out of coverage of my home WLAN - giving reports "Connection failed" every few minutes.
    Of course the battery lasts not more then a day.
    Have double checked - my email boxes are set on "Sync frequency: MANNUAL SYNC ONLY"
    I did not set any application for any automatic actions...
    Any idea how to control this smarty?

  • How can I sign out of hotmail after using it on my ipad mini?

    How do I sign out of my Hotmail account after using it on my ipad mini?

    I believe that I have the same issue with iPad Mini with Retina Display, iOS 8.1. No matter which way I delete videos from my iPad, they will still show as "deleted", yet the space is not cleared up. I tried restore and then a full restore (clean setup as a new iPad) and it still does this to me. I can solve it by doing a restore each and every time I download a video and delete it. Rather frustrating. Has been a problem since day 1 of iOS 8. I'm yet to try the power+home button reset. It may very well work, but I am surprised that a "fresh setup" of an iPad didn't resolve it from ever occurring.

  • How can I find out what account was used for a Game Center ID?

    I have multiple iPhones in my family.  I have an Apple ID with a Game Center account.
    My son also has a phone with a Game Center account.
    I recently swapped phones around when I got the iPhone 4S.  Also, we upgraded all of the phones in the house to iOS5.
    I think as part of that process, all of the previous log in info was wiped.
    Now, my son wants to log back in to his Game Center account, but we can't figure out what Apple ID we used?
    I've tried the find my Apple ID links with no avail.
    I know what his Game Center handle is... is there a way to track it via that ID?
    Help!
    Thanks

    Nevermind... I figured it out.  I just had to log in with the Game Center ID and it worked.
    Thanks anyway.

  • HT4314 How can I log out someone who's using my Game Center account from another device?

    So my friend got hacked and the guy who hijacked her account stays loged in to her account, and even if when she changes all her Game Center and apple account info it doesn't log the hacker out of her account...
    So what can she do..? Please help us it's really important and urgent!
    P.S the game is Clash of Clans.

    Hi Benishty,
    Thanks for visiting Apple Support Communities.
    I would recommend that they use this article to contact Apple Support if it seems like their Apple ID has been compromised:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Best Regards,
    Jeremy

  • HT204053 How can I find out what devices are using my AppleID and the history of purchased items with my AppleID?

    I have used my appeID to load some games to my son's friends iPod's and have found that the iTunes gift cards that were loaded under my ID have been used very quickly ($100 in 2 months) when I have not been downloading things.  I have been told that the friend has been downloading games/music after I had put in my password to load something else.

    We are fellow users on here and not Apple employees so have no account access.
    You can see iTunes and app store purchases by going to the store for each and clicking Purchases on the right side.
    You might want to consider contacting the store support staff at http://www.apple.com/emea/support/itunes/contact.html and request your account be locked for a period of time.  You need to stop allowing uncontrolled access and that may be he bet way.

  • How can I make a book in iPhoto using some photos and a lot of text-- recipes--written in ms Word2011?

    I'm trying to make and have printed, a small cookbook of favorite recipes using my photos as illustrations. Given the themes in iPhoto, writing in Word2011, it doesn't seem to work as a click and drag into designated spaces. Only photos work with too limited text. Any ideas?

    Place it the book, right click on it and fit to frame
    LN

  • How can I find out what is eating up my data?

    This is my second month with Verizon and with my old service plan we only use to use 5GB per month.  Now we are over 7GB.  How can I find out what I am using that is eating up my data?  I still do same things I did 3 months ago.

    I Assume you may have more than one, new device.  You can check in each devices settings, under cellular/mobile data to see which applications are using the most data. 
    YOu can then change many of the applications to use wifi only by turning cellular data off.
    email and social media apps have settings within the apps to restrict cellular use, like not showing video of images.
    restrict application from running in the background by closing apps before leaving home wifi or letting your phone "sleep" at home, while not connected to power.  (To save battery your phone switches off wifi, reverting to cellular, not a desirable feature, but it is supposed to save battery)
    ** to close apps, double click home button and swipe up to close app.  Leaving YouTube, Games, Maps, Social media apps open in the background can use mobile data.
    clear the "outbox" in email.  Cases of massive data use have occurred when an email continues to fail and sits in the out box of the Mail app.
    IN General, a newer phone does use more data for the same functions as older phones.
    FFor more help with your iPhone, please visit Apple support, community forums or a Genius Bar.  I find them very helpful.
    if you do go in to Genius Bar, back up your device.  In some cases, replacing or a complete restor are the only solutions.
    Official Apple Support
    GOod luck!

  • How can I find out specifically what plugins are missing? Am told missing, then plugin finder tells me no suitable found, I would look for them myself but have no way to find out what exactly need to look for.

    I go into a wiki created by my employer, and get the bar at top of page almost immediately telling me there are plugins needed. I click the button offered for finding plugins, and almost immediately am told no suitable plugins are found. Plugin help offered is useless, because I have no idea what plugins I need to look for. How can I find out what plugins are being detected as "missing"?

    If there is no LR edits to keep, or if you don't want to keep the existing edits, you could delete the files from LR and import them again.
    Since the file names on disk and file names in LR don't match, you will need to manually match them up by hand individually, if you want to keep the existing LR edits.
    The easiest approach to this -- without doing any script programming -- is to go into each directory, one at a time:
    Select the correct folder in the "folders" pane. Right-click "show parent" as necessary to see the directory tree.
    Sort the LR Library by creation date.
    Using the details view in File Explorer, sort the files by creation date (add to the viewed columns if necessary).
    Assuming no more than 1 image per second, the files should line up.

Maybe you are looking for