Author Topic: libre office  (Read 927 times)

Offline ponchuk

  • Full Member
  • ***
  • Posts: 153
libre office
« on: March 20, 2012, 04:46:29 PM »
Does anyone know how to switch from column to column to put in information

I have set up two columns and i want to type in the first column and then switch to the 2nd column  without going to the end of the first column.  I know there is a shortcut on the keyboard, but i have forgotten it.  thanks in advance.
this is in word processing.

Offline johnmart

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 1095
  • Make Love Not War
Re: libre office
« Reply #1 on: March 20, 2012, 07:51:19 PM »
You can get that by >insert>break>manual>column
Acer Aspire, Intel core2 2.20GHz, ‎Graphics nVidia ‎G98M [GeForce G 105M], 2gb ram, Wireless Intel Link 5100

Why, any 5 year old child could understand this.
Somebody bring me a 5 year old.
Groucho

Online gseaman

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 3882
Re: libre office
« Reply #2 on: March 20, 2012, 08:34:57 PM »
First you have to set up columns:
    Format -> Columns -> Select the number of columns
Then,
    Insert -> Manual Break -> Column break

If you whole document is columns, it works pretty well. But, if you want columns for just a part of a page, I usually just use a table. It is much easier to control. When I write html, I avoid tables so that the layout is fluid for different screen sizes, but for page oriented documents there are few downsides to using tables.

Galen

Offline The Chief

  • Hero Member
  • *****
  • Posts: 2339
Re: libre office
« Reply #3 on: March 21, 2012, 05:01:52 PM »
Somehow, none of that seems to answer the original question - How do you move to another column to enter text?  Without clicking, I suppose.  Probably some key combo, but help seems to ignore the concept (or I can't figure out the proper term to search for).  ALT right/left arrow does the job in WordPerfect.

Retired Senior Chief, Retired Software Engineer, Active GrandPa

Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6224
  • I don't do Windows
Re: libre office
« Reply #4 on: March 21, 2012, 09:58:31 PM »
I started Writer with a blank document. Next, I clicked Format > Columns and chose 2 columns. Next, I clicked Insert > Manual Break and chose Column break. Click on either column to enter text.

Hope that's what you want.
Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378

Online gseaman

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 3882
Re: libre office
« Reply #5 on: March 21, 2012, 10:15:49 PM »
Found it!

Ctrl-Shift-Enter

Galen

Offline djohnston

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 6224
  • I don't do Windows
Re: libre office
« Reply #6 on: March 21, 2012, 10:29:14 PM »
Found it!

Ctrl-Shift-Enter

Galen


Yep, that works, too. I can do that or just left click in either column.
Bare metal                           VBox
AMD Athlon 7750 Dual-Core    Single core
4GiB RAM                              1GiB RAM
nVidia GeForce FX 5200          64MB video
LXDE 32bit                            KDE 64bit

Registered Linux User #416378

Offline ponchuk

  • Full Member
  • ***
  • Posts: 153
Re: libre office writer moving between columns solved
« Reply #7 on: March 29, 2012, 11:30:53 PM »
thats it!! Thanks alot. I have to now save it somewhere so I will remember next time. Thanks everyone for your help.  Hope this also helps everyone using libre office.

Offline menotu

  • PCLinuxOS Tester
  • Super Villain
  • *******
  • Posts: 15515
  • ┌∩┐(◕_◕)┌∩┐
Re: libre office
« Reply #8 on: March 30, 2012, 04:58:00 AM »
If you whole document is columns, it works pretty well. But, if you want columns for just a part of a page, I usually just use a table. It is much easier to control. When I write html, I avoid tables so that the layout is fluid for different screen sizes, but for page oriented documents there are few downsides to using tables.
Galen

+1

Can simply use TAB to switch columns when using Tables

Gotta be a tad careful using Ctrl-Shift-Enter in Column(s) as depending on where the cursor is located it can move data to another column and/or create more pages
PCLinuxOS 32bit KDE 4.10.4; kernel-3.4.11-pclos1.bfs & 64bit 3.4.38bfs; NVidia GeForce 8400GS 1GB 310.19 driver

Sony Vaio SVE1513A4ESI Laptop, Intel Core i5, 2.6GHz, 6GB RAM, 750GB, 15.6" Intel HD Graphics 4000

Offline The Chief

  • Hero Member
  • *****
  • Posts: 2339
Re: libre office
« Reply #9 on: March 30, 2012, 02:15:07 PM »
When I write html, I avoid tables so that the layout is fluid for different screen sizes, but for page oriented documents there are few downsides to using tables.

What are the alternatives to present tabular data in html?  A pdf seems the long way round, and unfriendly to the user...

Retired Senior Chief, Retired Software Engineer, Active GrandPa

Online gseaman

  • PCLinuxOS Tester
  • Hero Member
  • *******
  • Posts: 3882
Re: libre office
« Reply #10 on: March 30, 2012, 03:19:49 PM »
When I write html, I avoid tables so that the layout is fluid for different screen sizes, but for page oriented documents there are few downsides to using tables.

What are the alternatives to present tabular data in html?  A pdf seems the long way round, and unfriendly to the user...

There are no alternatives for tabular data than to use tables, but in the not too distant past tables were used to keep page formatting in place. This caused many problems when different screen sizes and different browsers were used. The appropriate way to format is to put discrete regions and your page in <div></div> and style each div with css in a way that it still works regardless of the viewing window. There are still many templates available where the layout has been thoroughly tested to get predictable results.

Galen

Offline The Chief

  • Hero Member
  • *****
  • Posts: 2339
Re: libre office
« Reply #11 on: March 31, 2012, 03:29:27 PM »
There are no alternatives for tabular data than to use tables, but in the not too distant past tables were used to keep page formatting in place. This caused many problems when different screen sizes and different browsers were used. The appropriate way to format is to put discrete regions and your page in <div></div> and style each div with css in a way that it still works regardless of the viewing window. There are still many templates available where the layout has been thoroughly tested to get predictable results.

Galen



Yes, I make extensive use if <div></div> and CSS files.  But my site has a dozen or so pages of purely tabular data that I maintain in tables - and even the tables have their own CSS style, so I can freshen things up from time to time.  Example here:
http://www.douglascountygensoc.org/bride_index_book_b.html

Retired Senior Chief, Retired Software Engineer, Active GrandPa