Available online at ScienceDirect. Procedia Computer Science 60 (2015 )

Size: px
Start display at page:

Download "Available online at ScienceDirect. Procedia Computer Science 60 (2015 )"

Transcription

1 Available online at ScienceDirect Procedia Computer Science 60 (2015 ) th International Conference on Knowledge Based and Intelligent Information and Engineering Systems A Web-based Application for Writing Novels Shouhei Nishihara a, Motoki Miura b a Department of Applied Science for Integrated System Engineering, Kyushu Institute of Technology, 1-1 Sensui, Tobata, Kitakyushu Fukuoka, , Japan b Faculty of Basic Sciences, Kyushu Institute of Technology, 1-1 Sensui, Tobata, Kitakyushu Fukuoka, , Japan Abstract In this paper, we propose a method for assisting amateur writers in novel writing. Amateur writers can publish their work intensively through web infrastructures. This situation is beneficial, because it encourages amateur writers to enhance their skills by sharing their work. However, writing a good novel is difficult for a novice, because the novel-writing task requires the management of many character settings and maintenance of consistency throughout the novel. The length of a novel increases the difficulty of the task and decreases motivation owing to cumbersome management tasks. To reduce the burden, we introduce automatic keyword suggestion and highlighting techniques. Automatic keyword suggestion finds names of characters from the draft text and proposes their addition to the character list. The character names in the list are automatically linked to the corresponding words in the draft text. Using such functions, amateur writers can easily check the consistency of their novels while writing, similar to the use of an integrated development environment for software development. We have implemented a web application that provides the functions, and we consider the effectiveness of the proposed method here. c 2015 The Authors. Published by by Elsevier B.V. B.V. This is an open access article under the CC BY-NC-ND license ( Peer-review under responsibility of KES International. Peer-review under responsibility of KES International Keywords: Keyword Suggestion; Novice Writer Support; Web-based Editor; 1. Introduction The recent rapid evolution of the Internet enables the publicizing of a person s creative work at low cost. As a result, various creative activities, such as writing novels, have become popular among amateurs. Amateur novelists post their work on their personal sites, bulletin boards, or comprehensive sites, increasing the total number of novels on the web. However, writing a novel is difficult. Novelists must simultaneously consider many factors, such as determining details of the story, selecting suitable words, and managing settings. Moreover, novelists review their written text frequently, because it might include mistakes or inconsistencies. As the text of the novel lengthens, the reviews become more difficult, complicated, and time consuming. The time and effort of novelists is better used for Corresponding author. Tel.: address: nisisyou24@gmail.com The Authors. Published by Elsevier B.V. This is an open access article under the CC BY-NC-ND license ( Peer-review under responsibility of KES International doi: /j.procs

2 Shouhei Nishihara and Motoki Miura / Procedia Computer Science 60 ( 2015 ) creative writing tasks, if possible, and not for consistency checks and character management. This applies especially to amateur writers, who have limited time to spare for writing. To maximize efficiency, we propose a method that assists amateur writers in writing novels. The method contains functions of automatic keyword suggestion and highlighting derived from an integrated development environment (IDE). By applying these functions to writing novels, amateur writers can reduce the burden of consistency checks and character management. In addition, we have developed a web application that provides these functions. Using the framework of the web application, amateur writers can utilize the functions immediately, without installing new software. The structure of the paper is as follows. In section 2, we describe the method we propose in detail. Section 3 describes the implementation of the web application that realizes the proposed method. In section 4, we review related work regarding the use of software to write or generate novels. We conclude and discuss future work in section Proposed method In this section, we describe our proposed method to reduce the burdens of consistency checks and character management for amateur novelists. The method contains functions for (1) automatic keyword extraction, (2) keyword highlighting, and (3) commenting. Using these functions, amateur writers can reduce the time and effort of those tasks Automatic keyword extraction First, we describe automatic keyword extraction. The purpose of automatic keyword extraction is to facilitate writers management of characters and to highlight keywords while editing the main text. This assists writers in maintaining consistency of character settings and preferences. The function extracts candidates for character names as follows. Since the names of characters tend to appear frequently in the main text of the novel and consist primarily of proper nouns, the function identifies proper nouns appearing in the main text. Novels typically include keywords, which are used frequently, primarily with a novel s setting. If a name has been used in the text, the character setting is used in the scenario. Therefore, automatically identifying keywords can reduce the labor required for the confirmation of a novel s setting. We expect that frequent confirmation will reduce conflicts. To extract proper nouns, we use Mecab 1 a morphological analyzer. Mecab recognizes Japanese text and outputs the types of the words. Through the use of Mecab, proper nouns can be extracted as candidates for character names Character management Candidates for character names extracted using automatic keyword extraction are shown on the display. When an amateur writer selects a candidate, the word is registered to a character table. The character table provides functions for managing each character, which contain the name and preferences, such as sex, year, and personality profile. These preferences are to be inputted by amateur writers themselves at the time of registration, or afterward. Since the preferences are always shown in the display, amateur writers can check them at any time while writing the main text Keyword highlighting To ease the writers checking of registered character names, we introduce a keyword highlighting function. The keyword highlighting function displays the registered character names in different styles of text in the main text editor. The text style contains the text and background colors, as specified by the writers Comment function To maintain miscellaneous settings and preferences of supporting role characters, we introduced a comment function. The comment function enables writers to record miscellaneous notes within the main text. Since the comment

3 1016 Shouhei Nishihara and Motoki Miura / Procedia Computer Science 60 ( 2015 ) function is an important feature of an IDE, we included the function in the novel editor. Using the function can help amateur writers remember their ideas and thoughts when writing the text. 3. Implementation We have developed a web application to implement the proposed method and the functions described above. In this section, we explain details of those functions through examples. Fig. 1 shows a screenshot of our prototype system. The system consists primarily of three parts, (1) scenario outline editor, (2) setting management table, and (3) main text editor. Fig. 1. Prototype system. First, the writer composes an outline of the scenarios using the scenario outline editor. Each row of the scenario outline editor represents a scenario unit (e.g., chapter). Some rows might have sub-rows (e.g., sections). As a result, the rows organize the outline of the novel. By selecting scenario units, writers can change the active scenario unit. Since the main text of the novel is managed separately in the scenario unit, the main text editor displays only content related to the active scenario unit. Settings that are highly related to the active scenario unit are displayed in a setting management table Automatic keyword extraction Writers input the text in the main text editor as usual. The inputted text is stored in the scenario units. Keyword extraction begins, when the [auto table] button is pressed. The prototype system transfers the text to a server-side script, which then processes the text using Mecab 1. Mecab separates the text into words by considering the types of words. The script picks up only nouns and noun phrases, counts the occurrences, and returns the words and phrases list sorted by frequency. Fig. 2 shows the keywords extracted from Run, Melos!, a famous story in Japan. The count represents the number of occurrences in the text. In this case, the count of the hero Melos was 75. However, some unnecessary words also appeared in the list. To remove the unnecessary words, we introduced some stop-words that are not to be included in the list. Figure 3 shows the results of the modification. We consider that the stop-words can be managed semi-automatically by introducing extra rules. For example, some unnecessary words can be detected as being single Hiragana letters (in Fig. 2 (1)), general nouns (Fig. 2 (2)), or non-independent words (Fig. 2 (3)).

4 Shouhei Nishihara and Motoki Miura / Procedia Computer Science 60 ( 2015 ) Fig. 2. Extracted keywords (before modification) Fig. 3. Extracted keywords (after modification) Fig. 4 shows the interface for registering keywords from the extracted words. The number next to a word indicates the word s frequency. Writers can select words by clicking the corresponding check boxes. Only the words selected are imported into the setting management table. In Fig. 4, the writer selects four words to be imported. Fig. 5. Setting management table Fig. 4. Interface for registering keywords Fig. 5 shows a snapshot of the setting management table after importing the selected words. The writer can manage the table by inputting preferences for each character. Moreover, the writer can define aliases (i.e., alternative names) for characters. For example, friend always represents Selinuntius, Melos s friend. In such a case, the word friend is an alias of Selinuntius. The setting management table provides a simple sorting function. A writer can reorder the list of characters by clicking column headers. When writers sort the list by frequency, they can review the key characters in that scenario Keyword highlighting We have implemented a keyword highlighting function to assist writers in recognizing the appearance of characters in the main text. When writers click on a Search button displayed on the setting management table (see Fig. 6), the word is highlighted with different text and background colors (see Fig. 7). In the prototype system, the default colors of text and background are assigned automatically. When writers change the color setting, the behavior of the main text editor changes dynamically. The highlighting of the word is removed, when the button is clicked again. The dynamic highlighting of the main text editor was implemented using CodeMirror 2 a Javascript-based text editor. Fig. 8 illustrates dynamic behaviors of the main text editor. Once the highlighted word in the main text editor is

5 1018 Shouhei Nishihara and Motoki Miura / Procedia Computer Science 60 ( 2015 ) modified, the effect of the highlighting disappears. Conversely, when a writer inputs the word again, it is highlighted automatically by the main text editor. Fig. 6. Search button. Fig. 7. Highlighted text Comment function Fig. 9 shows a screenshot of the main text editor when it contains several comments. Writers can embed comments by surrounding the text with an at sign (@). When two at signs appear in the text, the remaining line becomes a comment. The regions of the comment are also highlighted with different colors in the main text editor. The comment function is useful for remembering miscellaneous settings. If the story was sufficiently short, the writer can finish writing without interruption. However, it is difficult to maintain miscellaneous settings when writing a long story. In such a case, settings are typically written in other notebooks. However, management of the other notebooks increases the burden and time for referring to notes. We consider that the comment function solves the issues of referring to notes by embedding them. The comment function can be used to improve the text by trial and error. Writers can easily switch two or more sentences by adding or removing the at signs. For a writer who wants to check all the comments, we have developed a function to bundle all comments through the main text. At present, the system does not support the maintenance of consistency between the main text and the

6 Shouhei Nishihara and Motoki Miura / Procedia Computer Science 60 ( 2015 ) Fig. 8. Dynamic behavior of the main text editor. contents of the comments. Consequently, writers are responsible for finding contradictions and maintaining consistency. Fig. 9. Comment function. 4. Related works Automation of novel creation has been extensively studied. BRUTUS 3 is a program that writes short stories on pre-defined themes such as betrayal. MINSTREL 4 is a case-based problem-solver that stores past cases in an episodic memory. MEXICA 5 is a computer model based on an engagement-reflection cognitive account of creative writing that produces stories. These systems automatically produce text using their respective methods. Such automatic writing might be of help when amateur writers begin writing prologs, one of the most difficult tasks. However, the automatic writing approach can reduce the creativity of amateur writers. Therefore, we recommend that the use of automatic text generation be limited. Literate programming 6 is an approach to programming introduced by Donald Knuth in which a program is given as an explanation of the program logic in a natural language such as English. We adopted the literate programming approach for writing novels and incorporated it into our web-based system. Spell checking 7 is a fundamental method for reducing misspelling. The result of spell checking is shown by text with highlighting, such as underlining. For programming editors, syntax highlighting is also popular for reducing errors and recognizing structure. Therefore, we expect that these features can be used to support novel writing.

7 1020 Shouhei Nishihara and Motoki Miura / Procedia Computer Science 60 ( 2015 ) Conclusion and Future Work In this paper, we proposed a method and implemented a web application to assist amateur writers in writing novels. In particular, we introduced automatic keyword suggestion and highlighting techniques. The automatic keyword suggestion finds names of characters from the draft text and proposes them for adding to the character list. The selected keywords are highlighted in the main text editor. We also provided setting manager and comment functions to enrich the novel-writing environment. Using such functions, similar to the use of an IDE, amateur writers can easily check the consistency of their novels while writing. We hope that the web application contributes to the popularization of novel writing by amateurs. This system was developed for writing a single novel. However, writers sometimes create a series of novels. As future work, we will consider how to share and apply the novels settings throughout a series of novels. We will also improve the accuracy of automatic keyword extraction using natural language processing. Once the accuracy of keyword extraction is improved, we will assess the performance of the system. To assess the performance, we will ask some writers to utilize the system and provide feedback. In addition, we will evaluate the usability of the system by reviewing tasks of existing novels. References 1. Kudo, T.. Mecab: Yet another part-of-speech and morphological analyzer Haverbeke, M.. Codemirror (version 2. x) Bringsjord, S., Ferrucci, D.. Artificial intelligence and literary creativity: Inside the mind of brutus, a storytelling machine. Psychology Press; Turner, S.R.. Minstrel: a computer model of creativity and storytelling 1993;. 5. PÉrez, R.P.Ý., Sharples, M.. Mexica: A computer model of a cognitive account of creative writing. Journal of Experimental & Theoretical Artificial Intelligence 2001;13(2): Knuth, D.E.. Literate programming. The Computer Journal 1984;27(2): Zhao, Y., Truemper, K.. Effective spell checking by learning user behavior. Applied Artificial Intelligence 1999;13(8): Acknowledgements The part of this research was supported by the fund of Telecommunication Advancement Foundation and JSPS KAKENHI Grant-in-Aid for Scientific Research (C): Grant Number 15K00485.

Available online at ScienceDirect. Procedia Computer Science 60 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 60 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 60 (2015 ) 891 899 19th International Conference on Knowledge Based and Intelligent Information and Engineering Systems

More information

Available online at ScienceDirect. Procedia Computer Science 96 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 96 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 96 (2016 ) 946 950 20th International Conference on Knowledge Based and Intelligent Information and Engineering Systems

More information

PastePost: A Web Interface for Editing Instructions with Captured Image

PastePost: A Web Interface for Editing Instructions with Captured Image Available online at www.sciencedirect.com Procedia Computer Science 00 (2013) 000 000 17 th International Conference in Knowledge Based and Intelligent Information and Engineering Systems - KES2013 PastePost:

More information

View and Submit an Assignment in Criterion

View and Submit an Assignment in Criterion View and Submit an Assignment in Criterion Criterion is an Online Writing Evaluation service offered by ETS. It is a computer-based scoring program designed to help you think about your writing process

More information

SCADA virtual instruments management

SCADA virtual instruments management Available online at www.sciencedirect.com ScienceDirect Procedia Economics and Finance 15 ( 2014 ) 1259 1264 Emerging Markets Queries in Finance and Business SCADA virtual instruments management Traian

More information

doi: / _32

doi: / _32 doi: 10.1007/978-3-319-12823-8_32 Simple Document-by-Document Search Tool Fuwatto Search using Web API Masao Takaku 1 and Yuka Egusa 2 1 University of Tsukuba masao@slis.tsukuba.ac.jp 2 National Institute

More information

Available online at ScienceDirect. Procedia Computer Science 56 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 56 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 56 (2015 ) 612 617 International Workshop on the Use of Formal Methods in Future Communication Networks (UFMFCN 2015) A

More information

SFU CMPT week 11

SFU CMPT week 11 SFU CMPT-363 2004-2 week 11 Manuel Zahariev E-mail: manuelz@cs.sfu.ca Based on course material from Arthur Kirkpatrick, Alissa Antle and Paul Hibbits July 21, 2004 1 Analytic Methods Advantages can be

More information

SCADA Systems Management based on WEB Services

SCADA Systems Management based on WEB Services Available online at www.sciencedirect.com ScienceDirect Procedia Economics and Finance 32 ( 2015 ) 464 470 Emerging Markets Queries in Finance and Business SCADA Systems Management based on WEB Services

More information

Available online at ScienceDirect. Procedia Engineering 90 (2014 )

Available online at  ScienceDirect. Procedia Engineering 90 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 90 (2014 ) 288 293 10th International Conference on Mechanical Engineering, ICME 2013 Parallelization of enriched free mesh

More information

Revealing the Modern History of Japanese Philosophy Using Digitization, Natural Language Processing, and Visualization

Revealing the Modern History of Japanese Philosophy Using Digitization, Natural Language Processing, and Visualization Revealing the Modern History of Japanese Philosophy Using Digitization, Natural Language Katsuya Masuda *, Makoto Tanji **, and Hideki Mima *** Abstract This study proposes a framework to access to the

More information

Toward Part-based Document Image Decoding

Toward Part-based Document Image Decoding 2012 10th IAPR International Workshop on Document Analysis Systems Toward Part-based Document Image Decoding Wang Song, Seiichi Uchida Kyushu University, Fukuoka, Japan wangsong@human.ait.kyushu-u.ac.jp,

More information

Available online at ScienceDirect. Procedia Computer Science 56 (2015 )

Available online at   ScienceDirect. Procedia Computer Science 56 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 56 (2015 ) 150 155 The 12th International Conference on Mobile Systems and Pervasive Computing (MobiSPC 2015) A Shadow

More information

Three-Dimensional Reconstruction from Projections Based On Incidence Matrices of Patterns

Three-Dimensional Reconstruction from Projections Based On Incidence Matrices of Patterns Available online at www.sciencedirect.com ScienceDirect AASRI Procedia 9 (2014 ) 72 77 2014 AASRI Conference on Circuit and Signal Processing (CSP 2014) Three-Dimensional Reconstruction from Projections

More information

Research on software development platform based on SSH framework structure

Research on software development platform based on SSH framework structure Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 3078 3082 Advanced in Control Engineering and Information Science Research on software development platform based on SSH framework

More information

ScienceDirect. Extending Lifetime of Wireless Sensor Networks by Management of Spare Nodes

ScienceDirect. Extending Lifetime of Wireless Sensor Networks by Management of Spare Nodes Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 34 (2014 ) 493 498 The 2nd International Workshop on Communications and Sensor Networks (ComSense-2014) Extending Lifetime

More information

A Prototype System to Browse Web News using Maps for NIE in Elementary Schools in Japan

A Prototype System to Browse Web News using Maps for NIE in Elementary Schools in Japan A Prototype System to Browse Web News using Maps for NIE in Elementary Schools in Japan Yutaka Uchiyama *1 Akifumi Kuroda *2 Kazuaki Ando *3 *1, 2 Graduate School of Engineering, *3 Faculty of Engineering

More information

Block Sweetie: Learning Web Application Development by Block Arrangement

Block Sweetie: Learning Web Application Development by Block Arrangement Block Sweetie: Learning Web Application Development by Block Arrangement Motoki Miura Department of Basic Sciences, Faculty of Engineering, Kyushu Institute of Technology 1-1 Sensui, Tobata, Kitakyushu,

More information

Available online at ScienceDirect. Procedia Computer Science 60 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 60 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 60 (2015 ) 1817 1825 19 th International Conference in Knowledge Based and Intelligent Information and Engineering Systems

More information

Available online at ScienceDirect. Procedia Engineering 192 (2017 )

Available online at   ScienceDirect. Procedia Engineering 192 (2017 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 192 (2017 ) 113 118 TRANSCOM 2017: International scientific conference on sustainable, modern and safe transport Utilization

More information

Available online at ScienceDirect. Procedia Computer Science 34 (2014 ) Generic Connector for Mobile Devices

Available online at  ScienceDirect. Procedia Computer Science 34 (2014 ) Generic  Connector for Mobile Devices Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 34 (2014 ) 613 618 International Symposium on Emerging Inter-networks, Communication and Mobility (EICM-2014) Generic Email

More information

Comparative Assessment

Comparative Assessment Danny Hussey IS: 590 Web Development using CMS University of Tennessee School of Information Science Hamilton Parks Public Library Comparative Assessment Content Management Systems Wordpress, Joomla, and

More information

Media Access Delay and Throughput Analysis of Voice Codec with Silence Suppression on Wireless Ad hoc Network

Media Access Delay and Throughput Analysis of Voice Codec with Silence Suppression on Wireless Ad hoc Network Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 79 (2016 ) 940 947 7th International Conference on Communication, Computing and Virtualization 2016 Media Access Delay

More information

ScienceDirect. Exporting files into cloud using gestures in hand held devices-an intelligent attempt.

ScienceDirect. Exporting files into cloud using gestures in hand held devices-an intelligent attempt. Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 50 (2015 ) 258 263 2nd International Symposium on Big Data and Cloud Computing (ISBCC 15) Exporting files into cloud using

More information

Public Opinion Channel: A System for Augmenting Social Intelligence of a Community Tomohiro FUKUHARA 1, 3, Toyoaki NISHIDA 1, 2 and Shunsuke UEMURA 3

Public Opinion Channel: A System for Augmenting Social Intelligence of a Community Tomohiro FUKUHARA 1, 3, Toyoaki NISHIDA 1, 2 and Shunsuke UEMURA 3 Public Opinion Channel: A System for Augmenting Social Intelligence of a Community Tomohiro FUKUHARA 1, 3, Toyoaki NISHIDA 1, 2 and Shunsuke UEMURA 3 1 Synsophy Project, Communications Research Laboratory/

More information

Usability evaluation of e-commerce on B2C websites in China

Usability evaluation of e-commerce on B2C websites in China Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 5299 5304 Advanced in Control Engineering and Information Science Usability evaluation of e-commerce on B2C websites in China Fangyu

More information

Preliminary Research on Distributed Cluster Monitoring of G/S Model

Preliminary Research on Distributed Cluster Monitoring of G/S Model Available online at www.sciencedirect.com Physics Procedia 25 (2012 ) 860 867 2012 International Conference on Solid State Devices and Materials Science Preliminary Research on Distributed Cluster Monitoring

More information

ScienceDirect. A Human-Machine Interface Evaluation Method Based on Balancing Principles

ScienceDirect. A Human-Machine Interface Evaluation Method Based on Balancing Principles Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 69 ( 2014 ) 13 19 24th DAAAM International Symposium on Intelligent Manufacturing and Automation, 2013 A Human-Machine Interface

More information

Student Guide for Usage of Criterion

Student Guide for Usage of Criterion Student Guide for Usage of Criterion Criterion is an Online Writing Evaluation service offered by ETS. It is a computer-based scoring program designed to help you think about your writing process and communicate

More information

(http://www.emeraldinsight.com)

(http://www.emeraldinsight.com) Emerald (http://www.emeraldinsight.com) Emerald publishes the world's widest range of management journals which provides information, ideas and opportunity to gain insight into key management topics. Emerald

More information

Available online at ScienceDirect. Procedia Computer Science 60 (2015 )

Available online at   ScienceDirect. Procedia Computer Science 60 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 60 (2015 ) 1263 1270 19th International Conference on Knowledge Based and Intelligent Information and Engineering Systems

More information

ScienceDirect. Plan Restructuring in Multi Agent Planning

ScienceDirect. Plan Restructuring in Multi Agent Planning Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 46 (2015 ) 396 401 International Conference on Information and Communication Technologies (ICICT 2014) Plan Restructuring

More information

Available online at ScienceDirect. Procedia Computer Science 60 (2015 )

Available online at   ScienceDirect. Procedia Computer Science 60 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 60 (2015 ) 1720 1727 19th International Conference on Knowledge Based and Intelligent Information and Engineering Systems

More information

TE Teacher s Edition PE Pupil Edition Page 1

TE Teacher s Edition PE Pupil Edition Page 1 Standard 4 WRITING: Writing Process Students discuss, list, and graphically organize writing ideas. They write clear, coherent, and focused essays. Students progress through the stages of the writing process

More information

Available online at ScienceDirect. Procedia Engineering 136 (2016 ) Dynamic analysis of fuel tank

Available online at   ScienceDirect. Procedia Engineering 136 (2016 ) Dynamic analysis of fuel tank Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 136 (2016 ) 45 49 The 20 th International Conference: Machine Modeling and Simulations, MMS 2015 Dynamic analysis of fuel tank

More information

UNIVERSITY OF BOLTON WEB PUBLISHER GUIDE JUNE 2016 / VERSION 1.0

UNIVERSITY OF BOLTON WEB PUBLISHER GUIDE  JUNE 2016 / VERSION 1.0 UNIVERSITY OF BOLTON WEB PUBLISHER GUIDE WWW.BOLTON.AC.UK/DIA JUNE 2016 / VERSION 1.0 This guide is for staff who have responsibility for webpages on the university website. All Web Publishers must adhere

More information

THINGS YOU NEED TO KNOW ABOUT USER DOCUMENTATION DOCUMENTATION BEST PRACTICES

THINGS YOU NEED TO KNOW ABOUT USER DOCUMENTATION DOCUMENTATION BEST PRACTICES 5 THINGS YOU NEED TO KNOW ABOUT USER DOCUMENTATION DOCUMENTATION BEST PRACTICES THIS E-BOOK IS DIVIDED INTO 5 PARTS: 1. WHY YOU NEED TO KNOW YOUR READER 2. A USER MANUAL OR A USER GUIDE WHAT S THE DIFFERENCE?

More information

Available online at ScienceDirect. Procedia Engineering 111 (2015 )

Available online at  ScienceDirect. Procedia Engineering 111 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Engineering 111 (2015 ) 902 906 XXIV R-S-P seminar, Theoretical Foundation of Civil Engineering (24RSP) (TFoCE 2015) About development and

More information

Available online at ScienceDirect. Procedia Computer Science 96 (2016 )

Available online at   ScienceDirect. Procedia Computer Science 96 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 96 (2016 ) 179 186 20th International Conference on Knowledge Based and Intelligent Information and Engineering Systems,

More information

WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word.

WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word. Web Writing 101 WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word. Instead, users: Scan pages Pick out key words and phrases Read in

More information

Surface Roughness Control Based on Digital Copy Milling Concept to Achieve Autonomous Milling Operation

Surface Roughness Control Based on Digital Copy Milling Concept to Achieve Autonomous Milling Operation Available online at www.sciencedirect.com Procedia CIRP 4 (2012 ) 35 40 3rd CIRP Conference on Process Machine Interactions (3rd PMI) Surface Roughness Control Based on Digital Copy Milling Concept to

More information

Available online at ScienceDirect. Procedia Computer Science 56 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 56 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 56 (2015 ) 266 270 The 10th International Conference on Future Networks and Communications (FNC 2015) A Context-based Future

More information

Available online at ScienceDirect. Procedia Computer Science 46 (2015 )

Available online at   ScienceDirect. Procedia Computer Science 46 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 46 (2015 ) 949 956 International Conference on Information and Communication Technologies (ICICT 2014) Software Test Automation:

More information

Realizing XML Driven Algorithm Visualization

Realizing XML Driven Algorithm Visualization Electronic Notes in Theoretical Computer Science 178 (2007) 129 135 www.elsevier.com/locate/entcs Realizing XML Driven Algorithm Visualization Thomas Naps 1 Department of Computer Science University of

More information

CORE CONTENT ADOBE PHOTOSHOP ELEMENTS 11 & ADOBE PREMIERE ELEMENTS

CORE CONTENT ADOBE PHOTOSHOP ELEMENTS 11 & ADOBE PREMIERE ELEMENTS CORE CONTENT ADOBE PHOTOSHOP ELEMENTS 11 & ADOBE PREMIERE ELEMENTS 11 8.2.12 The purpose of this document is to provide a central source of marketing content to support various product launch deliverables,

More information

Available online at ScienceDirect. Procedia Computer Science 52 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 52 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 52 (2015 ) 1071 1076 The 5 th International Symposium on Frontiers in Ambient and Mobile Systems (FAMS-2015) Health, Food

More information

Augmenting Cognition with Wearable Computers

Augmenting Cognition with Wearable Computers Augmenting Cognition with Wearable Computers Kent Lyons, Thad Starner College of Computing and GVU Center Georgia Institute of Technology Atlanta, GA 30332-0280 USA {kent,thad}@cc.gatech.edu Abstract Mobile

More information

The C++ SoftBench Class Editor

The C++ SoftBench Class Editor The C++ SoftBench Class Editor The C++ SoftBench class editor adds automatic code generation capabilities to the class graph of the SoftBench static analyzer. Novice C++ programmers can concentrate on

More information

Procedia Computer Science

Procedia Computer Science Procedia Computer Science 3 (2011) 584 588 Procedia Computer Science 00 (2010) 000 000 Procedia Computer Science www.elsevier.com/locate/procedia www.elsevier.com/locate/procedia WCIT 2010 Diagnosing internal

More information

Development of Search Engines using Lucene: An Experience

Development of Search Engines using Lucene: An Experience Available online at www.sciencedirect.com Procedia Social and Behavioral Sciences 18 (2011) 282 286 Kongres Pengajaran dan Pembelajaran UKM, 2010 Development of Search Engines using Lucene: An Experience

More information

Web Design Course Syllabus and Course Outline

Web Design Course Syllabus and Course Outline Web Design Course Syllabus and Course Outline COURSE OVERVIEW AND GOALS In today's world, web pages are the most common medium for sharing ideas and information. Learning to design websites is an incredibly

More information

Available online at ScienceDirect. Procedia Computer Science 45 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 45 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 45 (2015 ) 205 214 International Conference on Advanced Computing Technologies and Applications (ICACTA- 2015) Automatic

More information

Available online at ScienceDirect. Procedia Computer Science 87 (2016 ) 12 17

Available online at  ScienceDirect. Procedia Computer Science 87 (2016 ) 12 17 Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 87 (2016 ) 12 17 4th International Conference on Recent Trends in Computer Science & Engineering Segment Based Indexing

More information

Procedia - Social and Behavioral Sciences 143 ( 2014 ) CY-ICER D visualization in teaching anatomy

Procedia - Social and Behavioral Sciences 143 ( 2014 ) CY-ICER D visualization in teaching anatomy Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 143 ( 2014 ) 367 371 CY-ICER 2014 3D visualization in teaching anatomy David Brazina a, Rostislav Fojtik

More information

USING EPORTFOLIOS TO PROMOTE STUDENT SUCCESS THROUGH HIGH- IMPACT PRACTICES

USING EPORTFOLIOS TO PROMOTE STUDENT SUCCESS THROUGH HIGH- IMPACT PRACTICES P a g e 1 ALBERTUS MAGNUS COLLEGE USING EPORTFOLIOS TO PROMOTE STUDENT SUCCESS THROUGH HIGH- IMPACT PRACTICES PROJECT REPORT, JUNE 14, 2012 STATUS OF PROJECT GOALS With the support of the Davis Educational

More information

The Analysis and Proposed Modifications to ISO/IEC Software Engineering Software Quality Requirements and Evaluation Quality Requirements

The Analysis and Proposed Modifications to ISO/IEC Software Engineering Software Quality Requirements and Evaluation Quality Requirements Journal of Software Engineering and Applications, 2016, 9, 112-127 Published Online April 2016 in SciRes. http://www.scirp.org/journal/jsea http://dx.doi.org/10.4236/jsea.2016.94010 The Analysis and Proposed

More information

Citation for the original published paper (version of record):

Citation for the original published paper (version of record): http://www.diva-portal.org This is the published version of a paper published in Procedia Engineering. Citation for the original published paper (version of record): Zhang, D., Lu, J., Wang, L., Li, J.

More information

Concordia University. Engineering & Computer Science WRITING ABOUT NUMBERS BCEE 6961 GRADUATE SEMINAR IN BUILDING AND CIVIL ENGINEERING

Concordia University. Engineering & Computer Science WRITING ABOUT NUMBERS BCEE 6961 GRADUATE SEMINAR IN BUILDING AND CIVIL ENGINEERING Concordia University Engineering & Computer Science BCEE 6961 GRADUATE SEMINAR IN BUILDING AND CIVIL ENGINEERING Dr. O. A. PEKAU Dr. JAMES HANLEY Be consistent: if O.A. then J.A. or just J. REPORT Deleted:...

More information

Segmentation of Arabic handwritten text to lines

Segmentation of Arabic handwritten text to lines Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 73 (2015 ) 115 121 The International Conference on Advanced Wireless, Information, and Communication Technologies (AWICT

More information

National Training and Education Resource. Authoring Course. Participant Guide

National Training and Education Resource. Authoring Course. Participant Guide National Training and Education Resource Authoring Course Participant Guide Table of Contents: OBJECTIVES... 4 OVERVIEW OF NTER... 5 System Requirements... 5 NTER Capabilities... 6 What is the SCORM PlayerWhat

More information

Web Site Documentation Eugene School District 4J

Web Site Documentation Eugene School District 4J Eugene School District 4J Using this Documentation Revision 1.3 1. Instruction step-by-step. The left column contains the simple how-to steps. Over here on the right is the color commentary offered to

More information

ScienceDirect. Analogy between immune system and sensor replacement using mobile robots on wireless sensor networks

ScienceDirect. Analogy between immune system and sensor replacement using mobile robots on wireless sensor networks Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 35 (2014 ) 1352 1359 18 th International Conference in Knowledge Based and Intelligent Information & Engineering Systems

More information

Available online at ScienceDirect. Procedia Computer Science 59 (2015 )

Available online at  ScienceDirect. Procedia Computer Science 59 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 59 (2015 ) 550 558 International Conference on Computer Science and Computational Intelligence (ICCSCI 2015) The Implementation

More information

ScholarOne Manuscripts. Author User Guide

ScholarOne Manuscripts. Author User Guide ScholarOne Manuscripts Author User Guide 1-May-2018 Clarivate Analytics ScholarOne Manuscripts Author User Guide Page i TABLE OF CONTENTS LOGIN AND ACCOUNT CREATION... 1 Logging In... 1 ORCID Account Creation

More information

Mathematical Model of Network Address Translation Port Mapping

Mathematical Model of Network Address Translation Port Mapping Available online at www.sciencedirect.com ScienceDirect AASRI Procedia 8 (2014 ) 105 111 2014 AASRI Conference on Sports Engineering and Computer Science (SECS 2014) Mathematical Model of Network Address

More information

Creating Word Outlines from Compendium on a Mac

Creating Word Outlines from Compendium on a Mac Creating Word Outlines from Compendium on a Mac Using the Compendium Outline Template and Macro for Microsoft Word for Mac: Background and Tutorial Jeff Conklin & KC Burgess Yakemovic, CogNexus Institute

More information

T-SQL Training: T-SQL for SQL Server for Developers

T-SQL Training: T-SQL for SQL Server for Developers Duration: 3 days T-SQL Training Overview T-SQL for SQL Server for Developers training teaches developers all the Transact-SQL skills they need to develop queries and views, and manipulate data in a SQL

More information

Procedia - Social and Behavioral Sciences 195 ( 2015 ) World Conference on Technology, Innovation and Entrepreneurship

Procedia - Social and Behavioral Sciences 195 ( 2015 ) World Conference on Technology, Innovation and Entrepreneurship Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 195 ( 2015 ) 1959 1965 World Conference on Technology, Innovation and Entrepreneurship Investigation of

More information

Total cost of ownership for application replatform by open-source SW

Total cost of ownership for application replatform by open-source SW Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 91 (2016 ) 677 682 Information Technology and Quantitative Management (ITQM 2016) Total cost of ownership for application

More information

Ghotit Real Writer and Reader for Chromebooks and Android User Guide

Ghotit Real Writer and Reader for Chromebooks and Android User Guide Ghotit Real Writer and Reader for Chromebooks and Android User Guide Version 2.0 2018 Ghotit Ltd. - 1 - Contents Ghotit Real Writer & Reader App... 3 Setup 4 Text Correction Application Main Screen...

More information

Available online at ScienceDirect. Energy Procedia 69 (2015 )

Available online at   ScienceDirect. Energy Procedia 69 (2015 ) Available online at www.sciencedirect.com ScienceDirect Energy Procedia 69 (2015 ) 1885 1894 International Conference on Concentrating Solar Power and Chemical Energy Systems, SolarPACES 2014 Heliostat

More information

MULTIMEDIA TECHNOLOGIES FOR THE USE OF INTERPRETERS AND TRANSLATORS. By Angela Carabelli SSLMIT, Trieste

MULTIMEDIA TECHNOLOGIES FOR THE USE OF INTERPRETERS AND TRANSLATORS. By Angela Carabelli SSLMIT, Trieste MULTIMEDIA TECHNOLOGIES FOR THE USE OF INTERPRETERS AND TRANSLATORS By SSLMIT, Trieste The availability of teaching materials for training interpreters and translators has always been an issue of unquestionable

More information

Available online at ScienceDirect. Procedia Computer Science 35 (2014 )

Available online at   ScienceDirect. Procedia Computer Science 35 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 35 (2014 ) 1625 1634 18 th International Conference on Knowledge-Based and Intelligent Information & Engineering Systems

More information

Google docs as a collaborating tool for academicians

Google docs as a collaborating tool for academicians Available online at www.sciencedirect.com Procedia - Social and Behavioral Sciences 59 ( 2012 ) 411 419 UKM Teaching and Learning Congress 2011 Google docs as a collaborating tool for academicians Ahmad

More information

A Toolbox for Teaching Image Fusion in Matlab

A Toolbox for Teaching Image Fusion in Matlab Available online at www.sciencedirect.com ScienceDirect Procedia - Social and Behavioral Sciences 197 ( 2015 ) 525 530 7th World Conference on Educational Sciences, (WCES-2015), 05-07 February 2015, Novotel

More information

Available online at ScienceDirect. Procedia Computer Science 37 (2014 )

Available online at   ScienceDirect. Procedia Computer Science 37 (2014 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 37 (2014 ) 176 180 The 5th International Conference on Emerging Ubiquitous Systems and Pervasive Networks (EUSPN-2014)

More information

Microsoft Office Word. Part1

Microsoft Office Word. Part1 Microsoft Office 2010 - Word Part1 1 Table of Contents What is Microsoft Word?... 4 Creating a document... 5 Toolbar... 6 Typing in MS Word Text Area... 7 Cut, Copy and Paste Text... 9 Paste Preview...

More information

The Replication Technology in E-learning Systems

The Replication Technology in E-learning Systems Available online at www.sciencedirect.com Procedia - Social and Behavioral Sciences 28 (2011) 231 235 WCETR 2011 The Replication Technology in E-learning Systems Iacob (Ciobanu) Nicoleta Magdalena a *

More information

TERMINOLOGY MANAGEMENT DURING TRANSLATION PROJECTS: PROFESSIONAL TESTIMONY

TERMINOLOGY MANAGEMENT DURING TRANSLATION PROJECTS: PROFESSIONAL TESTIMONY LINGUACULTURE, 1, 2010 TERMINOLOGY MANAGEMENT DURING TRANSLATION PROJECTS: PROFESSIONAL TESTIMONY Nancy Matis Abstract This article briefly presents an overview of the author's experience regarding the

More information

Clicker Docs is a talking word processor that provides extensive writing support. It can be quickly and easily customized for individual needs.

Clicker Docs is a talking word processor that provides extensive writing support. It can be quickly and easily customized for individual needs. Table of Contents Overview... 1 Write Documents... 2 Create / Open a Document... 2 Write in the Document... 2 Print the Document... 2 Save the Document... 3 Send a Copy of the Document... 4 Writing Support...

More information

User Guide Contents The Toolbar The Menus The Spell Checker and Dictionary Adding Pictures to Documents... 80

User Guide Contents The Toolbar The Menus The Spell Checker and Dictionary Adding Pictures to Documents... 80 User Guide Contents Chapter 1 The Toolbar... 40 Unique Talking Toolbar Features... 40 Text Navigation and Selection Buttons... 42 Speech Buttons... 44 File Management Buttons... 45 Content Buttons... 46

More information

1.0 Abstract. 2.0 TIPSTER and the Computing Research Laboratory. 2.1 OLEADA: Task-Oriented User- Centered Design in Natural Language Processing

1.0 Abstract. 2.0 TIPSTER and the Computing Research Laboratory. 2.1 OLEADA: Task-Oriented User- Centered Design in Natural Language Processing Oleada: User-Centered TIPSTER Technology for Language Instruction 1 William C. Ogden and Philip Bernick The Computing Research Laboratory at New Mexico State University Box 30001, Department 3CRL, Las

More information

Development of Contents Management System Based on Light-Weight Ontology

Development of Contents Management System Based on Light-Weight Ontology Development of Contents Management System Based on Light-Weight Ontology Kouji Kozaki, Yoshinobu Kitamura, and Riichiro Mizoguchi Abstract In the Structuring Nanotechnology Knowledge project, a material-independent

More information

Click here, type the title of your paper, Capitalize first letter

Click here, type the title of your paper, Capitalize first letter Available online at www.sciencedirect.com ScienceDirect Procedia Manufacturing 00 (2018) 000 000 www.elsevier.com/locate/procedia 18th International Conference on Sheet Metal, SHEMET 2019 Click here, type

More information

Inspirium HMI-Studio: Authoring System for Creating HMI Scenarios

Inspirium HMI-Studio: Authoring System for Creating HMI Scenarios Inspirium HMI-Studio: Authoring System for Creating HMI Scenarios Shunichi Hirabayashi Performance enhancement, multifunctionalization and diversification of devices that use imaging LSIs are in progress

More information

On-Line Recognition of Mathematical Expressions Using Automatic Rewriting Method

On-Line Recognition of Mathematical Expressions Using Automatic Rewriting Method On-Line Recognition of Mathematical Expressions Using Automatic Rewriting Method T. Kanahori 1, K. Tabata 1, W. Cong 2, F.Tamari 2, and M. Suzuki 1 1 Graduate School of Mathematics, Kyushu University 36,

More information

Procedia Computer Science

Procedia Computer Science Procedia Computer Science 3 (2011) 1049 1054 Procedia Computer Science 00 (2010) 000 000 Procedia Computer Science www.elsevier.com/locate/procedia www.elsevier.com/locate/procedia WCIT-2010 A simple shuffle-based

More information

Introduction to User Stories. CSCI 5828: Foundations of Software Engineering Lecture 05 09/09/2014

Introduction to User Stories. CSCI 5828: Foundations of Software Engineering Lecture 05 09/09/2014 Introduction to User Stories CSCI 5828: Foundations of Software Engineering Lecture 05 09/09/2014 1 Goals Present an introduction to the topic of user stories concepts and terminology benefits and limitations

More information

a child-friendly word processor for children to write documents

a child-friendly word processor for children to write documents Table of Contents Get Started... 1 Quick Start... 2 Classes and Users... 3 Clicker Explorer... 4 Ribbon... 6 Write Documents... 7 Document Tools... 8 Type with a Keyboard... 12 Write with a Clicker Set...

More information

Available online at ScienceDirect. Procedia Computer Science 98 (2016 )

Available online at   ScienceDirect. Procedia Computer Science 98 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 98 (2016 ) 515 521 The 3rd International Symposium on Emerging Information, Communication and Networks (EICN 2016) A Speculative

More information

MOODLE MANUAL TABLE OF CONTENTS

MOODLE MANUAL TABLE OF CONTENTS 1 MOODLE MANUAL TABLE OF CONTENTS Introduction to Moodle...1 Logging In... 2 Moodle Icons...6 Course Layout and Blocks...8 Changing Your Profile...10 Create new Course...12 Editing Your Course...15 Adding

More information

INTRODUCTION. This guidebook provides step-by-step information on the process of submission on the new website.

INTRODUCTION. This guidebook provides step-by-step information on the process of submission on the new website. 0 INTRODUCTION On March 14, 2018, Makara Human Behavior Studies in Asia (Makara Hubs- Asia) starts using a new website: http://hubsasia.ui.ac.id. Every submitted manuscript after March 14, 2018 is processed

More information

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button.

The major change in Word is the ribbon toolbar. The File menu has been replaced with a button. Word 2007 There are a lot of new changes to Office 2007. This handout will provide a few examples on how to do basic formatting. If at any point you get stuck, remember that Office has a feature that allows

More information

Available online at ScienceDirect. Procedia Computer Science 96 (2016 )

Available online at  ScienceDirect. Procedia Computer Science 96 (2016 ) Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 96 (2016 ) 560 567 20th International Conference on Knowledge Based and Intelligent Information and Engineering Systems,

More information

WIREFRAMING 101. Essential Question: Can We Possibly Build an App? Learning Targets: Lesson Overview

WIREFRAMING 101. Essential Question: Can We Possibly Build an App? Learning Targets: Lesson Overview WIREFRAMING 101 Essential Question: Can We Possibly Build an App? Learning Targets: Students will: Use wireframing to create a design for an app for mobile devices. Collaborate to make decisions about

More information

Construction and Analysis of a Semantic Grid Service for Large-scale Environment

Construction and Analysis of a Semantic Grid Service for Large-scale Environment Construction and Analysis of a Semantic Grid Service for Large-scale Environment Toshihiro Uchibayashi, Bernady O. Apduhan, Norio Shiratori * Abstract Building an ontology resource network using grid computing

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide www.sciencedirect.com Open to accelerate science SciVerse ScienceDirect is Elsevier s peer-reviewed, full text database containing more than 4,000 electronic book titles and more

More information

MICROSOFT WORD. Table of Contents. What is MSWord? Features LINC TWO

MICROSOFT WORD. Table of Contents. What is MSWord? Features LINC TWO Table of Contents What is MSWord? MS Word is a word-processing program that allows users to create, edit, and enhance text in a variety of formats. Word is a powerful word-processor with sophisticated

More information

Cognitive Disability and Technology: Universal Design Considerations

Cognitive Disability and Technology: Universal Design Considerations Cognitive Disability and Technology: Universal Design Considerations Clayton Lewis Coleman Institute for Cognitive Disabilities RERC-ACT clayton.lewis@colorado.edu Prepared for AUCD Training Symposium,

More information

Cognitive Analysis of Software Interfaces

Cognitive Analysis of Software Interfaces 2011 International Conference on Information and Network Technology IPCSIT vol.4 (2011) (2011) IACSIT Press, Singapore Cognitive Analysis of Software Interfaces B.Venkata Raju, Ph.D Scholar, Reg.No.2004199506

More information