Vnote Documentation Release 1.11.1

Total Page:16

File Type:pdf, Size:1020Kb

Vnote Documentation Release 1.11.1 VNote Documentation Release 1.11.1 Le Tan Feb 13, 2019 User Documentation 1 Why VNote 3 1.1 What is VNote..............................................3 1.2 Why Another Markdown Wheel.....................................3 2 Getting Started 5 2.1 Main Interface..............................................5 2.2 Ready To Go...............................................7 3 Build VNote 9 3.1 Get the Source Code of VNote......................................9 3.2 Get Qt 5.9................................................9 3.3 Windows.................................................9 3.4 Linux...................................................9 3.5 MacOS.................................................. 10 4 Notes Management 13 4.1 Notebook................................................. 13 4.2 Folders.................................................. 14 4.3 Notes................................................... 14 5 Snippet 15 5.1 Snippet Management........................................... 15 5.2 Define A Snippet............................................. 16 5.3 Apply A Snippet............................................. 16 5.4 Examples................................................. 16 6 Magic Word 19 6.1 Built-In Magic Words.......................................... 19 6.2 Custom Magic Words.......................................... 20 6.3 Magic Word In Snippet.......................................... 21 7 Template 23 8 Themes and Styles 25 8.1 Themes.................................................. 25 8.2 Editor Styles............................................... 30 8.3 Rendering Styles............................................. 32 i 8.4 Code Block Rendering Styles...................................... 33 9 Export 35 9.1 Sources.................................................. 36 9.2 Options.................................................. 37 9.3 Formats.................................................. 37 10 Full-Text Search 41 10.1 Keywords................................................. 42 10.2 Scope................................................... 42 10.3 Object.................................................. 42 10.4 Target................................................... 42 10.5 File Pattern................................................ 42 11 Frequently Asked Questions 43 11.1 How to specify customized MathJax script?............................... 43 11.2 How to make VNote more “portable”?................................. 44 11.3 How to draw diagrams using Mermaid or Flowchart.js?........................ 44 11.4 How to open a note in another tab?................................... 45 11.5 Interface is freezed............................................ 46 11.6 Cursor is not visible in edit mode.................................... 46 11.7 Crash when opening a note........................................ 46 11.8 Menu does not work in fullscreen mode................................. 46 ii VNote Documentation, Release 1.11.1 Designed specially for Markdown, VNote is a Vim-inspired note-taking application, which knows programmers and Markdown better. VNote is open source, and available on Github. There are documents in several languages. • English • Simplified Chinese() • Japanese() The main documentation for the site is organized into a couple of sections: • User Documentation • Advanced Documentation • Developer Documentation • About VNote User Documentation 1 VNote Documentation, Release 1.11.1 2 User Documentation CHAPTER 1 Why VNote 1.1 What is VNote VNote is a Vim-inspired Note-taking application, designed specially for Markdown. It is not yet just another Mark- down editor. VNote is designed to be a powerful Markdown editor with sweet note management, or a note-taking application with pleasant Markdown experience. VNote is free, and open source. You could get VNote for Linux, Windows, and macOS. 1.2 Why Another Markdown Wheel 1.2.1 Insights About Markdown Markdown, as a simple mark language, unlike rich text, was born with a gap between edit and read. There are about three ways to handle this gap: 1. As one extreme, some editors just treat Markdown as plain text. Users may lose themselves in the messy black characters. It is hard to keep track of the information of the note. 2. Most Markdown editors use two side-by-side panels to edit and preview Markdown notes simultaneously. It makes things easier since users could see a pleasant typesetting and layout while editing the text. However, two panels may occupy the whole screen and users keep moving eyes left and right, which will be a big distraction. 3. As another extreme, some editors convert the Markdown elements in place immediately after the typing, which makes editing Markdown just like editing rich text document in Word with some shortcuts. This may conflict with what Markdown is intended to be. Since most editors choose the second way to handle the gap, people always think of preview when it comes to Mark- down. It may be a MISUNDERSTANDING about Markdown. Designed as a simple mark language, Markdown is intended to help to keep track of the information of the text when editing and provide a beautiful typesetting when reading after being converted to HTML. 3 VNote Documentation, Release 1.11.1 1.2.2 Tradeoff: VNote’s Way VNote tries to minimize the gap and provide the best-effort WYSIWYG for Markdown via tuned syntax highlights and some other features. By helping to keep track of the content, there is no need to preview or alter the text immediately after being typed. 4 Chapter 1. Why VNote CHAPTER 2 Getting Started VNote is distributed on Linux, Windows, and macOS. You could always download standalone packages from the Downloads page. It is recommended to download and use the stable releases of VNote. If you prefer to use some latest features of VNote, you could try the latest continuous build from master branch. Besides the standalone packages, some package managers may already package and distribute VNote, such as AUR, and homebrew cask. 2.1 Main Interface Here is a snapshot of VNote’s main interface. 5 VNote Documentation, Release 1.11.1 2.1.1 Menubar and Toolbar VNote provides some settings via Menubar at the top of the window and provides some handy shortcuts via Toolbar right below the menubar. Place mouse over the menu item or button, there is a tooltip or status tip to help illustrating the function of that item or button. 2.1.2 Notebooks, Folders, and Notes VNote uses Notebooks, Folders, and Notes hierarchy for note management. The left-side panel is used to navigate through your notebooks, folders, and notes. At the first time you launch VNote, you will be prompted to create your first notebook. A notebook corresponds to a directory in your file system. You should choose an empty directory as your Notebook Root Folder. All the contents of this notebook will be stored whthin the Notebook Root Folder. Once you have a notebook, you could create folders in this notebook. VNote supports infinite levels of folders. The bottom panel at the left side will list all the notes of current folder. You could create a new note via the context menu. 2.1.3 Content Area The middle area which occupies most of the space is the Content Area, which is used to read and edit notes. VNote supports opening multiple notes by tabs. 6 Chapter 2. Getting Started VNote Documentation, Release 1.11.1 2.1.4 Tools Dock Widget At the right-side panel, there are multiple tools to facilitate your reading and editing, such as Outline and Snippets. 2.2 Ready To Go That is it! Now you could read, edit, and mange your notes in VNote! 2.2. Ready To Go 7 VNote Documentation, Release 1.11.1 8 Chapter 2. Getting Started CHAPTER 3 Build VNote You need Qt 5.9 to build VNote from source. 3.1 Get the Source Code of VNote VNote’s source code is available on Github. You could download the ZIP archive of the code. Please be aware of that VNote depends on some submodules, so you should also download the source codes of these modules. The recommended way is using git like this: git clone https://github.com/tamlok/vnote.git vnote.git cd vnote.git git submodule update--init 3.2 Get Qt 5.9 You could get the standalone Qt SDK from Qt Downloads. For users in China, you could speed up the download via the TUNA Mirrors. 3.3 Windows On Windows, you need Visual Studio 2015 or above to compile VNote. Open Qt Creator and open vnote.git\VNote.pro as project. Now you are ready to tune and compile VNote! 3.4 Linux In Ubuntu, you could get Qt 5.9 from PPA like this: 9 VNote Documentation, Release 1.11.1 sudo add-apt-repository ppa:beineri/opt-qt591-trusty -y sudo apt-get update -qq sudo apt-get -y install qt59base qt59webengine sudo apt-get -y install qt59webchannel qt59svg qt59location qt59tools qt59translations source /opt/qt*/bin/qt*-env.sh Then compile and install VNote like this: cd vnote.git mkdir build cd build qmake ../VNote.pro make sudo make install 3.4.1 Fcitx If you use Fcitx as the input method, you need to copy the missing library libfcitxplatforminputcontextplugin.so to Qt’s plugin directory. To find the place of libfcitxplatforminputcontextplugin.so, you could execute: fcitx-diagnose | grep libfcitxplatforminputcontextplugin.so If there is no such lib, you may need to install and configure Fcitx for Qt5 correctly before continue. Then you need to copy the lib to Qt’s plugin directory: <path_to_Qt_installation_directory>/5.9.3/gcc_64/plugins/platforminputcontexts/ 3.4.2 OpenSSL VNote needs openSSL 1.0 for networking. To verify if it has been setup correctly, you could check for updates
Recommended publications
  • Markdown: Syntax
    Markdown Syntax | Fall 2021-22 Markdown: Syntax ● Overview ❍ Philosophy ❍ Inline HTML ❍ Automatic Escaping for Special Characters ● Block Elements ❍ Paragraphs and Line Breaks ❍ Headers ❍ Blockquotes ❍ Lists ❍ Code Blocks ❍ Horizontal Rules ● Span Elements ❍ Links ❍ Emphasis ❍ Code ❍ Images ● Miscellaneous ❍ Backslash Escapes ❍ Automatic Links Overview Philosophy Markdown is intended to be as easy-to-read and easy-to-write as is feasible. Readability, however, is emphasized above all else. A Markdown-formatted document should be publishable as-is, as plain text, without looking like it's been marked up with tags or formatting instructions. While Markdown's syntax has been influenced by several existing text-to-HTML filters -- including Setext, atx, Textile, reStructuredText, Grutatext, and EtText -- the single biggest source of inspiration for Markdown's syntax is the format of plain text email. To this end, Markdown's syntax is comprised entirely of punctuation characters, which punctuation characters have been carefully chosen so as to look like what they mean. E.g., asterisks around a word actually look like *emphasis*. Markdown lists look like, well, lists. Even blockquotes look like quoted passages of text, assuming you've ever used email. Inline HTML Markdown's syntax is intended for one purpose: to be used as a format for writing for the web. Markdown is not a replacement for HTML, or even close to it. Its syntax is very small, corresponding only to a very small subset of HTML tags. The idea is not to create a syntax that makes it easier to insert HTML tags. In my opinion, HTML tags are already easy to insert.
    [Show full text]
  • Tinn-R Team Has a New Member Working on the Source Code: Wel- Come Huashan Chen
    Editus eBook Series Editus eBooks is a series of electronic books aimed at students and re- searchers of arts and sciences in general. Tinn-R Editor (2010 1. ed. Rmetrics) Tinn-R Editor - GUI forR Language and Environment (2014 2. ed. Editus) José Cláudio Faria Philippe Grosjean Enio Galinkin Jelihovschi Ricardo Pietrobon Philipe Silva Farias Universidade Estadual de Santa Cruz GOVERNO DO ESTADO DA BAHIA JAQUES WAGNER - GOVERNADOR SECRETARIA DE EDUCAÇÃO OSVALDO BARRETO FILHO - SECRETÁRIO UNIVERSIDADE ESTADUAL DE SANTA CRUZ ADÉLIA MARIA CARVALHO DE MELO PINHEIRO - REITORA EVANDRO SENA FREIRE - VICE-REITOR DIRETORA DA EDITUS RITA VIRGINIA ALVES SANTOS ARGOLLO Conselho Editorial: Rita Virginia Alves Santos Argollo – Presidente Andréa de Azevedo Morégula André Luiz Rosa Ribeiro Adriana dos Santos Reis Lemos Dorival de Freitas Evandro Sena Freire Francisco Mendes Costa José Montival Alencar Junior Lurdes Bertol Rocha Maria Laura de Oliveira Gomes Marileide dos Santos de Oliveira Raimunda Alves Moreira de Assis Roseanne Montargil Rocha Silvia Maria Santos Carvalho Copyright©2015 by JOSÉ CLÁUDIO FARIA PHILIPPE GROSJEAN ENIO GALINKIN JELIHOVSCHI RICARDO PIETROBON PHILIPE SILVA FARIAS Direitos desta edição reservados à EDITUS - EDITORA DA UESC A reprodução não autorizada desta publicação, por qualquer meio, seja total ou parcial, constitui violação da Lei nº 9.610/98. Depósito legal na Biblioteca Nacional, conforme Lei nº 10.994, de 14 de dezembro de 2004. CAPA Carolina Sartório Faria REVISÃO Amek Traduções Dados Internacionais de Catalogação na Publicação (CIP) T591 Tinn-R Editor – GUI for R Language and Environment / José Cláudio Faria [et al.]. – 2. ed. – Ilhéus, BA : Editus, 2015. xvii, 279 p. ; pdf Texto em inglês.
    [Show full text]
  • Why Scholars Should Write in Markdown
    A Why scholars should write in Markdown Stuart M. Shieber With few exceptions, scholars would be better off writing their papers in a lightweight markup format called Markdown, rather than using a word-processing program like Microsoft Word. This post explains why, and reveals a hidden agenda as well.1 MICROSOFT WORD IS NOT APPROPRIATE FOR SCHOLARLY ARTICLE PRODUCTION Before turning to lightweight markup, I review the problems with Microsoft Word as the lingua franca for producing scholarly articles. This ground has been heavily covered. (Here’s a recent example.) The problems include: Substantial learning curve. Microsoft Word is a complicated program that is difficult to use well. Appearance versus structure. Word-processing programs like Word conflate composition with typesetting. They work by having you specify how a document should look, not how it is structured. A classic example is section headings. In a typical markup language, you specify that something is a heading by marking it as a heading. In a word-processing program you might specify that something is a heading by increasing the font size and making it bold. Yes, Word has “paragraph styles”, and some people sometimes use them more or less properly, if you can figure out how. But most people don’t, or don’t do so consistently, and the resultant chaos has been well documented. It has led to a whole industry of people who specialize in massaging Word files into some semblance of consistency. Backwards compatibility. Word-processing program file formats have a tendency to change. Word itself has gone through multiple incompatible file formats in the last decades, one every couple of years.
    [Show full text]
  • Markdown-Memo Example Document
    DRAFT: August 28, 2021. Please do not cite without permission. EXAMPLE-DOC-000 markdown-memo example document: make writing easier and more productive Ryan Reece∗ Jane Coauthor† August 28, 2021 This is an example document discussing and demonstrating how to use the markdown- memo package, meant to aid quick development of quality html and pdf documents from simple Markdown markup. Markdown-memo is developed by Ryan Reece at https://github.com/rreece/markdown-memo. Keywords: academic writing, blogging, digital humanities, LaTeX, Markdown, open publishing, open science, productivity, technical writing, typesetting, writing Contents 1 Introduction3 1.1 What this is for . .3 1.2 How it works . .3 2 Getting started4 2.1 Checking-out the template . .4 2.2 Requirements . .4 2.3 Starting a page or section . .5 2.4 Going from there . .5 2.5 Building your document . .6 3 Markdown basics6 3.1 Sections . .7 3.2 Lists . .7 3.3 Blocks . .8 3.4 Fonts . 10 3.5 Links and labels . 10 3.6 Footnotes . 11 4 Bibliographies 12 4.1 Making a bibliography . 12 ∗University of California, Santa Cruz / [email protected] / http://rreece.github.io †Joe University, Joeville / [email protected] / http://jane.joe.edu © 2015-2021 Ryan Reece. Licensed for sharing under CC-BY-4.0. 4.2 Doing citations . 12 5 Mathematical expressions 13 5.1 Typesetting math . 13 5.2 Mathjax . 15 6 Floats, Figures, and Tables 15 6.1 Figures . 15 6.2 Tables . 17 6.3 Table of contents per html page . 19 6.4 Clickmore . 19 6.5 PlotTable .
    [Show full text]
  • Latex-Test 2016-09-05
    latex-test 2016-09-05 Ken Moffat 1 Introduction, or my history with LATEX A frustrating but sometimes educational experience. It is easy to forget that TEX is at heart an old-school programming language, with a lot of additional macros added over the years, and many different options. Like all programming languages, it takes a long time to achieve any level of competence. One day in February 2014, somebody noticed that our (BLFS) build of texlive did not build all of the package (and so, anybody who be- gan by installing the binary install-tl-unx still had programs which were not built from source). I had no experience of this [ insert profanities here ] typesetting system, and my initial attempts to try to use it found many exam- ples which perhaps worked when they were posted, but did not work for me. Eventually, I found a few routines which gave me a little confidence that some of it worked. Getting a working version of xindy to build was fun. Eventually I came back to this, got more of it working, and even- tually got it all working from source (although on one of my ma- chines the binary version of ConTeXt failed - that CPU did not sup- port some SSE options that the contributed binary used, but such is life and anyway we prefer to build from source!). The tests are now here to check that a new version works. Along the way, I have discovered that I really dislike much of TEX it- self, and LATEX too is a bit problematic: • The Fonts are ugly.
    [Show full text]
  • Markdown & Github
    Markdown & GitHub CSCI 5828: Foundations of Software Engineering Lecture 3 — 09/01/2015 © Kenneth M. Anderson, 2015 1 Lecture Goals • Present a brief introduction to Markdown and GitHub • Present examples of the types of presentations I want you to create © Kenneth M. Anderson, 2015 2 Purpose: Getting Ready for the Presentations • I’m asking that all presentations this semester be uploaded to GitHub • That means you need to be comfortable with the following technologies • git • Markdown • GitHub • Last Thursday and today, I presented an introduction to git • Now, let’s continue and learn about Markdown and GitHub • I will then bring it all together and show you some example presentations © Kenneth M. Anderson, 2015 3 Markdown • Markdown is a mark-up language created by John Gruber in 2004. • The spec has been available from his website, Daring Fireball, ever since • <http://daringfireball.net/projects/markdown/> • He describes it like this: • Markdown is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML). • Thus, “Markdown” is two things: (1) a plain text formatting syntax; and … • The overriding design goal for Markdown’s formatting syntax is to make it as readable as possible. The idea is that a Markdown-formatted document should be publishable as-is, as plain text, without looking like it’s been marked up with tags or formatting instructions. While Markdown’s syntax has been influenced by several existing text-to-HTML filters, the single biggest source of inspiration for Markdown’s syntax is the format of plain text email.
    [Show full text]
  • R Markdown Cheat Sheet I
    1. Workflow R Markdown is a format for writing reproducible, dynamic reports with R. Use it to embed R code and results into slideshows, pdfs, html documents, Word files and more. To make a report: R Markdown Cheat Sheet i. Open - Open a file that ii. Write - Write content with the iii. Embed - Embed R code that iv. Render - Replace R code with its output and transform learn more at rmarkdown.rstudio.com uses the .Rmd extension. easy to use R Markdown syntax creates output to include in the report the report into a slideshow, pdf, html or ms Word file. rmarkdown 0.2.50 Updated: 8/14 A report. A report. A report. A report. A plot: A plot: A plot: A plot: Microsoft .Rmd Word ```{r} ```{r} ```{r} = = hist(co2) hist(co2) hist(co2) ``` ``` Reveal.js ``` ioslides, Beamer 2. Open File Start by saving a text file with the extension .Rmd, or open 3. Markdown Next, write your report in plain text. Use markdown syntax to an RStudio Rmd template describe how to format text in the final report. syntax becomes • In the menu bar, click Plain text File ▶ New File ▶ R Markdown… End a line with two spaces to start a new paragraph. *italics* and _italics_ • A window will open. Select the class of output **bold** and __bold__ you would like to make with your .Rmd file superscript^2^ ~~strikethrough~~ • Select the specific type of output to make [link](www.rstudio.com) with the radio buttons (you can change this later) # Header 1 • Click OK ## Header 2 ### Header 3 #### Header 4 ##### Header 5 ###### Header 6 4.
    [Show full text]
  • Can Libreoffice and Apache Openoffice Be Alternatives to MS-Office from Consumer's Perspective?
    2016 2 nd International Conference on Social, Education and Management Engineering (SEME 2016) ISBN: 978-1-60595-336-6 "Make It Possible" Study: Can LibreOffice and Apache OpenOffice Be Alternatives to MS-Office from Consumer's Perspective? Jun IIO 1,* and Shusaku OHGAMA 2 1Socio-informatics Dept. Faculty of Letters, Chuo University, 742-1 Higashinakano, Hachioji-shi, Tokyo, Japan 2Information Technology Dept. Information Systems Div., Sumitomo Electric Industries, Ltd., 4-5-33 Kitahama, Chuo-ku, Osaka-shi, Osaka, Japan *Corresponding author Keywords: Open-source software, LibreOffice, OpenOffice, Productivity suites. Abstract. There are many guidebooks which offer some instruction of using productivity suites, and most of them focus on Microsoft's Office (MS-Office,) because it is the dominant products in the market. However, we have some other productivity suites, such as LibreOffice and Apache OpenOffice, as the alternative of MS-Office. Therefore, we investigated whether such software could be used properly, within the content of the guidebooks which are widely used. In this paper, the results of our investigation show that the interoperability of such software has already reached a tolerable level from a practical perspective. Introduction Recently, we can find in bookstores many books for reference that provide guidelines on how to operate productivity suites. However, most of them only focus on Microsoft's Office suites (MS-Office,) because it has the largest market share in the world in the productivity software market. On the other hand, there are some other options, such as LibreOffice and Apache OpenOffice. In recent days, persons in businesses face some problems in using these productivity suites.
    [Show full text]
  • Dejavu Sans Wenquanyi Micro Hei Aura Documentation Release 1.3.0
    DejaVu Sans WenQuanYi Micro Hei Aura Documentation Release 1.3.0 Colin Woodbury Feb 08, 2018 Contents 1 General 3 1.1 Aura 2 Design..............................................3 1.1.1 Preface.............................................3 1.1.2 Mission Statement.......................................3 1.1.3 Functionality..........................................3 General..............................................3 Other...............................................8 Plugins.............................................. 10 Aesthetics............................................. 11 Haskell Requirements...................................... 12 Package Requirements...................................... 12 1.1.4 Arch Linux Specifics...................................... 13 ABS Package Building/Installation............................... 13 AUR Package Building/Installation............................... 13 PKGBUILD/Additional Build-file Editing............................ 13 AUR Interaction......................................... 13 1.1.5 Coding Standards........................................ 13 Record Syntax.......................................... 13 1.2 Aura Changelog............................................. 14 1.2.1 1.4.0............................................... 14 1.2.2 1.3.9............................................... 14 1.2.3 1.3.8............................................... 14 1.2.4 1.3.5............................................... 14 1.2.5 1.3.4............................................... 14 1.2.6 1.3.3..............................................
    [Show full text]
  • Referência Debian I
    Referência Debian i Referência Debian Osamu Aoki Referência Debian ii Copyright © 2013-2021 Osamu Aoki Esta Referência Debian (versão 2.85) (2021-09-17 09:11:56 UTC) pretende fornecer uma visão geral do sistema Debian como um guia do utilizador pós-instalação. Cobre muitos aspetos da administração do sistema através de exemplos shell-command para não programadores. Referência Debian iii COLLABORATORS TITLE : Referência Debian ACTION NAME DATE SIGNATURE WRITTEN BY Osamu Aoki 17 de setembro de 2021 REVISION HISTORY NUMBER DATE DESCRIPTION NAME Referência Debian iv Conteúdo 1 Manuais de GNU/Linux 1 1.1 Básico da consola ................................................... 1 1.1.1 A linha de comandos da shell ........................................ 1 1.1.2 The shell prompt under GUI ......................................... 2 1.1.3 A conta root .................................................. 2 1.1.4 A linha de comandos shell do root ...................................... 3 1.1.5 GUI de ferramentas de administração do sistema .............................. 3 1.1.6 Consolas virtuais ............................................... 3 1.1.7 Como abandonar a linha de comandos .................................... 3 1.1.8 Como desligar o sistema ........................................... 4 1.1.9 Recuperar uma consola sã .......................................... 4 1.1.10 Sugestões de pacotes adicionais para o novato ................................ 4 1.1.11 Uma conta de utilizador extra ........................................ 5 1.1.12 Configuração
    [Show full text]
  • Aligning Intent and Behavior in Software Systems: How Programs Communicate & Their Distribution and Organization
    © 2020 William B. Dietz ALIGNING INTENT AND BEHAVIOR IN SOFTWARE SYSTEMS: HOW PROGRAMS COMMUNICATE & THEIR DISTRIBUTION AND ORGANIZATION BY WILLIAM B. DIETZ DISSERTATION Submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy in Computer Science in the Graduate College of the University of Illinois at Urbana-Champaign, 2020 Urbana, Illinois Doctoral Committee: Professor Vikram Adve, Chair Professor John Regehr, University of Utah Professor Tao Xie Assistant Professor Sasa Misailovic ABSTRACT Managing the overwhelming complexity of software is a fundamental challenge because complex- ity is the root cause of problems regarding software performance, size, and security. Complexity is what makes software hard to understand, and our ability to understand software in whole or in part is essential to being able to address these problems effectively. Attacking this overwhelming complexity is the fundamental challenge I seek to address by simplifying how we write, organize and think about programs. Within this dissertation I present a system of tools and a set of solutions for improving the nature of software by focusing on programmer’s desired outcome, i.e. their intent. At the program level, the conventional focus, it is impossible to identify complexity that, at the system level, is unnecessary. This “accidental complexity” includes everything from unused features to independent implementations of common algorithmic tasks. Software techniques driving innovation simultaneously increase the distance between what is intended by humans – developers, designers, and especially the users – and what the executing code does in practice. By preserving the declarative intent of the programmer, which is lost in the traditional process of compiling and linking and building software, it is easier to abstract away unnecessary details.
    [Show full text]
  • Ultimate++ Forum It Higher Priority Now
    Subject: It's suspected to be an issue with Font. Posted by Lance on Fri, 18 Mar 2011 22:50:28 GMT View Forum Message <> Reply to Message The programs I used to compare are UWord from the UPP, and MS Word. The platform is Windows 7. The text I used to test is: The problem with U++ drawed text is that some characters are notably larger than others and some have incorrect horizontal displacement. Please see attached picture for a visual effect. I also encountered issue where chinese characters are displayed correctly displayed on Windows but are blank on Ubuntu. And when I copies the same text that was displayed as blank to, say gedit, the text displayed correctly as in Windows. That part I will attach picture in future. File Attachments 1) font problem.png, downloaded 650 times Subject: Re: It's suspected to be an issue with Font. Posted by mirek on Sun, 10 Apr 2011 12:42:52 GMT View Forum Message <> Reply to Message Lance wrote on Fri, 18 March 2011 18:50The programs I used to compare are UWord from the UPP, and MS Word. The platform is Windows 7. The text I used to test is: The problem with U++ drawed text is that some characters are notably larger than others and some have incorrect horizontal displacement. It works fine on my Windows 7. However, I believe that the problem is caused by font substitution mechanism and perhaps on your system, you have some font that takes precendence for some glyphs, but does not contain other characters.
    [Show full text]