Libreoffice Series Special Edition Volume 5

Total Page:16

File Type:pdf, Size:1020Kb

Libreoffice Series Special Edition Volume 5 FullTHE INDEPENDENT MAGAZINE FORCircle THE UBUNTU LINUX COMMUNITY LIBREOFFICE SERIES SPECIAL EDITION VOLUME 5 LIBREOFFICELIBREOFFICE Volume Five Parts 35-41 Full Circle Magazine is neither affiliated, with nor endorsed by, Canonical Ltd. HHOOWW--TTOO LibreOffice Pt35: The Gallery Written by Elmer Perry LibreOffice Pt35: The Gallery ollecting clip art for use in your button on the standard toolbar; the main area are two buttons for file and Insert > Copy. C newsletter, spreadsheet, and through a panelon the displaying the files –in tile ordetail presentation, or other document experimental sidebar. By default, view. Beside the buttons, it shows To link a file from your Gallery can become a timely task. the Gallery is docked under the the theme name, file name, and into a document, select the theme Especially when it comes to formatting toolbar. You can undock path for the selected file. and file. Hold down SHIFT+ CTRL organizing –and laterfinding –the and dock the Gallery with the while dragging and dropping the image you want to use. LibreOffice combination of CTRL + double-click USING THE GALLERY file into the document, or right- provides a built-in Gallery for on the borderofthe Gallery. Use click then Insert > Link. collecting and organizing images, the hide/show button on the lower The Gallery allows you to insert sounds, and videos. The Gallery borderto display and hide the a fileasa copy, a link, ora Sometimes, you will want to use collects files into categories called Gallery while it is docked. Ifyou background. When you insert the an image as the background fora themes. You can add files from the hover over the lower border, your file as a copy, the file is embedded page ora paragraph. To setan Gallery directly into your mouse cursorwill turn to a double into the current document and is image as the background fora document. Creating new themes arrow, and you can resize the not reliant on another file. Ifyou page, select the theme and image. allows you to add yourown files docked Gallery's height. insert the file as a link, a reference Right-click the image and Insert > into the collection. to the file is created in the Background > page. To set the On the leftside ofthe Galleryis document. Ifyou opened a image as the background forthe the themes list. Selecting a theme current paragraph, right-click the THE GALLERY document with linked files, the changes the files which display in files will show only ifthey are in image and Insert> Background > the main panel. The main panel Paragraph. You can access the Gallery in the location referenced in the shows the files available in the three different ways, through the document. Ifthe file needs to currently selected theme. Above menus (Tools > Gallery); by a travel among multiple computers, MANAGING THE GALLERY insert a copy. Ifthe document will reside on only one computer, you Anice feature ofthe Gallery is can safely insert a link. the ability to add yourown files to the collection. You cannot, To inserta copyofa file from however, add to, remove from, or your Gallery into the document, delete the default themes. In order select the theme containing the to add yourown files to the file and select the file. You can Gallery, you will have to create then drag and drop the file into yourown themes. You add your your document, or right-click the own theme by clicking on the “New full circle magazine #82 1 4 contents ^ HOWTO - LIBREOFFICE Pt35 Theme” button, which opens the the file(s) you want, and click “New Theme” dialog. In the “Select.” A list offiles in the folder “General” tab, enter the name for will display in the list box. Use the yournewtheme. You can nowadd drop-down box above the list to files to your theme in the “Files” filter the files ifneeded. Take time tab orjust click“OK” to save the to scroll through the filter list to theme. getan idea ofthe manyfile created for the project. To delete a only for a certain project, you can formats the Gallery accepts. For file from a theme, right-click the delete them when the project is Adding files to the theme you image files, you can get a preview file and select “Delete.” You can finished. The Gallery is available in justcreated is easy. You can add by checking the “Preview” check also delete a theme with all its files all modules ofthe suite, and helps files one ata time bydragging and box. Once you find the file you by right-clicking the theme title you to maintain consistency for dropping them into the main panel want, you can select it and click and selecting “Delete.” Keep in newsletters, spreadsheets, with your theme selected. To “Add” to add itto the theme, or mind thatthere is no undo for presentations, databases, and selectively add files orto add an click“Add All” to add all the files in these actions, and that deleting a reports. entire folder, right-click on the the list box. file from the Gallery does not theme title and click “Properties.” delete it from the computer, just A theme “Properties” dialog will You won't always add files to from the Gallery’s theme list. display. This is the same dialog you the Gallery with the intention of Elmer Perry's history ofworking, and getwhen adding a theme, so you keeping them there indefinitely. LibreOffice provides a media programming, computers involves an can use this method to add files You maywantto justadd them library called the Gallery. The Apple ][E, adding some Amiga, a generous helping ofDOS and when you create a new theme. while working on a certain project. Gallery is divided in collections Windows, a dash ofUnix, and blend Select the “Files” tab, then click Once the projectis done and you called themes. You can add your well with Linux and Ubuntu. “Find Files.” Use the file dialog to no longerneed them, you will want own themes and files to the He blogs at navigate to the folder containing to delete the files and themes Gallery. Ifa file ortheme is added http://eeperry.wordpress.com full circle magazine #82 1 5 contents ^ HHOOWW--TTOO LibreOffice Pt36: Base Views Written by Elmer Perry LibreOffice Pt36: Base Views fyou workwith Base long Increment drop table "Project" if exists; I enough, you willrun into a FirstName|Varchar(25)|Not drop table "TeamMember" if exists; Null situation where you need a table LastName|Varchar(25)|Not Null create table "TeamMember" ( structured a little differently, or "ID" integer generated by default as identity you’ll need the results ofa query as Shown right is the SQL to create (start with 1) not null primary key, "FirstName" varchar(25) not null, a table you can use. The answerto the tables. Create a new database "LastName" varchar(25) not null these problems is ‘Views’. A view is document, then go to Tools > SQL, ); and type the commands in byhand a querywhich acts like a table you create table "Project" ( can use in otherqueries, forms, or orcopy and paste. "ID" integer generated by default as identity controls. Today, I will show you an (start with 1) not null primary key, "Title" varchar(50) not null, example ofhow this is useful when You can also getthe above SQL "Description" varchar(250), creating forms. commands on pastebin.com at "Due" date, http://pastebin.com/Wyb3R5Fz. "Member" integer, constraint FK_MEM foreign key ("Member") OUR TABLES references "TeamMember" ("ID") The keyto ourtaskis the ); foreign key “MemberID” in the We are going to create a simple “Project” table, which connects to database with two tables. The into one field called “Name”. We the first and last name fields to the “TeamMember” table's “ID” database will track projects for a will use ourview to populate the create one field. We will also get field. When we create our form we companyand allowus to assign a drop-down list box. the “ID” field, as we willneed itto will create a drop-down list for team member to each project. connect back to the “Project” table. selecting the team member who is Below is the structure ofthe tables Ifthe tables do notshowin your responsible for the project. Notice we will create. table list after running the To create the query, we select that the “TeamMember” table commands, Review > Refresh Table the “Queries” option in the provides first and last name fields. Project Table will populate the list. “Database” pane. In the “Actions” Field|Type|Properties The list control allows us to use pane, select “Create Query in SQL ID|Integer|Primary Key, Auto onlyone field in the list. We could Increment View.” The follow SQL command displayjustthe lastname in the CREATE QUERY /VIEW Title|varchar(50)|Not Null will create our query: Description|varchar(250) drop-down list, but what iftwo Due|Date team members have the same last To create ourview, we will use a MemberID|Integer|foreign key SELECT"FirstName" || ' ' || name. We will solve this problem two-step process. First, we create a "LastName" AS "Name", TeamMember Table by creating a view that will query, then convert the query into "ID" FROM "TeamMember"; Field|Type|Properties combine the first and last name a view. In ourquery, we combine ID|Integer|Primary Key, Auto full circle magazine #83 1 9 contents ^ HOWTO - LIBREOFFICE Pt36 Ifyou are familiarwith SQL, this wizard will display. a label foreach field. In orderto design window. looks like a standard query except change the control for the data for the double pipe symbols “||”. On the first screen, select field, you have to ungroup the text Now, ifyou entered names in They are used to concatenate “Table: TeamMember” from the boxfrom the label.
Recommended publications
  • Libreoffice Na Prefeitura De Paraíba Do Sul 05
    EDITORES Eliane Domingos de Sousa Vera Cavalcante EDITORIAL REDATORES Festa diante do caos Alessandro Feitoza Clayton Eduardo Dausacker A abertura dos jogos olímpicos foi uma lição para o mundo. Danilo Martinez Praxedes Como um país que está em um momento turbulento na economia e na política David Jourdain Douglas Vigliazzi consegue passar por cima de tudo isso e fazer uma festa maravilhosa Gilvan Vilarim !emos um jeito tão brasileiro de separar as coisas. "ostramos ao mundo que Jon Maddog Hall Johnny Furusato podemos fazer festa# mesmo diante do caos. $ dizer o que precisa ser dito para o José Rojo Camacho mundo. %obre como somos os responsáveis pelo que acontece ao planeta. %omos Luiz Fernando Rezende Coutinho a causa da doença# mas tamb&m podemos ser a cura. Algu&m tem uma ideia que# Marco Giannini Nélio Gonçalves Godoi com certeza# & um sonho individual que compartilhado# & colocado em prática. Um Rômulo Souza indivíduo tem que ser o primeiro a colocar a mão na massa. $ pode fazer a Sedenir Marco de Paris diferença no mundo. (epois a massa assume a ideia e a mudança. A lição que Sthefany Soares tiramos disso & que# cada um de n)s pode plantar uma ideia. *u uma árvore. $ o TRADUÇÃO mundo será# no futuro# melhor para os que aqui estiverem. David Jourdain +amos aproveitar esse momento e tomá-lo como apoio para todas as nossas Vera Cavalcante aç-es futuras. Boas ideias e trabalho são as aç-es que podem fazer a diferença. REVISÃO 'm e/emplo disso foi o trabalho realizado na 0refeitura de 0araíba do %ul.
    [Show full text]
  • Base Handbook Copyright
    Version 4.0 Base Handbook Copyright This document is Copyright © 2013 by its contributors as listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/3.0/), version 3.0 or later. All trademarks within this guide belong to their legitimate owners. Contributors Jochen Schiffers Robert Großkopf Jost Lange Hazel Russman Martin Fox Andrew Pitonyak Dan Lewis Jean Hollis Weber Acknowledgments This book is based on an original German document, which was translated by Hazel Russman and Martin Fox. Feedback Please direct any comments or suggestions about this document to: [email protected] Publication date and software version Published 3 July 2013. Based on LibreOffice 4.0. Documentation for LibreOffice is available at http://www.libreoffice.org/get-help/documentation Contents Copyright..................................................................................................................................... 2 Contributors.............................................................................................................................2 Feedback................................................................................................................................ 2 Acknowledgments................................................................................................................... 2 Publication
    [Show full text]
  • 7 Mail Merge and Related Operations
    ESSENTIAL LibreOffice: Tutorials for Teachers Copyright © Bernard John Poole, 2019. All rights reserved MAIL MERGE AND RELATED OPERATIONS 7 Form letters and mailing labels LEARNING OUTCOMES LibreOffice is an integrated suite of programs. This means that the different components of the Office software—Writer, Base, Calc, and Impress, for example—are all part of the same system. As a result, you can easily switch from one component to another, cut and paste data between documents and, above all, use a common set of tools with each of the applications. The steps required to edit, copy, arrange, print, format, cut and paste, and so forth, are more or less the same, whether you are in the word processor, drawing, database, spreadsheet or presentation components of LibreOffice. In Lesson 6 you were introduced to the LibreOffice Base database. In Lesson 7 you are going to apply what you have learned about databases to the task of creating form letters and mailing labels. The process is called Mail Merge and it is an important word processing skill with which every teacher should be familiar. You can merge data from a database into different types of LibreOffice documents to produce any number of versions of a standard document tailored to address individual recipients. This is especially useful when creating form letters, which are another type of template or stationery document. But you can also merge data into a spreadsheet (such as an invoice or other accounting document) or into a drawing document. You can create mailing labels, or any document that requires fill-in-the-blanks data.
    [Show full text]
  • ODBC Driver for Postgresql
    Contents I Table of Contents Part I What's New 1 Part II General Information 4 1 Overvie..w... .............................................................................................................................. 4 2 Feature..s.. ............................................................................................................................... 6 3 Compa.t.i.b..i.l.i.t.y.. ........................................................................................................................ 8 4 Requi.r.e..m...e..n..t.s.. ..................................................................................................................... 11 5 Licen.s.i.n..g.. ............................................................................................................................ 11 6 Gettin.g.. .S...u..p..p..o..r.t. .................................................................................................................. 14 Part III Using ODBC Driver 16 1 Install.a..t.i.o..n.. .......................................................................................................................... 16 Window s .......................................................................................................................................................... 17 Window s Sile.n...t. ..................................................................................................................................................... 20 macOS .........................................................................................................................................................
    [Show full text]
  • Libreoffice Base Guide 6.2 | 3 Relationships Between Tables
    Base Guide LibreOffice Documentation Team Copyright This document is Copyright © 2020 by the LibreOffice Documentation Team. Contributors are listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/), version 4.0 or later. All trademarks within this guide belong to their legitimate owners. Contributors This book is adapted from a translation of the German LibreOffice Base Handbuch. To this edition Pulkit Krishna Dan Lewis Jean Hollis Weber Alain Romedenne Jean-Pierre Ledure Randolph GAMO To previous editions Jochen Schiffers Robert Großkopf Jost Lange Martin Fox Hazel Russman Jean Hollis Weber Dan Lewis Peter Schofield Steve Schwettman Andrew Pitonyak Feedback Please direct any comments or suggestions about this document to the Documentation Team’s mailing list: [email protected] Note Everything you send to a mailing list, including your email address and any other personal information that is written in the message, is publicly archived and cannot be deleted. Publication date and software version Published June 2020. Based on LibreOffice 6.2. Documentation for LibreOffice is available at http://documentation.libreoffice.org/en/ Table of Contents Copyright.....................................................................................................................................2 Contributors............................................................................................................................2
    [Show full text]
  • White Paper Entitled 'Using Libreoffice to Increase Business Productivity'
    MultıSpectra Consultants Whıte Paper Using LibreOffice to Increase Business Productivity Dr. Amartya Kumar Bhattacharya BCE (Hons.) ( Jadavpur ), MTech ( Civil ) ( IIT Kharagpur ), PhD ( Civil ) ( IIT Kharagpur ), Cert.MTERM ( AIT Bangkok ), CEng(I), FIE, FACCE(I), FISH, FIWRS, FIPHE, FIAH, FAE, MIGS, MIGS – Kolkata Chapter, MIGS – Chennai Chapter, MISTE, MAHI, MISCA, MIAHS, MISTAM, MNSFMFP, MIIBE, MICI, MIEES, MCITP, MISRS, MISRMTT, MAGGS, MCSI, MIAENG, MMBSI, MBMSM Chairman and Managing Director, MultiSpectra Consultants, 23, Biplabi Ambika Chakraborty Sarani, Kolkata – 700029, West Bengal, INDIA. E-mail: [email protected] Businesses that restrict themselves to proprietary software like Microsoft Offce get a raw deal. Not only do they have to pay for the software but they have to factor in the cost incurred every time the software becomes corrupt. This includes the fee to be paid to the computer technician to re-install the software. All this creates a vicious cycle, where costs and delays keep mounting. It should be the primary aim of every business to develop a system that automates maintenance to the maximum possible extent. This is where open source software like LibreOffce, Apache OpenOffce, Scribus, GIMP, Inkscape, Firefox, Thunderbird,WordPress, VLC media player, etc, come in. My company, MultiSpectra Consultants, uses open source software to the maximum possible extent, thereby streamlining business processes. It makes updating the software and its maintenance very easy. The required software can be freely downloaded from the Internet and updates can also be applied by simply downloading the latest version of the relevant software. With free and open source software (FOSS) anyone is freely licensed to use, copy, study and change the software in any way, and the source code is openly shared so that people are encouraged to voluntarily improve the design of the software.
    [Show full text]
  • Chapter 2 Creating a Database How to Create a New Database Copyright
    Base Handbook Chapter 2 Creating a Database How to create a new database Copyright This document is Copyright © 2013–2015 by the LibreOffice Documentation Team. Contributors are listed below. You may distribute or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/), version 4.0 or later. All trademarks within this guide belong to their legitimate owners. Contributors Jochen Schiffers Robert Großkopf Jost Lange Martin Fox Hazel Russman Jean Hollis Weber Feedback Please direct any comments or suggestions about this document to the Documentation Team’s mailing list: [email protected] Note: Everything you send to a mailing list, including your email address and any other personal information that is written in the message, is publicly archived and cannot be deleted. Acknowledgments This chapter is based on an original German document and was translated by Martin Fox, Robert Großkopf, and Hazel Russman. Publication date and software version Published 20 December 2015. Based on LibreOffice 5.0. Note for Mac users Some keystrokes and menu items are different on a Mac from those used in Windows and Linux. The table below gives some common substitutions for the instructions in this chapter. For a more detailed list, see the application Help. Windows or Linux Mac equivalent Effect Tools > Options menu LibreOffice > Preferences Access setup options selection Right-click Control+click Open a context menu Ctrl (Control) ⌘ (Command) Used with other keys F5 Shift+⌘+F5 Open the Navigator F11 ⌘+T Open the Styles and Formatting window Documentation for LibreOffice is available at http://www.libreoffice.org/get-help/documentation Contents Copyright.............................................................................................................................
    [Show full text]
  • Chapter 8 Getting Started with Base Relational Databases in Libreoffice Copyright
    Getting Started Guide Chapter 8 Getting Started with Base Relational Databases in LibreOffice Copyright This document is Copyright © 2017 by the LibreOffice Documentation Team. Contributors are listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/), version 4.0 or later. All trademarks within this guide belong to their legitimate owners. Contributors Dan Lewis Jean Hollis Weber Hazel Russman Ron Faile Jr. Olivier Hallot Feedback Please direct any comments or suggestions about this document to the Documentation Team’s mailing list: [email protected] Note: Everything you send to a mailing list, including your email address and any other personal information that is written in the message, is publicly archived and cannot be deleted. Acknowledgments This chapter is based on Chapter 8 of Getting Started with OpenOffice.org 3.3. The contributors to that chapter are: Dan Lewis Magnus Adielsson JiHui Choi Iain Roberts Jean Hollis Weber Publication date and software version Published 16 February 2017. Based on LibreOffice 5.2. Note for Mac users Some keystrokes and menu items are different on a Mac from those used in Windows and Linux. The table below gives some common substitutions for the instructions in this chapter. For a more detailed list, see the application Help. Windows or Linux Mac equivalent Effect Tools > Options
    [Show full text]
  • Libreoffice Base Guide 6.4 | 3 Relationships Between Tables
    Copyright This document is Copyright © 2020 by the LibreOffice Documentation Team. Contributors are listed below. You may distribute it and/or modify it under the terms of either the GNU General Public License (http://www.gnu.org/licenses/gpl.html), version 3 or later, or the Creative Commons Attribution License (http://creativecommons.org/licenses/by/4.0/), version 4.0 or later. All trademarks within this guide belong to their legitimate owners. Contributors This guide has been updated from Base Guide 6.2. To this edition Pulkit Krishna Dan Lewis Jenna Sargent Drew Jensen Jean-Pierre Ledure Jean Hollis Weber To previous editions Pulkit Krishna Jean Hollis Weber Dan Lewis Peter Scholfield Jochen Schiffers Robert Großkopf Jost Lange Martin Fox Hazel Russman Steve Schwettman Alain Romedenne Andrew Pitonyak Jean-Pierre Ledure Drew Jensen Randolph GAMO Feedback Please direct any comments or suggestions about this document to the Documentation Team’s mailing list: [email protected] Note Everything you send to a mailing list, including your email address and any other personal information that is written in the message, is publicly archived and cannot be deleted. Publication date and software version Published July 2020. Based on LibreOffice 6.4. Documentation for LibreOffice is available at http://documentation.libreoffice.org/en/ Contents Copyright.....................................................................................................................................2 Contributors............................................................................................................................2
    [Show full text]
  • Import Excel Spreadsheet in Libreoffice
    Import Excel Spreadsheet In Libreoffice Racemose Turner pluggings his rousing blasts dubiously. Bombacaceous Marco overtakes, his poseur endued soothings sordidly. Antique and alveolate Rayner equilibrates her Stella springboks twaddle and disappear exhaustively. Using Python to access LibreOffice Calc using Uno Stack. Which particular situation became significant in excel import spreadsheet and actually does. No subscription, no easy, local hard copy at blizzard will. Thanks received much sir for import excel import it? Diagram instance of things down the spreadsheet in this way, a sane reason. Click on the magnification level of higher than i want open a spreadsheet in excel libreoffice calc app. Link below steps to import them at core os functionality to. Slideshows can import from microsoft office pro would often restricted by selecting the import excel spreadsheet in libreoffice, libreoffice and paste the database is updated from. How do i enjoyed reading lots of custom delimited files are using different. Really large spreadsheet software you tried using word with three columns can import excel spreadsheet in libreoffice. You want to the previous tip for me a reality of values in excel import spreadsheet files, russia and tweaking the bottom of the truth is popular because he gets the key? Your choice for power users and downloading a long way to set password, in libreoffice base, also need to version of excel spreadsheet has hit from. In libreoffice spread from a spreadsheet into columns you import code for a table dialog opens, refuse to be an important. How to import Ms Excel LibreOffice Open Office chair as. Select save your data from ms excel or are very hard to the list, excel spreadsheet has similar but i do with your sensors at which begin with.
    [Show full text]
  • Firebird 3.0.5 Release Notes
    Firebird 3.0.5 Release Notes Helen Borrie (Collator/Editor) 4 January 2020 - Document v.0305-03 - for Firebird 3.0.5 Release Firebird 3.0.5 Release Notes 4 January 2020 - Document v.0305-03 - for Firebird 3.0.5 Release Helen Borrie (Collator/Editor) Table of Contents 1. General Notes .................................................................................................................................... 1 Sub-release V.3.0.5 ........................................................................................................................ 1 V.3.0.5 Improvements ............................................................................................................ 1 Sub-release V.3.0.4 ........................................................................................................................ 2 V.3.0.4 Improvements ............................................................................................................ 2 Sub-release V.3.0.3 ........................................................................................................................ 3 V.3.0.3 Improvements ............................................................................................................ 3 Sub-release V.3.0.2 ........................................................................................................................ 5 New Feature .......................................................................................................................... 6 Improvements .......................................................................................................................
    [Show full text]
  • Libreoffice Base Tutorial 1
    Introduction to LibreOffice Base (LOB)-1 Tables & Fields Robin Beaumont Date: Saturday, 07 April 2012 e-mail: [email protected] 1. Learning outcomes check list .............................................................................................................................2 2. Introduction ......................................................................................................................................................3 3. The consultations database ...............................................................................................................................3 4. Installing and Starting LibreOffice Base (LOB) ....................................................................................................3 5. How to create a Database in LibreOffice Base (LOB) ..........................................................................................4 6. How to create a new table and fields in Libreoffice Base (LOB) ..........................................................................5 7. Adding fields - creating the unique index...........................................................................................................5 8. Saving your work...............................................................................................................................................6 9. Input masks.......................................................................................................................................................7 10. Moving between
    [Show full text]