How to Modify PDF Documents? Seth Kenlon

Total Page:16

File Type:pdf, Size:1020Kb

How to Modify PDF Documents? Seth Kenlon Modifying PDFs | Linux Starter Kit How to modify PDF documents? Seth Kenlon he Portable Document Format, or PDF, Evince is a document standard developed by As a part of the GNOME Desktop Environ- TAdobe to help ensure that when a user ment (which Ubuntu’s Unity uses as its base), prints, they get exactly what they see on the Evince is the default PDF viewer on Ubuntu screen. They are used as “pre-flight” tests Linux. It allows you to do all of the usual PDF in graphics design, or as convenient ways to things like read, rotate, resize for viewing, sent documents (with embedded fonts and and well as a few advanced features. graphics) across a network. One problem with PDFs is that there PDFs also get abused quite a lot; they are many different ways to create them but are often considered an e-book format even not much of a way to tell what feature set a though they don’t feature the re-sizing and particular document actually contains. For re-flowing capabilities of true e-book formats instance, it’s possible to embed text into a like e-pub. PDFs are, as their name states, scanned set of images in a PDF (using OCR meant to be digital versions of paper with all technology), but not everyone does this. of its advantages as well as disadvantages. So you might open one PDF document of a Sometimes you’ll a need to modify PDFs. scanned text book and discover that Evince Adobe itself successfully pushed PDF as a can highlight and copy all of the text on a universal, cross-platform standardized format, page. You might then open a separate docu- and yet their Acrobat Pro application, which ment that looks basically the same and yet allows a user to open and modify PDF docu- Evince will be unable to select or copy the ments, is not available on Linux. As a result, text. It’s important to know that this is not many Linux users have opted for e-pub (based something Evince is or is not doing; it’s infor- on entirely free technology like html, css, and mation that is or is not embedded invisibly zip) over PDF, but PDF still does have distinct into the PDF file itself. advantages when you need a document to be Another confusing feature are PDF an inflexible print-ready proof. Luckily, there Forms (FDF). You might download a docu- are a number of tools that will allow you to ment that you are required to fill out (such work with, create, and modify PDFs on Linux. as a job application or a school form) and find that Evince allows you to click into each field and type in the data. You could then save the PDF with the form data included and submit it back to the organization request- ing the information. You might then open a different form and find that Evince will not allow you to fill in the data. Once again, this isn’t Evince arbitrarily deciding whether or not you can fill out a form; it’s how the PDF itself was created. Some have form data while others do not, and there’s no good way to know for sure which is which except by trying to perform an action and watching Figure 1. The Evince viewer brings Adobe PDF functionality to your desktop the results. 32 linux identity office Modifying PDFs | Linux Starter Kit For all the common tasks, how- ever, you’ll find Evince a fine PDF viewer that easily matches Adobe Acrobat Reader in features and per- formance. Modification Even though Adobe doesn’t bother releasing Acrobat Pro for Linux, there are plenty of tools that we Li- nux users can use to modify PDFs. The first is Inkscape, a digital illustration application that also happens to translate PDFs into their graphical and textual com- ponents. Retaining the layout of Figure 2. Filling out Form Data with Evince the page, Inkscape is able to open PDFs into fully modifiable page And this will leave you with a single advantage of PDF’s ability to do in- layouts. PDF file (“newfile.pdf” in the ex- ternal linking or follow external hy- Inkscape is a traditional illustra- ample) as if though nothing had perlinks; i.e., if you reference a web tion program that is powerful and changed. page in your document, the user yet intuitive. Install it via the Ubuntu cannot click on the weblink and be Software Center; for a full, free se- Generating a PDF whisked off to that webpage in their ries on using the tools of Inkscape, There are many ways to send your browser. At best, they’d need to se- see screencasters.heathenx.org own documents out in the PDF for- lect the text in the PDF and open a If the PDF contains multiple pag- mat. Nearly every program that can browser and paste the text into the es, then you may need to stitch the print can also “print” to PDF; in oth- URL bar; this is simple enough on a pages back together. For instance, er words, the applications thinks it’s computer but can be difficult on a if you modify the second page of printing, but instead of printing to mobile device. a three page document, you could paper it saves the results to a file. The answer is an html-like mark- open page 2 in Inkscape, modify it, This is a great way to quickly up language called docbook, which and export it as a stand-alone modi- get PDF versions of anything that allows you to create documents in fied page 2, but then you’ll want to can be printed. If you do any kind any plain text editor like Gedit or integrate it back into the original of document authoring either in Li- Emacs, process the document with three page document. breOffice, Open Office.org, Scribus, a stylesheet, and then output to a Once you’ve made the modifica- or even just a basic text editor, you PDF that will open in PDF viewers tions to the PDF page, you can ex- have this method to produce at- with all hotlinks enabled. port it page out as a PDF just as you tractive and functional digital docu- To install the docbook toolchain, would with any other application; ments. The disadvantage to this, visit the Ubuntu Software Center choose Print from the File menu, however, is that it does not take and install the following programs: and choose to Print to File. There is a handy commandline tool for this slicing and dicing of PDF files called pdftk (PDF Tool Kit), avail- able from the Ubuntu Software Cen- ter. There’s a lot you can do with pd- ftk, including splitting up the pages in a PDF and then re-constructing it. To break the PDF into pages, you can use the burst option: pdftk bigfile.pdf burst To stitch it back together again with the new page 2: pdftk pg_0001.pdf modified_2. ↵ pdf pg_0003.pdf cat output ↵ newfile.pdf Figure 3. Open any PDF page in Inkscape www.linuxidentity.com/us/ 33 Modifying PDFs | Linux Starter Kit <?xml version=”1.0” ?> <!DOCTYPE article PUBLIC “-// ↵ OASIS//DTD DocBook XML ↵ V4.1.2//EN” “docbook/d ↵ ocbookx.dtd”> Save the file as magazine.xml to your Documents folder, and you’re ready to process the document to apply some (very) basic styles: xmlto fo ~/Documents/magazine. ↵ xml -o ~/Documents/fo Figure 4. Modifying PDFs with Inkscape! The “fo” filetype is a PDF-ready for- mat that would look mostly like gib- sudo apt-get install fop xmlto ↵ <article> berish if you were to look at it. So docbook <title> the final step is to process the “.fo” Linux Identity Sample PDF document that xmlto has just cre- If you’ve ever used HTML, then doc- </title> ated into a proper PDF: book will come naturally. If not, then you’ll probably find docbook a little <para> fop ~/Documents/fo/magazine. ↵ technical at first but once you’ve Linux Identity is an informa ↵ fo ~/Documents/magazine.pdf tried it for a few basic documents, tive magazine. Visit ↵ you’ll find the learning curve pretty their <ulink url=”http:// ↵ Now open your file manager, Nau- minimal. linuxidentity. tilus and take a look in your Docu- The idea behind docbook is to com”>website</ulink> ↵ ments folder. You’ll find magazine. use obvious markup tags that la- today! pdf there, which you can open in bel significant elements in a docu- </para> evince. It won’t be much to look at, ment. These include <para> for </article> since it is, after all, very basic, but paragraphs, <itemizedlist> for bul- try clicking the hyperlink and notice let lists, <orderedlist> for numbered That is the basic structure of a basic how it automatically opens your web lists, and so on. Once you know a docbook document. To process it, you browser and takes you to the appro- few tags, it’s fairly intuitive. must first add a header lien or two so priate website. To get started on a basic docu- that the stylesheet processor knows Additional features of docbook ment, open gedit and type in the fol- how to interpret it, so add these two include embedding media like lowing sample text: lines to the very top of your document: graphics, providing an automatically hotlinked Table of Contents and In- dex, blockquotes, code boxes, and obviously all the styles and fonts you could ever want.
Recommended publications
  • Desktop Migration and Administration Guide
    Red Hat Enterprise Linux 7 Desktop Migration and Administration Guide GNOME 3 desktop migration planning, deployment, configuration, and administration in RHEL 7 Last Updated: 2021-05-05 Red Hat Enterprise Linux 7 Desktop Migration and Administration Guide GNOME 3 desktop migration planning, deployment, configuration, and administration in RHEL 7 Marie Doleželová Red Hat Customer Content Services [email protected] Petr Kovář Red Hat Customer Content Services [email protected] Jana Heves Red Hat Customer Content Services Legal Notice Copyright © 2018 Red Hat, Inc. This document is licensed by Red Hat under the Creative Commons Attribution-ShareAlike 3.0 Unported License. If you distribute this document, or a modified version of it, you must provide attribution to Red Hat, Inc. and provide a link to the original. If the document is modified, all Red Hat trademarks must be removed. Red Hat, as the licensor of this document, waives the right to enforce, and agrees not to assert, Section 4d of CC-BY-SA to the fullest extent permitted by applicable law. Red Hat, Red Hat Enterprise Linux, the Shadowman logo, the Red Hat logo, JBoss, OpenShift, Fedora, the Infinity logo, and RHCE are trademarks of Red Hat, Inc., registered in the United States and other countries. Linux ® is the registered trademark of Linus Torvalds in the United States and other countries. Java ® is a registered trademark of Oracle and/or its affiliates. XFS ® is a trademark of Silicon Graphics International Corp. or its subsidiaries in the United States and/or other countries. MySQL ® is a registered trademark of MySQL AB in the United States, the European Union and other countries.
    [Show full text]
  • Final Report
    Projet industriel promotion 2009 PROJET INDUSTRIEL 24 De-Cooman Aur´elie Tebby Hugh Falzon No´e Giannini Steren Bouclet Bastien Navez Victor Commanditaire | Inkscape development team Tuteur industriel | Johan Engelen Tuteur ECL | Ren´eChalon Date du rapport | May 19, 2008 Final Report Development of Live Path Effects for Inkscape, a vector graphics editor. Industrial Project Inkscape FINAL REPORT 2 Contents Introduction 4 1 The project 5 1.1 Context . 5 1.2 Existing solutions . 6 1.2.1 A few basic concepts . 6 1.2.2 Live Path Effects . 7 1.3 Our goals . 7 2 Approaches and results 8 2.1 Live Path Effects for groups . 8 2.1.1 New system . 8 2.1.2 The Group Bounding Box . 12 2.1.3 Tests . 13 2.2 Live Effects stacking . 15 2.2.1 UI . 15 2.2.2 New system . 16 2.2.3 Tests . 17 2.3 The envelope deformation effect . 18 2.3.1 A mock-up . 18 2.3.2 Tests . 23 Conclusion 28 List of figures 29 Appendix 30 0.1 Internal organisation . 30 0.1.1 Separate tasks . 30 0.1.2 Planning . 31 0.1.3 Sharing source code . 32 0.2 Working on an open source project . 32 0.2.1 External help . 32 0.2.2 Criticism and benefits . 32 0.3 Technical appendix . 33 0.3.1 The Bend Path Maths . 33 0.3.2 GTK+ / gtkmm . 33 0.3.3 How to create and display a list? . 34 0.4 Personal comments . 36 3 Introduction As second year students at the Ecole´ Centrale de Lyon, we had to work on \Industrial Projects", the subject of which were to be either selected in a list, or proposed to the school.
    [Show full text]
  • The GNOME Census: Who Writes GNOME?
    The GNOME Census: Who writes GNOME? Dave Neary & Vanessa David, Neary Consulting © Neary Consulting 2010: Some rights reserved Table of Contents Introduction.........................................................................................3 What is GNOME?.............................................................................3 Project governance...........................................................................3 Why survey GNOME?.......................................................................4 Scope and methodology...................................................................5 Tools and Observations on Data Quality..........................................7 Results and analysis...........................................................................10 GNOME Project size.......................................................................10 The Long Tail..................................................................................11 Effects of commercialisation..........................................................14 Who does the work?.......................................................................15 Who maintains GNOME?................................................................17 Conclusions........................................................................................22 References.........................................................................................24 Appendix 1: Modules included in survey...........................................25 2 Introduction What
    [Show full text]
  • An User & Developer Perspective on Immutable Oses
    An User & Developer Perspective on Dario Faggioli Virtualization SW. Eng. @ SUSE Immutable OSes [email protected] dariof @DarioFaggioli https://dariofaggioli.wordpress.com/ https://about.me/dario.faggioli About Me What I do ● Virtualization Specialist Sw. Eng. @ SUSE since 2018, working on Xen, KVM, QEMU, mostly about performance related stuff ● Daily activities ⇒ how and what for I use my workstation ○ Read and send emails (Evolution, git-send-email, stg mail, ...) ○ Write, build & test code (Xen, KVM, Libvirt, QEMU) ○ Work with the Open Build Service (OBS) ○ Browse Web ○ Test OSes in VMs ○ Meetings / Video calls / Online conferences ○ Chat, work and personal ○ Some 3D Printing ○ Occasionally play games ○ Occasional video-editing ○ Maybe scan / print some document 2 ● Can all of the above be done with an immutable OS ? Immutable OS: What ? Either: ● An OS that you cannot modify Or, at least: ● An OS that you will have an hard time modifying What do you mean “modify” ? ● E.g., installing packages ● ⇒ An OS on which you cannot install packages ● ⇒ An OS on which you will have an hard time installing packages 3 Immutable OS: What ? Seriously? 4 Immutable OS: Why ? Because it will stay clean and hard to break ● Does this sound familiar? ○ Let’s install foo, and it’s dependency, libfoobar_1 ○ Let’s install bar (depends from libfoobar_1, we have it already) ○ Actually, let’s add an external repo. It has libfoobar_2 that makes foo work better! ○ Oh no... libfoobar_2 would break bar!! ● Yeah. It happens. Even in the best families distros
    [Show full text]
  • A Training Programme for Early-Stage Researchers That Focuses on Developing Personal Science Outreach Portfolios
    A training programme for early-stage researchers that focuses on developing personal science outreach portfolios Shaeema Zaman Ahmed1, Arthur Hjorth2, Janet Frances Rafner2 , Carrie Ann Weidner1, Gitte Kragh2, Jesper Hasseriis Mohr Jensen1, Julien Bobroff3, Kristian Hvidtfelt Nielsen4, Jacob Friis Sherson*1,2 1 Department of Physics and Astronomy, Aarhus University, Denmark 2 Department of Management, Aarhus University, Denmark 3 Laboratoire de Physique des Solides, Université Paris-Saclay, CNRS, France 4 Centre for Science Studies, Aarhus University, Denmark *[email protected] Abstract Development of outreach skills is critical for researchers when communicating their work to non-expert audiences. However, due to the lack of formal training, researchers are typically unaware of the benefits of outreach training and often under-prioritize outreach. We present a training programme conducted with an international network of PhD students in quantum physics, which focused on developing outreach skills and an understanding of the associated professional benefits by creating an outreach portfolio consisting of a range of implementable outreach products. We describe our approach, assess the impact, and provide guidelines for designing similar programmes across scientific disciplines in the future. Keywords: science outreach, science communication, training, professional development Introduction Recent years have seen an increased call for outreach and science communication training by research agencies such as the National Science Foundation
    [Show full text]
  • Durchleuchtet PDF Ist Der Standard Für Den Austausch Von Dokumenten, Denn PDF-Dateien Sehen Auf
    WORKSHOP PDF-Dateien © alphaspirit, 123RF © alphaspirit, PDF-Dateien verarbeiten und durchsuchbar machen Durchleuchtet PDF ist der Standard für den Austausch von Dokumenten, denn PDF-Dateien sehen auf Daniel Tibi, allen Rechnern gleich aus. Für Linux gibt es zahlreiche Tools, mit denen Sie alle Möglich- Christoph Langner, Hans-Georg Eßer keiten dieses Dateiformats ausreizen. okumente unterschiedlichster Art, in einem gedruckten Text, Textstellen mar- denen Sie über eine Texterkennung noch von Rechnungen über Bedie- kieren oder Anmerkungen hinzufügen. eine Textebene hinzufügen müssen. D nungsanleitungen bis hin zu Bü- Als Texterkennungsprogramm für Linux chern und wissenschaftlichen Arbeiten, Texterkennung empfiehlt sich die OCR-Engine Tesseract werden heute digital verschickt, verbrei- Um die Möglichkeiten des PDF-Formats [1]. Die meisten Distributionen führen das tet und genutzt – vorzugsweise im platt- voll auszureizen, sollten PDF-Dateien Programm in ihren Paketquellen: formunabhängigen PDF-Format. Durch- durchsuchbar sein. So durchstöbern Sie l Unter OpenSuse installieren Sie tesse­ suchbare Dokumente erleichtern das etwa gleich mehrere Dokumente nach be- ract­­ocr und eines der Sprachpakete, schnelle Auffinden einer bestimmten stimmten Wörtern und finden innerhalb z. B. tesseract­ocr­traineddata­german. Stelle in der Datei, Metadaten liefern zu- einer Datei über die Suchfunktion des (Das Paket für die englische Sprache sätzliche Informationen. PDF-Betrachters schnell die richtige Stelle. richtet OpenSuse automatisch mit ein.) Zudem gibt es zahlreiche Möglichkei- PDF-Dateien, die Sie mit LaTeX oder Libre- l Für Ubuntu und Linux Mint wählen ten, PDF-Dokumente zu bearbeiten: Ganz Office erstellen, lassen sich üblicherweise Sie tesseract­ocr und ein Sprachpaket, nach Bedarf lassen sich Seiten entfernen, bereits durchsuchen. Anders sieht es je- wie etwa tesseract­ocr­deu.
    [Show full text]
  • Bimanual Tools for Creativity
    Master 2 in Computer Science - Interaction Specialty Bimanual Tools for Creativity Author: Supervisor: Zachary Wilson Wendy Mackay Hosting lab/enterprise: Ex)situ Lab - INRIA March 1, 2020 { August 31, 2020 Secr´etariat- tel: 01 69 15 66 36 Fax: 01 69 15 42 72 email: [email protected] Contents Contents i 1 Introduction 1 2 Related Work2 2.1 Creativity........................................ 2 2.2 Creativity and Technology............................... 3 2.3 Embodiment ...................................... 4 2.4 Bimanual Interaction.................................. 5 3 Study 1 - Stories of Creativity6 3.1 Study Design...................................... 6 3.2 Results & Discussion.................................. 7 4 Design Process 12 4.1 Experiments in Form.................................. 12 4.2 Distributed Video Brainstorming........................... 12 4.3 Video Prototype .................................... 14 4.4 Technology Probes................................... 16 5 Study 2 - Creativity Techno-Fidgets 20 5.1 Study Design...................................... 20 5.2 Results & Discussion.................................. 21 6 Conclusion and perspectives 26 Bibliography 28 A Appendix 37 A.1 Images.......................................... 37 A.2 Video Prototype Storyboard.............................. 38 i Summary This project explores the implications of designing for creativity, especially the earlier stages of the creative process involving inspiration and serendipity. The rich HCI literature on bimanual tools is leveraged to design tools that support the embodied nature of creativity. The various definitions of creativity in HCI and psychology are explored, with new perspectives on embodied creativity introduced from neuroscience. In the first study, user experiences of the creative process are collected, and generate three themes and five sub-themes with implications for design. From these user stories and theory, a research through design approach is taken to generate artifacts to explore these themes.
    [Show full text]
  • Installing a Real-Time Linux Kernel for Dummies
    Real-Time Linux for Dummies Jeroen de Best, Roel Merry DCT 2008.103 Eindhoven University of Technology Department of Mechanical Engineering Control Systems Technology group P.O. Box 513, WH -1.126 5600 MB Eindhoven, the Netherlands Phone: +31 40 247 42 27 Fax: +31 40 246 14 18 Email: [email protected], [email protected] Website: http://www.dct.tue.nl Eindhoven, January 5, 2009 Contents 1 Introduction 1 2 Installing a Linux distribution 3 2.1 Ubuntu 7.10 . .3 2.2 Mandriva 2008 ONE . .6 2.3 Knoppix 3.9 . 10 3 Installing a real-time kernel 17 3.1 Automatic (Ubuntu only) . 17 3.1.1 CPU Scaling Settings . 17 3.2 Manually . 18 3.2.1 Startup/shutdown problems . 25 4 EtherCAT for Unix 31 4.1 Build Sources . 38 4.1.1 Alternative timer in the EtherCAT Target . 40 5 TUeDACs 43 5.1 Download software . 43 5.2 Configure and build software . 44 5.3 Test program . 45 6 Miscellaneous 47 6.1 Installing ps2 and ps4 printers . 47 6.1.1 In Ubuntu 7.10 . 47 6.1.2 In Mandriva 2008 ONE . 47 6.2 Configure the internet connection . 48 6.3 Installing Matlab2007b for Unix . 49 6.4 Installing JAVA . 50 6.5 Installing SmartSVN . 50 6.6 Ubuntu 7.10, Gutsy Gibbon freezes every 10 minutes for approximately 10 sec 51 6.7 Installing Syntek Semicon DC1125 Driver . 52 Bibliography 55 A Menu.lst HP desktop computer DCT lab WH -1.13 57 i ii CONTENTS Chapter 1 Introduction This document describes the steps needed in order to obtain a real-time operating system based on a Linux distribution.
    [Show full text]
  • A Brief History of GNOME
    A Brief History of GNOME Jonathan Blandford <[email protected]> July 29, 2017 MANCHESTER, UK 2 A Brief History of GNOME 2 Setting the Stage 1984 - 1997 A Brief History of GNOME 3 Setting the stage ● 1984 — X Windows created at MIT ● ● 1985 — GNU Manifesto Early graphics system for ● 1991 — GNU General Public License v2.0 Unix systems ● 1991 — Initial Linux release ● Created by MIT ● 1991 — Era of big projects ● Focused on mechanism, ● 1993 — Distributions appear not policy ● 1995 — Windows 95 released ● Holy Moly! X11 is almost ● 1995 — The GIMP released 35 years old ● 1996 — KDE Announced A Brief History of GNOME 4 twm circa 1995 ● Network Transparency ● Window Managers ● Netscape Navigator ● Toolkits (aw, motif) ● Simple apps ● Virtual Desktops / Workspaces A Brief History of GNOME 5 Setting the stage ● 1984 — X Windows created at MIT ● 1985 — GNU Manifesto ● Founded by Richard Stallman ● ● 1991 — GNU General Public License v2.0 Our fundamental Freedoms: ○ Freedom to run ● 1991 — Initial Linux release ○ Freedom to study ● 1991 — Era of big projects ○ Freedom to redistribute ○ Freedom to modify and ● 1993 — Distributions appear improve ● 1995 — Windows 95 released ● Also, a set of compilers, ● 1995 — The GIMP released userspace tools, editors, etc. ● 1996 — KDE Announced This was an overtly political movement and act A Brief History of GNOME 6 Setting the stage ● 1984 — X Windows created at MIT “The licenses for most software are ● 1985 — GNU Manifesto designed to take away your freedom to ● 1991 — GNU General Public License share and change it. By contrast, the v2.0 GNU General Public License is intended to guarantee your freedom to share and ● 1991 — Initial Linux release change free software--to make sure the ● 1991 — Era of big projects software is free for all its users.
    [Show full text]
  • How to Effortlessly Write a High Quality Scientific Paper in the Field Of
    See discussions, stats, and author profiles for this publication at: https://www.researchgate.net/publication/339630885 How to effortlessly write a high quality scientific paper in the field of computational engineering and sciences Preprint · March 2020 DOI: 10.13140/RG.2.2.13467.62241 CITATIONS READS 0 7,560 3 authors: Vinh Phu Nguyen Stéphane Pierre Alain Bordas Monash University (Australia) University of Luxembourg 114 PUBLICATIONS 3,710 CITATIONS 376 PUBLICATIONS 12,311 CITATIONS SEE PROFILE SEE PROFILE Alban de Vaucorbeil Deakin University 24 PUBLICATIONS 338 CITATIONS SEE PROFILE Some of the authors of this publication are also working on these related projects: Computational modelling of crack propagation in solids View project Isogeometric analysis View project All content following this page was uploaded by Vinh Phu Nguyen on 03 March 2020. The user has requested enhancement of the downloaded file. How to effortlessly write a high quality scientific paper in the field of computational engineering and sciences a, b c Vinh Phu Nguyen , Stephane Bordas , Alban de Vaucorbeil aDepartment of Civil Engineering, Monash University, Clayton 3800, VIC, Australia bInstitute of Computational Engineering, University of Luxembourg, Faculty of Sciences Communication and Technology, Luxembourg cInstitute for Frontier Materials, Deakin University, Geelong, VIC, 3216, Australia Abstract Starting with a working good research idea, this paper outlines a scientific writing process that helps us to have a nearly complete paper when the last analysis task is finished. The key ideas of this process are: (1) writing should start early in the research project, (2) research and writing are carried out simultaneously, (3) best tools for writing should be used.
    [Show full text]
  • GNOME 3.12 Gnome 3.12 Do You Have a Shiny Touchscreen Laptop? Ben Everard Thinks He May Have Found the Right Desktop Environment for You
    REVIEWS GNOME 3.12 Gnome 3.12 Do you have a shiny touchscreen laptop? Ben Everard thinks he may have found the right desktop environment for you. nome 3.12 is the latest stable incarnation of has received an overhaul and is getting closer in terms DATA the Gnome 3 desktop environment, which of function to the Ubuntu Software Centre, which in includes the Gnome Shell desktop and a range our opinion is the best of such applications for Linux. Web G www.gnome.org of core applications, most of which have seen some It still has a little way to go, but it’s looking good so far. Developer form of improvement. Support for high resolution (HiDPI) screens is The Gnome Project One of these integrated apps is the Videos significantly better than in 3.10, and it’s certainly worth Price application, which has been given a thoroughly taking a look at if you’re struggling to get the best out Free under the GPL modern look with floating controls and links to online of your expensive monitor. This comes as the Gnome video sources. In fact, integration with online services team have been doing excellent work in making the seems to be a focus point for the Gnome team at the desktop look more beautiful. We may even go so far moment. Support for the Pocket app, which is a way as to say that Gnome 3.12 has the most attractive for users to save online content for later perusal, has default state of any Linux desktop.
    [Show full text]
  • Designing Effective Scientific Figures Introduction to Inkscape to Finalise Figures
    Designing effective scientific figures Introduction to Inkscape to finalise figures Aiora Zabala, based on slides by Simon Andrews and Boo Virk Please, find and click on this icon on your computer: What is Inkscape? • Vector Graphics Editor • Free Software • Cross Platform • Easy to use • Good for: – Compositing – Drawing • Not for: – Bitmap editing Bitmap and vector graphics Images are made of Images are made by points and their connections. pixels and a colour Connections can be straight or smooth value Bitmap and vector graphics • No inherent resolution • Fully editable Scaling figures • Vector images can be scaled freely without loss of quality • Bitmap images can be scaled down, but not up Exercise 1: set up a canvas • File > Document Properties – Shows page in view – Doesn’t restrict drawing – Useful as a guide • Change background colour to white • Change to landscape Moving around ● Panning – Scroll bars on bottom / right – Scroll up/down, Shift+scroll for left/right ● Zooming in / out – Click to zoom in, shift+click to zoom out – Control + Scroll Up/Down to zoom in/out to cursor ● Shortcuts – Fit page, drawing, selection in window The main toolbar • Selection tool, F1 Draw freehand lines, F6 • Edit nodes tool, F2 Draw straight lines / curves • Sculpt tool Calligraphy tool • Zoom tool, F3 Add text, F8 • Measurement tool Sculpt with spray • Make rectangles, F4 Erase • Make 3D boxes Fill • Make ellipses / arcs, F5 Edit gradients • Make polygons / stars Select colour • Make spirals, F9 Create diagram connectors Create basic shapes
    [Show full text]