Skip to main content

Change page orientation in openoffice writer

Change page orientation in OpenOffice Writer


Change page orientation in openoffice writer step by step
OpenOffice Writer is the free alternatives of various paid office suite software. I am using it myself for long time and find it perfect for word processing. Afterall, It is opensource and free. But most of the people are stuck when they have to change single page orientation into landscape and again into portrait mode. It was hard to me in the beginning but I figured it out anyhow. I will show you easy way to change orientation in single page in openoffice writer.

Step by step guide for changing orientation in single page in OpenOffice Writer.



  1. First open openoffice writer. I know you have done already. Default mode is portrait mode.Change page orientation in openoffice writer step by step
  2. Now, click Insert Menu in Menu bar. Then, Click Manual Break as shown in figure.
    Change page orientation in openoffice writer step by step

  3. Insert Break dialog box will appear. Now, In this Dialog box, click Page Break radio button and Select Landscape from the Style selection
    Change page orientation in openoffice writer step by step
  4. Your document will change into Landscape mode. Start typing your content. Once finished, if you want to change to the portrait mode again. Repeat step 3. But this time, select Default from the style selection drop down menu. Click OK button and you are done.Change page orientation in openoffice writer step by step
  5. All done now. Hope you found it useful

Comments

Popular posts from this blog

Spring Security with Spring Boot and MySQL

Spring Security with Spring Boot and MySQL In this tutorial I'll show how to use Spring Security with Spring Boot and MySQL. We'll implement a UserDetailsService provided by Spring Security. It is easy to configure Spring Security with Spring Boot and MySQL. You can also check how to run Spring Boot application inside docker container Steps: 1. Create a Spring Boot project from start.spring.io with following dependencies in your pom.xml file. You can choose gradle also for project dependencies. <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- dev tools for hot reloading --> <dependency> <groupId>org.springframework.b...

How To install Docker in Linux Mint 18.2

How To install docker in Linux Mint 18.2 Codename: sonya Docker is a Container as a service (CaaS) platform which helps to eliminate "works in my computer" problems when working together with other members in the team. More here Docker for Linux Mint is availabe as a free Community Edition (CE). Installation is easy and straigh forward. We will install a stable release of docker. OS Requirements Linux Mint 18.2 (LTS) Architecture: x86_64 If you've the older version installed already, uninstall it $ sudo apt-get remove docker docker-engine docker.io Add repositories $ sudo apt-get install apt-transport-https ca-certificates curl software-properties-common $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - Since, Linux Mint 18.2 (sonya) is based on Ubuntu 16.04 (xenial), we've to use the release codename of Ubuntu 16.04 i.e. xenial. Also, we'll use the latest stable version $ sudo add-apt-repository "deb [arch=a...