IFSM - Final Assessment Essay

profiletwinkletoes
Security_Architecture_and_Design.pdf

Security Architecture and Design

en.wikibooks.org

January 25, 2014

On the 28th of April 2012 the contents of the English as well as German Wikibooks and Wikipedia projects were licensed under Creative Commons Attribution-ShareAlike 3.0 Unported license. A URI to this license is given in the list of figures on page 25. If this document is a derived work from the contents of one of these projects and the content was still licensed by the project under this license at the time of derivation this document has to be licensed under the same, a similar or a compatible license, as stated in section 4b of the license. The list of contributors is included in chapter Contributors on page 23. The licenses GPL, LGPL and GFDL are included in chapter Licenses on page 29, since this book and/or parts of it may or may not be licensed under one or more of these licenses, and thus require inclusion of these licenses. The licenses of the figures are given in the list of figures on page 25. This PDF was generated by the LATEX typesetting software. The LATEX source code is included as an attachment (source.7z.txt) in this PDF file. To extract the source from the PDF file, you can use the pdfdetach tool including in the poppler suite, or the http://www. pdflabs.com/tools/pdftk-the-pdf-toolkit/ utility. Some PDF viewers may also let you save the attachment to a file. After extracting it from the PDF file you have to rename it to source.7z. To uncompress the resulting archive we recommend the use of http://www.7-zip.org/. The LATEX source itself was generated by a program written by Dirk Hünniger, which is freely available under an open source license from http://de.wikibooks.org/wiki/Benutzer:Dirk_Huenniger/wb2pdf.

Contents 0.1 Computer Systems Architecture . . . . . . . . . . . . . . . . . . . . . . 1 0.2 Systems Security Architecture . . . . . . . . . . . . . . . . . . . . . . . . 7 0.3 Security Models . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 0.4 Security Product Evaluation Methods and Criteria . . . . . . . . . . 15

1 Contributors 23

List of Figures 25

2 Licenses 29 2.1 GNU GENERAL PUBLIC LICENSE . . . . . . . . . . . . . . . . . . . . . . 29 2.2 GNU Free Documentation License . . . . . . . . . . . . . . . . . . . . . . . . 30 2.3 GNU Lesser General Public License . . . . . . . . . . . . . . . . . . . . . . . 31

0.1 Computer Systems Architecture

A computer system consists of different types of components like hardware, soft- ware,operating systems and firmware.

The most important and common components being

• Hardware Components like: CPU, Storage Devices, I/O Devices, Communication Devices • Software Components like: Operating Systems, Application Programs • Firmware

0.1.1 Central Processing Unit (CPU)

Overview • CPU is the brain of the computer. • It fetches the instructions from memory and executes them • Each CPU type has its own instruction set and architecture

CPU Components • Registers: are temporary storage locations that can store references to memory locations, next instruction to be executed etc and also enable the CPU to keep its status information.

• Arithmetic Logic Unit(ALU): performs the actual execution of complex mathematical functions and logical operations on data.

• Control Unit: manages and synchronizes the system while different applications code and OS instructions are being executed. It fetches the code,interprets the code and oversees

1

Contents

the execution of the different instruction sets.It determines what application instructions get processed and in what priority and time slice. It controls when instructions are executed, and this execution enables applications to process data.

• General registers are used to hold variables and temporary results as the ALU works through its execution steps.

• Special registers (dedicated registers) hold information such as the program counter, stack pointer, and program status word (PSW) • Program counter (PC) register contains the memory address of the next instruction that needs to be fetched

• Program status word (PSW) holds different condition bits. One of the bits indicates whether the CPU should be working in user mode (also called problem state) or priv- ileged mode (also called kernel or supervisor mode).

• Stack pointerdirects the CPU where the next piece of data is located. • Address bus, is a hardwired connection to the RAM chips in the system and the individual (I/O) devices. It is used by the CPU to indicate the location of the instructions that need to be processed.

• Data bus is used by the memory or I/O device in response to CPU request for sending the data that resides at the requested location.

0.1.2 Storage

Overview • A storage device is a hardware device capable of storing data. • Storage devices can be classified into 3 categories • Primary Storage or Memory: which are directly accessible to the CPU like Cache Memory (L1,L2,L3),Main Memory (RAM)

• Secondary Storage: Which are permanent storage devices like Hard Disks, Floppy Disks, CDs, DVDs, flash memory, ZIP drives etc.

• Tertiary Storage : Tapes

Random Access Memory • RAM stores data and program instructions temporarily by the operating system and application programs.

• It is described as volatile because if the computer’s power supply is terminated, then all information within this type of memory is lost. • RAM Types • Dynamic RAM- uses capacitors which have to be refreshed periodically to hold the data, slow. • Synchronous DRAM (SDRAM)- timing of the CPU and the timing of the memory activities are synchronized. can access only one block at a time.

• Extended data out DRAM (EDO DRAM)- can capture the next block of data while the first block is being sent to the CPU for processing, faster than SDRAM.

• Burst EDO DRAM (BEDO DRAM)- Build on top of EDO DRAM.It reads and sends up to four memory addresses in a small number of clock cycles.

• Double data rate SDRAM (DDR SDRAM)- Carries out read operations on the rising and falling cycles of a clock pulse. speed is twice of SDRAM

2

Computer Systems Architecture

• Static RAM- uses more transistors, faster than DRAM,expensive, used in cache.

Read Only Memory • ROMs are non-volatile memories.the instructions stored in these memories are called as firmware.

• ROM Types • Programmable read-only memory (PROM)-can be programmed only one time after the manufacturing.

• Erasable and programmable read-only memory (EPROM)- can be erased, modified,and upgraded.

• Flash memory- a special type of memory that is used in digital cameras, BIOS chips, memory cards for laptops, and video game consoles. It is used more as a type of hard drive than memory.

Cache Memory • The cache memory is a smaller, faster memory which stores copies of the data from the most frequently used main memory locations.

• Cache Levels • L1 Cache- located within the CPU • L2 Cache- located between the CPU and the main memory (RAM) • L3 Cache- can be an externally managed memory that has faster access time than RAM.

• Cache Types • Prefetch Cache(P-Cache)- used to store data that has been brought in as a result of a prefetch operation

• W-Cache - acts as a holding station for stored data. • Instruction Cache- used to store instructions. • Data Cache- stores data • Translation Look aside Buffer (TLB)- stores the translated addresses of virtual page address to a valid physical address.

• Cache Organization- describes the organization of lines and the replacement policy • Direct Mapping- The (virtual or physical) memory address of the incoming cache line controls which cache location is going to be used.Suffers from thrashing.

• Fully Associative- based on LRU policy where the LRU line is replaced. • Set Associative- uses several direct-mapped caches or set. A cache controller decides which set the line will go into. Within the set, a direct-mapped scheme is used to allocate a slot in the cache.

Virtual Memory • Virtual memory is a logical memory that gives an application program the impression that it has a contiguous working memory.

• A VM logically extends the capabilities of RAM by allocation a separate portion of the hard disk space called swap space.

3

Contents

0.1.3 Operating Systems

Overview • An operating system provides an environment for applications and users to work within. • It is responsible for managing the underlying hardware components,memory management, I/O operations, file system, process management, and providing system services

• OS Architectures • Monolithic operating system architecture- mainly made up of various procedures that can call upon each other in a haphazard manner, provides single layer security only. For example, DOS.

• Layered operating system- separates system functionality into hierarchical lay- ers,provide data hiding, provides multilayer security. For example, Unix. • Layer 0 controlled access to the processor and provided multiprogramming function- ality

• Layer 1 carried out memory management • Layer 2 provided interprocess communication • Layer 3 dealt with I/O devices and • Layer 4 was where the applications resided

• Microkernel Based- The OS functions are divided into several different processes that run in user mode, instead of kernel mode.The processes communicate in a C/S model.The server processes are called as subsystems and provide services to user process and other OS processes. For example, Windows 2000.

Process Management • A process is a program in execution that is loaded and actuated by the OS.It contains a set of the instructions and the assigned resources.

• When a process is created, the operating system assigns resources to it, such as a memory segment, CPU time slot (interrupt), access to system application programming interfaces (APIs), and files to interact with.

• Process States: A process can run in running state (CPU is executing its instructions and data),ready state (waiting to send instructions to the CPU), or blocked state (waiting for input data, such as keystrokes from a user).

• Process Table: A data structure that contains each individual process’s state, stack pointer, memory allocation,program counter, and status of open files in use.

• Threads: A thread is a unit of program execution. conversely a process is a single thread of execution.A thread is made up of individual instruction set and the data that needs to be worked on by the CPU.All the threads of a process share the resources of the processes that created them.

• Process Scheduling: governs the way different processes communication(or synchronize) between each other in order to overcome deadlock conditions.

Memory Management • The main objectives of memory management is to • Provide an abstraction level for programmers • Maximize performance with the limited amount of memory available • Protect the operating system and applications loaded into memory

• The memory manager has five basic responsibilities:

4

Computer Systems Architecture

• Relocation • Swap contents from RAM to the hard drive as needed • Provide pointers for applications if their instructions and memory segment have been moved to a different location in main memory

• Protection • Limit processes to interact only with the memory segments that are assigned to them • Provide access control to memory segments

• Sharing • Use complex controls to ensure integrity and confidentiality when processes need to use the same shared memory segments

• Allow many users with different levels of access to interact with the same application running in one memory segment

• Logical organization • Allow for the sharing of specific software modules, such as dynamic link library (DLL) procedures

• Physical organization • Segment the physical memory space for application and operating system processes

I/O Device Management • I/O devices are usually considered block or character devices. • A block device works with data in fixed-size blocks, each block with its own unique address. For example, disk drive .

• A character device, such as a printer, network interface card, or mouse, works with streams of characters, without using any fixed sizes. This type of data is not addressable

• There are different ways that operating systems can manage software I/O procedures. • Programmed I/O- the CPU sends data to an I/O device and polls the device to see if it is ready to accept more data. If the device is not ready to accept more data, the CPU wastes time by waiting for the device to become ready. very slow

• Interrupt-driven I/O- the CPU sends a character/block over to the device and then goes and works on another process’s request. When the device is done with its job it sends an interrupt to the CPU. The CPU stops what it is doing, sends the next block/character and this continues until the entire job is processes by the device.lot of interrupt handling overhead.

• I/O using DMA- A DMA controller feeds the characters from the memory to the device without bothering the CPU. This method is sometimes referred to as unmapped I/O.

OS Protection Mechanisms • CPU Modes • CPU modes also called processor modes or CPU privilege levels,are operating modes for the central processing unit of some computer architectures that place restrictions on the operations that can be performed by the process currently running in the CPU. This design allows the operating system to run at different privilege levels like kernel mode, user mode, master mode etc.

• Protection Rings • Protection Rings are concentric rings that provide strict boundaries and definitions for what the processes that work within each ring can access and what operations they can successfully execute.

5

Contents

• The processes that operate within the inner rings have more privileges than the pro- cesses operating in the outer rings, because the inner rings only permit the most trusted components and processes to operate within them.

• Protection rings support the availability, integrity, and confidentiality requirements of multitasking operating systems.

• The most commonly used architecture provides four protection rings: • Ring 0 Operating system kernel • Ring 1 Remaining parts of the operating system • Ring 2 I/O drivers and utilities • Ring 3 Applications and user activity

• Memory Protection • Limit processes to interact only with the memory segments that are assigned to them • Provide access control to memory segments

• Process Isolation • Ensures that processes do not “step on each other’s toes," negatively affect each other’s productivity and thus communicate in an insecure manner.

• Methods for process isolation: • Encapsulation of objects- no other process understands or interacts with the internal programming code of a process.

• Time multiplexing of shared resources- allows processes to use the same resources on a time sharing basis.

• Naming distinctions- different processes have their own name or identification value called as PID

• Virtual mapping- Every process has its own virtual memory address space. • Domains • A domain is defined as a set of objects that a subject is able to access. • The domain can be all the resources a user can access, all the files available to a program, the memory segments available to a process, or the services and processes available to an application.

• A process that resides in a privileged domain needs to be able to execute its instructions and process its data with the assurance that programs in a different domain cannot negatively affect its environment. This is referred to as an execution domain

• The higher the level of trust, the larger the number of available resources or objects

0.1.4 Firmware

Overview • Firmware is a computer program that is embedded in a hardware device • Like software, it is a computer program which is executed by a microprocessor or a microcontroller. But it is also tightly linked to a piece of hardware, and has little meaning outside of it.

BIOS • BIOS refers to the firmware code run by a personal computer when first powered on. • The primary function of the BIOS is to identify and initiate component hardware (such as hard disk, floppy and optical disk drives). This is to prepare the machine so other

6

Systems Security Architecture

software programs stored on various media can load, execute, and assume control of the PC.This process is known as booting, or booting up, which is short for bootstrapping.

ROM image • A ROM image, or simply ROM, is a computer file which contains a copy of the data from a read-only memory chip, often from a video game cartridge, a computer's firmware, or from an arcade game's main board.

• The term is frequently used in the context of emulation, whereby older games or computer firmware are copied to ROM files on modern computers and can, using a piece of software known as an emulator, be run on the newer computer.

0.1.5 Virtual Machines

Overview • A virtual machine (VM) is a software implementation of a machine (computer) that executes programs like a real machine

• An essential characteristic of a virtual machine is that the software running inside is limited to the resources and abstractions provided by the virtual machine -- it cannot break out of its virtual world

VM Categories • Virtual machines are separated in two major categories, based on their use and degree of correspondence to any real machine. • system virtual machine provides a complete system platform which supports the exe- cution of a complete operating system.

• process virtual machine is designed to run a single program, which means that it sup- ports a single process.

0.2 Systems Security Architecture

The security architecture is one component of a product’s overall architecture and is devel- oped to provide guidance during the design of the product. It outlines the level of assurance that is required and potential impacts that this level of security could have during the de- velopment stages and on the product overall.

0.2.1 Security Design Principles

Security is a system requirement just like performance, capability, cost, etc.Therefore, it may be necessary to trade off certain security requirements to gain others.

Principles of Secure Design • Design security in from the start • Allow for future security enhancements • Minimize and isolate security controls

7

Contents

• Employ least privilege • Structure the security relevant features • Make security friendly • Don’t depend on secrecy for security

Principles for Software Security • Secure the weakest link • Practice defense in depth • Fail securely- If your software has to fail, make sure it does it securely • Follow the principle of least privilege • Compartmentalize- Minimize the amount of damage that can be done by breaking the system into units

• Keep it simple- Complex design is never easy to understand • Promote privacy- Try not to do anything that compromises the privacy of the user • Remember that hiding secrets is hard • Be reluctant to trust- Instead of making assumptions that need to hold true, you should be reluctant to extend trust

• Use your community resources- Public scrutiny promotes trust

Design Principles for Protection Mechanisms • Least privilege- Should only have the rights necessary to complete your task. • Economy of mechanism- Should be sufficiently small and as simple as to be verified and implemented – e.g., security kernel. Complex mechanisms should be correctly Under- stood, Modeled, Configured, Implemented and Used

• Complete mediation- Every access to every object must be checked • Open design- Let the design be open. Security through obscurity is a bad idea • Should be open for scrutiny by the community- Better to have a friend/colleague find an error than a foe

• Separation of privilege- Access to objects should depend on more than one condition being satisfied

• Least common mechanism- Minimize the amount of mechanism common to more than one user and depended on by all users

• Psychological acceptability- User interface must be easy to use, so that users routinely and automatically apply the mechanisms correctly. Otherwise, they will be bypassed

• Fail-safe defaults. Should be lack of access

0.2.2 Trusted Computing Base

Overview • A Trusted Computing Base (TCB) is the whole combination of protection mechanisms within a computer system.

• The TCB addresses all the security components of the hardware, software, and firmware within the system.

• It does not address the level of security that a system provides, but rather the level of trust that a system provides as because no computer system can be totally secure

8

Systems Security Architecture

• If the TCB is enabled, then the system has a trusted path, a trusted shell, and system integrity–checking capabilities • A trusted path is a communication channel between the user, or program, and the kernel. The TCB provides protection resources to ensure that this channel cannot be compromised in any way

• A trusted shell means that someone who is working in that shell cannot “bust out of it” and other processes cannot “bust into” it.

• The TCB contains components that directly enforce the security policy (is a set of rules and practices that dictates how sensitive information and resources are managed, pro- tected, and distributed.)

Basic Functions of a TCB • Process Activation- deals with the activities that have to take place when a process is going to have its instructions and data processed by the CPU.

• Execution Domain Switching- takes place when a process needs to call upon a process in a higher protection ring.

• Memory protection and • I/O operations

Evaluating the TCB • Evaluating the trust level of a system includes identifying the architecture, security ser- vices, and assurance mechanisms that make up the TCB.

• During the evaluation process, the tests must show how the TCB is protected from accidental or intentional tampering and compromising activity.

• For systems to achieve a higher trust level rating, they must meet well-defined TCB requirements,and the details of their operational states, developing stages, testing proce- dures, and documentation will be reviewed with more granularity than systems that are attempting to achieve a lower trust rating.

Reference Monitor and Security Kernel • The reference monitor is an abstract machine that mediates all access subjects have to objects, both to ensure that the subjects have the necessary access rights and to protect the objects from unauthorized access and destructive modification.

• The security kernel is made up of hardware, software, and firmware components that fall within the TCB and implements and enforces the reference monitor concept.

• The security kernel mediates all access and functions between subjects and objects. The security kernel is the core of the TCB and is the most commonly used approach to building trusted computing systems. There are three main requirements of the security kernel: • It must provide isolation for the processes carrying out the reference monitor concept, and the processes must be tamper-proof.

• It must be invoked for every access attempt and must be impossible to circumvent. Thus, the security kernel must be implemented in a complete and foolproof way.

• It must be small enough to be able to be tested and verified in a complete and com- prehensive manner.

Security Perimeter • A security perimeter is a boundary that divides the trusted from the untrusted.

9

Contents

• For the system to stay in a secure and trusted state, precise communication standards must be developed to ensure that when a component within the TCB needs to communi- cate with a component outside the TCB, the communication cannot expose the system to unexpected security compromises. This type of communication is handled and controlled through interfaces.

The Relation • The reference monitor is a concept in which an abstract machine mediates all access to objects by subjects.

• The security kernel is the hardware, firmware, and software of a TCB that implements this concept.

• The TCB is the totality of protection mechanisms within a computer system that work together to enforce a security policy. The TCB contains the security kernel and all other security protection mechanisms

0.2.3 Security Modes of Operation

Overview • A system can operate in different modes depending on the sensitivity of the data being processed, the clearance level of the users, and what those users are authorized to do.

• The mode of operation describes the security conditions under which the system actually functions.

• Trust vs Assurance • A trust is a level of confidence or belief that tells the customer how much protection he can expect out of the system.

• In a trusted system, all protection mechanisms work together to process sensitive data for many types of uses, and will provide the necessary level of protection per classifi- cation level

• Assurance is an higher level of confidence that looks at the same issue but in more depth and detail where the system is throughly inspected.

Dedicated Security Mode All users must have… • Proper clearance for all information on the system • Formal access approval for all information on the system • Signed NDA for all information on the system • Valid need to know for all information on the system

All users can access all data.

System High-Security Mode All users must have… • Proper clearance for all information on the system • Formal access approval for all information on the system • Signed NDA for all information on the system • Valid need to know for some information on the system

All users can access some data, based on their need to know.

Compartmented Security Mode All users must have…

10

Security Models

• Proper clearance for the highest level of data classification on the system • Formal access approval for all information they will access on the system • Signed NDA for all information they will access on the system • Valid need to know for some of the information on the system

All users can access some data, based on their need to know and formal access approval.

Multilevel Security Mode All users must have… • Proper clearance for all information they will access on the system • Formal access approval for all information they will access on the system • Signed NDA for all information they will access on the system • Valid need to know for some of the information on the system

All users can access some data, based on their need to know, clearance, and formal access approval.

0.3 Security Models

• A security policy is a document that expresses clearly and concisely what the protection mechanisms are to achieve. Its a statement of the security we expect the system to enforce.

• A security model is a specification of a security policy: • it describes the entities governed by the policy, • it states the rules that constitute the policy.

• There are various types of security models: • Models can capture policies for confidentiality (Bell-LaPadula) or for integrity (Biba, Clark-Wilson).

• Some models apply to environments with static policies (Bell-LaPadula), others con- sider dynamic changes of access rights (Chinese Wall).

• Security models can be informal (Clark-Wilson), semi-formal, or formal (Bell-LaPadula, Harrison-Ruzzo-Ullman).

• Model vs Policy • A security model maps the abstract goals of the policy to information system terms by specifying explicit data structures and techniques that are necessary to enforce the security policy. A security model is usually represented in mathematics and analyt- ical ideas, which are then mapped to system specifications, and then developed by programmers through programming code

• For Example, if a security policy states that subjects need to be authorized to access objects, the security model would provide the mathematical relationships and formulas explaining how x can access y only through the outlined specific methods

• A security policy outlines goals without regard to how they will be accomplished. A model is a framework that gives the policy form and solves security access problems for particular situations.

0.3.1 Lattice Models

• A lattice is a mathematical construct that is built upon the notion of a group.

11

Contents

• A lattice is a mathematical construction with: • a set of elements • a partial ordering relation • the property that any two elements must have unique least upper bound and greatest lower bound

• A security lattice model combines multilevel and multilateral security • Lattice elements are security labels that consist of a security level and set of categories

0.3.2 State Machine Models

• In state machine model, the state of a machine is captured in order to verify the security of a system.

• A given state consists of all current permissions and all current instances of subjects accessing the objects. If the subject can access objects only by means that are concurrent with the security policy, the system is secure.

• The model is used to describe the behavior of a system to different inputs. It provides mathematical constructs that represents sets (subjects, objects) and sequences. When an object accepts an input , this modifies a state variable thus transiting to a different state.

• Implementation tips • The developer must define what and where the state variables are. • The developer must define a secure state for each state variable. • Define and identify the allowable state transition functions. • The state transition function should be tested to verify that the overall m/c state will not compromise and the integrity of the system is maintained.

0.3.3 Noninterference Models

• The model ensures that any actions that take place at a higher security level do not affect, or interfere with, actions that take place at a lower level.

• It is not concerned with the flow of data, but rather with what a subject knows about the state of the system. So if an entity at a higher security level performs an action, it can not change the state for the entity at the lower level.

• The model also addresses the inference attack that occurs when some one has access to some type of information and can infer(guess) something that he does not have the clearance level or authority to know.

0.3.4 Bell—LaPadula Confidentiality Model

• It was the first mathematical model with a multilevel security policy that is used to define the concept of a secure state machine and models of access and outlined rules of access.

• It is a state m/c model that enforces the confidentiality aspects of access model. • The model focuses on ensuring that the subjects with different clearances(top secret, secret, confidential) are properly authenticated by having the necessary security clearance , need to know , and formal access approval-before accessing an object that are under different classification levels (top secret, secret, confidential).

12

Security Models

• The rules of Bell-Lapadula model • Simple security rule (no read up rule): It states that a subject at a given security level can not read data that resides at a higher security level.

• Star property rule ( no write down rule): It states that a subject in a given security level can not write information to a lower security levels.

• Strong star property rule: It states a subject that has read and write capabilities can only perform those functions at the same security level , nothing higher and nothing lower.

• Tranquility principle : subjects and objects can not change their security levels once they have been instantiated (created).

• All MAC systems are based on the Bell – Lapadula model because of it multilevel security. • Designed US govt and mostly adopted by govt agencies

0.3.5 Biba Integrity Model

• It is developed after Bell – Lapadula model. • It addresses integrity of data unlike Bell – Lapadula which addresses confidentiality. • It uses a lattice of integrity levels unlike Bell – Lapadula which uses a lattice of security levels.

• It is also an information flow model like the Bell – Lapadula because they are most concerned about data flowing from one level to another.

• The rules of Biba model • simple integrity rule(no read down) : it states that a subject can not read data from a lower integrity level.

• star integrity rule(no write up) : it states that a subject can not write data to an object at a higher integrity level.

• invocation property : it states that a subject can not invoke(call upon) a subject at a higher integrity level.

0.3.6 Clark—Wilson Integrity Model

• It was developed after Biba and addresses the integrity of information. • This model separates data into one subject that needs to be highly protected , referred to as a constrained data item(CDI)and another subset that does not require high level of protection , referred to as unconstrained data items(UDI).

• Components • Subjects (users): are active agents. • Transformation procedures (TPs): the s/w procedures such as read, write, modify that perform the required operation on behalf of the subject (user).

• Constrained data items (CDI): data that can be modified only by Tp’s. • Unconstrained data items (UDI): data that can be manipulated by subjects via primi- tive read/write operations.

• Integrity verification procedure (IVP): programs that run periodically to check the consistency of CDIs with external reality. These integrity rules are usually defined by vendors.

• Integrity goals of Clark – Wilson model • Prevent unauthorized users from making modification (addressed by Biba model).

13

Contents

• Separation of duties prevents authorized users from making improper modifications. • Well formed transactions: maintain internal and external consistency i.e. it is a series of operations that are carried out to transfer the data from one consistent state to the other.

0.3.7 Access Control Matrix

• This model addressed in access control. • Commonly used in OS and applications.

0.3.8 Information Flow Models

• In this model, data is thought of as being held in individual discrete compartments. • Information is compartmentalized based on two factors. • Classification and • Need to know

• The subjects clearance has to dominate the objects classification and the subjects security profile must contain the one of the categories listed in the object label, which enforces need to know.

• For example: • Bell – Lapadula which prevents information flowing from higher source level to lower source level.

• Biba which prevents information flowing from lower integrity level to higher integrity level

Covert channels • A covert channel is a way for an entity to receive information in an unauthorized manner. • It is an information flow that is not controlled by a security mechanism. • It is an unauthorized communication path that is not protected by the system because it was uncovered while developing the system.

• Types of covert channels • Covert timing: in this channel, one process relays information to another by modulating its use of system resources.

• Covert storage: in this channel, one process writes data to a storage location and another process directly, or indirectly reads it.

0.3.9 Graham—Denning Model

• This model defines a set of basic rights in terms of commands that a specific subject can execute on an object.

• It proposes the eight primitive protection rights, or rules of how these types of function- alities should take place securely. • How to securely create an object. • How to securely create a subject. • How to securely delete an object. • How to securely delete a subject.

14

Security Product Evaluation Methods and Criteria

• How to provide read access rights. • How to provide grant access rights. • How to provide delete access rights. • How to provide transfer access rights.

0.3.10 Harrison—Ruzzo—Ullman Model

• The HRU security model (Harrison, Ruzzo, Ullman model) is an operating system level computer security model which deals with the integrity of access rights in the system. The system is based around the idea of a finite set of procedures being available to edit the access rights of a subject s on an object o.

• The model also discussed the possibilities and limitations of proving safety of a system using an algorithm.

0.3.11 Brewer—Nash (Chinese Wall)

• This model provides access controls that can change dynamically depending upon a user’s previous actions.

• The main goal of this model is to protect against conflicts of interests by user’s access attempts.

• It is based on the information flow model, where no information can flow between subjects and objects in a way that would result in a conflict of interest.

• The model states that a subject can write to an object if, and only if, the subject can not read another object that is in a different data set.

0.4 Security Product Evaluation Methods and Criteria

• A security evaluation examines the security-relevant parts of a system, meaning the TCB, access control mechanisms, reference monitor, kernel, and protection mechanisms. The relationship and interaction between these components are also evaluated.

• There are different methods of evaluating and assigning assurance levels to systems. Two reasons explain why more than one type of assurance evaluation process exist: • methods and ideologies have evolved over time, and • various parts of the world look at computer security differently and rate some aspects of security differently

• An evaluation program establishes a trust between the security product vendor and the customer.

Evaluation Standards • Information Technology Security Evaluation Criteria (ITSEC)- EU • Trusted Computing Security Evaluation Criteria (TCSEC) -US • Common Criteria- Hybrid of ITSEC and TCSEC

15

Contents

0.4.1 Rainbow Series

The Rainbow series was a series of books to cover all the areas of security like

• Red Books- Network Security • Orange Books- Operating System Security • Yellow- Security Risk Management • Violet- Database Security

i Information Originally only the orange book existed but the other books have evolved to cover all the areas of security and thus the collection is names as Rainbow series

Orange Book or TCSEC

Overview • TCSEC was developed by US DoD and was published in an Orange book and hence also called as Orange Book

• It mainly addresses the confidentiality, but not integrity and mainly addresses government and military requirements.

• It is used to evaluate whether a product contains the security properties the vendor claims it does and whether the product is appropriate for a specific application or function.

• It is used to review the functionality, effectiveness,and assurance of a product during its evaluation, and it uses classes that were devised to address typical patterns of security requirements.

• TCSEC provides a classification system that is divided into different assurance levels with A representing the highest and D the lowest. • A: Verified protection • B: Mandatory protection: Variants- B1<B2<B3 • C: Discretionary protection: Variants-C1<C2 • D: Minimal security

The levels are concentric.i.e if a product is assured at level B2, that implies it meets D,C1,C2 and B1

The Criteria • Security policy- The policy must be explicit and well defined and enforced by the mech- anisms within the system.

• Identification- Individual subjects must be uniquely identified. • Labels Access- Control labels must be associated properly with objects. • Documentation- Documentation must be provided, including test, design, and specifica- tion documents, user guides, and manuals.

• Accountability- Audit data must be captured and protected to enforce accountability. • Life cycle assurance- Software, hardware, and firmware must be able to be tested individ- ually to ensure that each enforces the security policy in an effective manner throughout their lifetimes.

16

Security Product Evaluation Methods and Criteria

• Continuous protection- The security mechanisms and the system as a whole must perform predictably and acceptably in different situations continuously.

i Information Even though the evaluation is done independently based on the above categories, the rating that is assigned at the end is a sum total of these items.

The Assurance Levels • Division D: Minimal Protection- It is reserved for systems that have been evaluated but fail to meet the criteria and requirements of the higher divisions.

• Division C: Discretionary Protection- The C rating category has two individual assurance ratings within it. • C1: Discretionary Security Protection • Based on individuals and/or groups. • It requires a separation of users and information, and identification and authentica- tion of individual entities is provided.

• The type of environment that would require this rating is one in which users are processing information at the same sensitivity level; thus, strict access control and auditing measures are not required.

• It would be a trusted environment with low security concerns • C2: Controlled Access Protection • Users need to be identified individually to provide more precise access control and auditing functionality.

• Logical access control mechanisms are used to enforce authentication and the unique- ness of each individual’s identification

• The type of environment that would require systems with a C2 rating is one in which users are trusted but a certain level of accountability is required.

• Overall, C2 is regarded to be the most reasonable class for commercial applications, but the level of protection is still relatively weak

• Division B: Mandatory Protection- Mandatory access control is enforced by the use of security labels. The architecture is based on the Bell-LaPadula security model, and evidence of reference monitor enforcement must be available • B1: Labeled Security • Each data object must contain a classification label and each subject must have a clearance label.

• When a subject attempts to access an object,the system must compare the subject’s and object’s security labels to ensure that the requested actions are acceptable.

• Data leaving the system must also contain an accurate security label. • The security policy is based on an informal statement, and the design specifications are reviewed and verified.

• This security rating is intended for environments that require systems to handle classified data.

• B2: Structured Protection • The security policy is clearly defined and documented,and the system design and implementation are subjected to more thorough review and testing procedures.

17

Contents

• This class requires more stringent authentication mechanisms and well-defined inter- faces among layers.

• Subjects and devices require labels, and the system must not allow covert channels. • The type of environment that would require B2 systems is one that processes sen- sitive data that requires a higher degree of security and are relatively resistant to penetration and compromise.

• B3: Security Domains • In this class, more granularity is provided in each protection mechanism, and the programming code that is not necessary to support the security policy is excluded.

• The reference monitor components must be small enough to test properly and be tamper-proof

• The system must be able to recover from failures without its security level being compromised.

• The type of environment that requires B3 systems is a highly secured environment that processes very sensitive information and are highly resistant to penetration.

• Division A: Verified Protection- Formal methods are used to ensure that all subjects and objects are controlled with the necessary discretionary and mandatory access controls. The design, development, implementation, and documentation are looked at in a formal and detailed way • A1: Verified Design • Formal techniques are used to prove the equivalence between the TCB specifications and the security policy model.

• More stringent change configuration is put in place with the development of an A1 system, and the overall design can be verified

• The type of environment that would require A1 systems is the most secure of se- cured environments. This type of environment deals with top-secret information and cannot adequately trust anyone using the systems without strict authentication, restrictions,and auditing.

TCSEC Myths • It looks specifically at the operating system and not at other issues like networking, databases, and so on.

• It focuses mainly on one attribute of security, confidentiality, and not at integrity and availability.

• It works with government classifications and not the protection classifications that com- mercial industries use.

• It has a relatively small number of ratings, which means many different aspects of security are not evaluated and rated independently.

Red Book or TNI

Overview • Red books also called Trusted Network Interpretation (TNI),addresses security evaluation topics for networks and network components.

18

Security Product Evaluation Methods and Criteria

• Like the Orange Book, the Red Book does not supply specific details about how to implement security mechanisms; instead, it provides a framework for securing different types of networks

• It rates the confidentiality of data and operations that happen within a network and the network components and products.

Security Items addresses in the Orange Books • Communication integrity • Authentication Protects against masquerading and playback attacks. Mechanisms in- clude digital signatures, encryption, timestamp, and passwords.

• Message integrity Protects the protocol header, routing information, and packet pay- load from being modified. Mechanisms include message authentication and encryption.

• Non-repudiation Ensures that a sender cannot deny sending a message.Mechanisms include encryption, digital signatures, and notarization.

• Denial-of-service prevention • Continuity of operations Ensures that the network is available even if attacked. Mech- anisms include fault tolerant and redundant systems and the capability to reconfigure network parameters in case of an emergency.

• Network management Monitors network performance and identifies attacks and fail- ures. Mechanisms include components that enable network administrators to monitor and restrict resource access.

• Compromise protection • Data confidentiality Protects data from being accessed in an unauthorized method during transmission. Mechanisms include access controls, encryption,and physical pro- tection of cables.

• Traffic flow confidentiality Ensures that unauthorized entities are not aware of routing information or frequency of communication via traffic analysis. Mechanisms include padding messages, sending noise, or sending false messages.

• Selective routing Routes messages in a way to avoid specific threats.Mechanisms include network configuration and routing tables.

0.4.2 Information Technology Security Evaluation Criteria (ITSEC)

Overview • As TCSEC was developed by US, ITSEC was developed by the EU to address all the security evaluation issues.

• The ITSEC had two main evaluation attributes • Functionality- When the functionality of a system’s protection mechanisms is being evaluated, the services that are provided to the subjects like access control mechanisms, auditing, authentication, and so on are examined and measured.

• Assurance- Assurance, is the degree of confidence in the protection mechanisms,and their effectiveness and capability to perform consistently. Assurance is generally tested by examining development practices, documentation, configuration management, and testing mechanisms.

Evaluation Criteria

19

Contents

ITSEC had 10 classes F1 to F10 to evaluate the functional requirements and 7 classes E0 to E6 to evaluate the assurance requirements.

• Security functional requirements • F00:Identification and authentication • F01:Audit • F02:Resource utilization • F03:Trusted paths/channels • F04:User data protection • F05:Security management • F06:Product access • F07:Communications • F08:Privacy • F09:Protection of the product’s security functions • F10:Cryptographic support

• Security assurance requirements • E00:Guidance documents and manuals • E01:Configuration management • E02:Vulnerability assessment • E03:Delivery and operation • E04:Life-cycle support • E05:Assurance maintenance • E06:Development • Testing

ITSEC Ratings • The ratings are based on effectiveness and correctness. • Effectiveness means that the TOE meets the security claims that the vendor has speci- fied. This analysis looks at the construction and operational vulnerabilities and the ease of use, to ensure that the proper security settings do not get in the way of productivity.- rates functionality

• Correctness deals with how the TOE was built and implementation issues. This type of analysis looks at the architectural design, how the security mechanisms enforce the policy, and the operational documentation and environment.- rates assurance.

TCSEC vs ITSEC • TCSEC bundles functionality and assurance into one rating, whereas ITSEC evaluates these two attributes separately.

• ITSEC provides more flexibility than TCSEC. • ITSEC addresses integrity, availability, and confidentiality whereas TCSEC addresses only confidentiality.

• ITSEC also addresses networked systems, whereas TCSEC deals with stand-alone sys- tems.

0.4.3 Common Criteria

Overview

20

Security Product Evaluation Methods and Criteria

• Common criteria was the result of ISO's attempt to gather several organizations to come together to combine and align existing and emerging evaluation criteria like TCSEC, ITSEC, Canadian Trusted Computer Product Evaluation Criteria [CTCPEC], and the Federal Criteria.

• It was developed through a collaboration among national security standards organiza- tions within the United States, Canada, France, Germany, the United Kingdom, and the Netherlands.

• Under the Common Criteria model, an evaluation is carried out on a product and is assigned an Evaluation Assurance Level (EAL)

Benefits of the CC • Helps consumers by reducing the complexity of the ratings and eliminating the need to understand the definition and meaning of different ratings within various evaluation schemes.

• Helps manufacturers because now they can build to one specific set of requirements if they want to sell their products internationally, instead of having to meet several different ratings with varying rules and requirements.

CC Assurance Levels • The Common Criteria has seven assurance levels which ranges from EAL1(lowest), where functionality testing takes place, through EAL7(highest), where thorough testing is per- formed and the system design is verified. • EAL 1 Functionally tested • EAL 2 Structurally tested • EAL 3 Methodically tested and checked • EAL 4 Methodically designed, tested, and reviewed • EAL 5 Semi-formally designed and tested • EAL 6 Semi-formally verified design and tested • EAL 7 Formally verified design and tested

Protection Profile • A protection profile is a mechanism that is used by CC in its evaluation process to describe a real-world need of a product that is not currently on the market.

• Protection Profile Characteristics • Contains the set of security requirements, their meaning and reasoning, and the corre- sponding EAL rating that the intended product will require.

• Describes the environmental assumptions, the objectives, and the functional and as- surance level expectations. Each relevant threat is listed along with how it is to be controlled by specific objectives.

• Justifies the assurance level and requirements for the strength of each protection mech- anism.

• Provides a means for a consumer, or others, to identify specific security needs; this is the security problem that is to be conquered

• Provide the necessary goals and protection mechanisms to achieve the necessary level of security and a list of the things that can go wrong during the type of system devel- opment.

• Protection Profile Sections

21

Contents

• Descriptive elements Provides the name of the profile and a description of the security problem that is to be solved.

• Rationale Justifies the profile and gives a more detailed description of the real-world problem to be solved. The environment, usage assumptions, and threats are illustrated along with guidance on the security policies that can be supported by products and systems that conform to this profile.

• Functional requirements Establishes a protection boundary, meaning the threats or compromises that are within this boundary to be countered. The product or system must enforce the boundary established in this section.

• Development assurance requirements Identifies the specific requirements that the prod- uct or system must meet during the development phases, from design to implementa- tion.

• Evaluation assurance requirements Establishes the type and intensity of the evaluation.

CC Components • Protection profile- Description of needed security solution. • Target of evaluation- Product proposed to provide needed security solution. • Security target- Vendor’s written explanation of the security functionality and assurance mechanisms that meet the needed security solution; in other words, “This is what our product does and how it does it.”

• Packages—EALs- Functional and assurance requirements are bundled into packages for reuse. This component describes what must be met to achieve specific EAL ratings.

0.4.4 Certification and Accreditation

Certification • Certification is the comprehensive technical evaluation of the security components and their compliance for the purpose of accreditation.

• A certification process may use safeguard evaluation, risk analysis, verification, testing, and auditing techniques to assess the appropriateness of a specific system.

• The goal of a certification process is to ensure that a system, product, or network is right for the customer’s purposes.

Accreditation • Accreditation is the formal acceptance of the adequacy of a system’s overall security and functionality by management.

• Certification is a technical review that assesses the security mechanisms and evaluates their effectiveness. Accreditation is management’s official acceptance of the information in the certification process findings.

22

1 Contributors

Edits User 1 Adrignola1 5 QuiteUnusual2

1 http://en.wikibooks.org/wiki/User:Adrignola 2 http://en.wikibooks.org/wiki/User:QuiteUnusual

23

List of Figures

• GFDL: Gnu Free Documentation License. http://www.gnu.org/licenses/fdl. html

• cc-by-sa-3.0: Creative Commons Attribution ShareAlike 3.0 License. http:// creativecommons.org/licenses/by-sa/3.0/

• cc-by-sa-2.5: Creative Commons Attribution ShareAlike 2.5 License. http:// creativecommons.org/licenses/by-sa/2.5/

• cc-by-sa-2.0: Creative Commons Attribution ShareAlike 2.0 License. http:// creativecommons.org/licenses/by-sa/2.0/

• cc-by-sa-1.0: Creative Commons Attribution ShareAlike 1.0 License. http:// creativecommons.org/licenses/by-sa/1.0/

• cc-by-2.0: Creative Commons Attribution 2.0 License. http://creativecommons. org/licenses/by/2.0/

• cc-by-2.0: Creative Commons Attribution 2.0 License. http://creativecommons. org/licenses/by/2.0/deed.en

• cc-by-2.5: Creative Commons Attribution 2.5 License. http://creativecommons. org/licenses/by/2.5/deed.en

• cc-by-3.0: Creative Commons Attribution 3.0 License. http://creativecommons. org/licenses/by/3.0/deed.en

• GPL: GNU General Public License. http://www.gnu.org/licenses/gpl-2.0.txt

• LGPL: GNU Lesser General Public License. http://www.gnu.org/licenses/lgpl. html

• PD: This image is in the public domain.

• ATTR: The copyright holder of this file allows anyone to use it for any purpose, provided that the copyright holder is properly attributed. Redistribution, derivative work, commercial use, and all other use is permitted.

• EURO: This is the common (reverse) face of a euro coin. The copyright on the design of the common face of the euro coins belongs to the European Commission. Authorised is reproduction in a format without relief (drawings, paintings, films) provided they are not detrimental to the image of the euro.

• LFK: Lizenz Freie Kunst. http://artlibre.org/licence/lal/de

• CFR: Copyright free use.

25

List of Figures

• EPL: Eclipse Public License. http://www.eclipse.org/org/documents/epl-v10. php

Copies of the GPL, the LGPL as well as a GFDL are included in chapter Licenses3. Please note that images in the public domain do not require attribution. You may click on the image numbers in the following table to open the webpage of the images in your webbrower.

3 Chapter 2 on page 29

26

List of Figures

27

2 Licenses

2.1 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007

Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble

The GNU General Public License is a free, copyleft license for software and other kinds of works.

The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By con- trast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foun- dation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.

To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.

For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.

Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.

For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.

Some devices are designed to deny users access to install or run mod- ified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protect- ing users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.

Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of soft- ware on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.

The precise terms and conditions for copying, distribution and modi- fication follow. TERMS AND CONDITIONS 0. Definitions.

“This License” refers to version 3 of the GNU General Public License.

“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.

“The Program” refers to any copyrightable work licensed under this Li- cense. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.

To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.

A “covered work” means either the unmodified Program or a work based on the Program.

To “propagate” a work means to do anything with it that, without per- mission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.

To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.

An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible fea- ture that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the inter- face presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code.

The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.

A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.

The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Ma- jor Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.

The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those sub- programs and other parts of the work.

The Corresponding Source need not include anything that users can re- generate automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions.

All rights granted under this License are granted for the term of copy- right on the Program, and are irrevocable provided the stated con- ditions are met. This License explicitly affirms your unlimited per- mission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not con- vey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti- Circumvention Law.

No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.

When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circum- vention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit opera- tion or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies.

You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appro- priately publish on each copy an appropriate copyright notice; keep in- tact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all no- tices of the absence of any warranty; and give all recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you con- vey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions.

You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:

* a) The work must carry prominent notices stating that you modified it, and giving a relevant date. * b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. * c) You must license the entire work, as a whole, under this License to anyone who comes into pos- session of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. * d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.

A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms.

You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:

* a) Convey the object code in, or embodied in, a physical product (in- cluding a physical distribution medium), accompanied by the Corre- sponding Source fixed on a durable physical medium customarily used for software interchange. * b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), ac- companied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that prod- uct model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium cus- tomarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. * c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with sub- section 6b. * d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corre- sponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a

different server (operated by you or a third party) that supports equiv- alent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Re- gardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. * e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be in- cluded in conveying the object code work.

A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorpora- tion into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.

“Installation Information” for a User Product means any methods, pro- cedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.

If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corre- sponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modi- fied object code on the User Product (for example, the work has been installed in ROM).

The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or up- dates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself ma- terially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.

Corresponding Source conveyed, and Installation Information pro- vided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms.

“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Ad- ditional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:

* a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or * b) Requiring preser- vation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or * c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or * d) Limiting the use for publicity purposes of names of licensors or au- thors of the material; or * e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or * f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.

All other non-permissive additional terms are considered “further re- strictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is gov- erned by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that li- cense document, provided that the further restriction does not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination.

You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).

However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, un- less and until the copyright holder explicitly and finally terminates

your license, and (b) permanently, if the copyright holder fails to no- tify you of the violation by some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies.

You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work oc- curring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients.

Each time you convey a covered work, the recipient automatically re- ceives a license from the original licensors, to run, modify and prop- agate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.

An “entity transaction” is a transaction transferring control of an or- ganization, or substantially all assets of one, or subdividing an orga- nization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (in- cluding a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents.

A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.

A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propa- gate the contents of its contributor version.

In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.

If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the cov- ered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or arrange- ment, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.

A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom.

If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot con- vey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a con- sequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy

29

Licenses

both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License.

Notwithstanding any other provision of this License, you have permis- sion to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single com- bined work, and to convey the resulting work. The terms of this Li- cense will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License.

The Free Software Foundation may publish revised and/or new ver- sions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Pub- lic License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.

If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.

Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copy- right holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty.

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EX- TENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLD- ERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EX- PRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PRO- GRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DE- FECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SER- VICING, REPAIR OR CORRECTION. 16. Limitation of Liability.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCI- DENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING REN- DERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPER- ATEWITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16.

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an abso- lute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.

<one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author>

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PUR- POSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:

<program> Copyright (C) <year> <name of author> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your pro- gram's commands might be different; for a GUI interface, you would use an “about box”.

You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if nec- essary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.

2.2 GNU Free Documentation License Version 1.3, 3 November 2008

Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. <http://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. 0. PREAMBLE

The purpose of this License is to make a manual, textbook, or other functional and useful document "free" in the sense of freedom: to as- sure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Sec- ondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.

This License is a kind of "copyleft", which means that derivative works of the document must themselves be free in the same sense. It com- plements the GNU General Public License, which is a copyleft license designed for free software.

We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free pro- gram should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this Li- cense principally for works whose purpose is instruction or reference. 1. APPLICABILITY AND DEFINITIONS

This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The "Document", below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you". You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.

A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifica- tions and/or translated into another language.

A "Secondary Section" is a named appendix or a front-matter sec- tion of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connec- tion with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.

The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.

The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.

A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightfor- wardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage sub- sequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not "Transparent" is called "Opaque".

Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input for- mat, SGML or XML using a publicly available DTD, and standard- conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF pro- duced by some word processors for output purposes only.

The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text.

The "publisher" means any person or entity that distributes copies of the Document to the public.

A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses

following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as "Acknowl- edgements", "Dedications", "Endorsements", or "History".) To "Pre- serve the Title" of such a section when you modify the Document means that it remains a section "Entitled XYZ" according to this def- inition.

The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These War- ranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other impli- cation that these Warranty Disclaimers may have is void and has no effect on the meaning of this License. 2. VERBATIM COPYING

You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copy- ing of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.

You may also lend copies, under the same conditions stated above, and you may publicly display copies. 3. COPYING IN QUANTITY

If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.

If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.

If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transpar- ent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network- using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably pru- dent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.

It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document. 4. MODIFICATIONS

You may copy and distribute a Modified Version of the Document un- der the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:

* A. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Docu- ment). You may use the same title as a previous version if the original publisher of that version gives permission. * B. List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this require- ment. * C. State on the Title page the name of the publisher of the Modified Version, as the publisher. * D. Preserve all the copyright notices of the Document. * E. Add an appropriate copyright notice for your modifications adjacent to the other copyright notices. * F. In- clude, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below. * G. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice. * H. Include an unaltered copy of this License. * I. Preserve the section Entitled "His- tory", Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled "History" in the Docu- ment, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence. * J. Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the "History" section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission. * K. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor ac- knowledgements and/or dedications given therein. * L. Preserve all

the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles. * M. Delete any section Entitled "Endorse- ments". Such a section may not be included in the Modified Version. * N. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in title with any Invariant Section. * O. Preserve any Warranty Disclaimers.

If the Modified Version includes new front-matter sections or appen- dices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles.

You may add a section Entitled "Endorsements", provided it con- tains nothing but endorsements of your Modified Version by various parties—for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard.

You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.

The author(s) and publisher(s) of the Document do not by this Li- cense give permission to use their names for publicity for or to as- sert or imply endorsement of any Modified Version. 5. COMBINING DOCUMENTS

You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the In- variant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers.

The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original au- thor or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work.

In the combination, you must combine any sections Entitled "History" in the various original documents, forming one section Entitled "His- tory"; likewise combine any sections Entitled "Acknowledgements", and any sections Entitled "Dedications". You must delete all sections Entitled "Endorsements". 6. COLLECTIONS OF DOCUMENTS

You may make a collection consisting of the Document and other doc- uments released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects.

You may extract a single document from such a collection, and dis- tribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document. 7. AGGREGATION WITH INDEPENDENT WORKS

A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an "aggregate" if the copyright resulting from the compilation is not used to limit the legal rights of the com- pilation's users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document.

If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on cov- ers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate. 8. TRANSLATION

Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invari- ant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, pro- vided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail.

If a section in the Document is Entitled "Acknowledgements", "Ded- ications", or "History", the requirement (section 4) to Preserve its

Title (section 1) will typically require changing the actual title. 9. TERMINATION

You may not copy, modify, sublicense, or distribute the Document except as expressly provided under this License. Any attempt oth- erwise to copy, modify, sublicense, or distribute it is void, and will automatically terminate your rights under this License.

However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, un- less and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to no- tify you of the violation by some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, receipt of a copy of some or all of the same material does not give you any rights to use it. 10. FUTURE REVISIONS OF THIS LICENSE

The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/.

Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. If the Document specifies that a proxy can decide which future versions of this License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Document. 11. RELICENSING

"Massive Multiauthor Collaboration Site" (or "MMC Site") means any World Wide Web server that publishes copyrightable works and also provides prominent facilities for anybody to edit those works. A public wiki that anybody can edit is an example of such a server. A "Massive Multiauthor Collaboration" (or "MMC") contained in the site means any set of copyrightable works thus published on the MMC site.

"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 license published by Creative Commons Corporation, a not-for- profit corporation with a principal place of business in San Francisco, California, as well as future copyleft versions of that license published by that same organization.

"Incorporate" means to publish or republish a Document, in whole or in part, as part of another Document.

An MMC is "eligible for relicensing" if it is licensed under this License, and if all works that were first published under this License somewhere other than this MMC, and subsequently incorporated in whole or in part into the MMC, (1) had no cover texts or invariant sections, and (2) were thus incorporated prior to November 1, 2008.

The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, provided the MMC is eligible for relicensing. ADDENDUM: How to use this License for your documents

To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page:

Copyright (C) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version pub- lished by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License".

If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the "with … Texts." line with this:

with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.

If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the sit- uation.

If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to per- mit their use in free software.

30

GNU Lesser General Public License

2.3 GNU Lesser General Public License GNU LESSER GENERAL PUBLIC LICENSE

Version 3, 29 June 2007

Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public Li- cense, supplemented by the additional permissions listed below. 0. Additional Definitions.

As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License.

“The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.

An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defin- ing a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.

A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”.

The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.

The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Com- bined Work. 1. Exception to Section 3 of the GNU GPL.

You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions.

If you modify a copy of the Library, and, in your modifications, a fa- cility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:

* a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or * b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.

3. Object Code Incorporating Material from Library Header Files.

The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated ma- terial is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:

* a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. * b) Accompany the object code with a copy of the GNU GPL and this license document.

4. Combined Works.

You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineer- ing for debugging such modifications, if you also do each of the follow- ing:

* a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. * b) Accompany the Combined Work with a copy of the GNU GPL and this license document. * c) For a Com- bined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. * d) Do one of the following: o 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. o 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. * e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)

5. Combined Libraries.

You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:

* a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. * b) Give prominent no- tice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.

6. Revised Versions of the GNU Lesser General Public License.

The Free Software Foundation may publish revised and/or new ver- sions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.

If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any ver- sion is permanent authorization for you to choose that version for the Library.

31

  • 0.1 [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]cmunbx.ttf[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]cmunbx.ttfComputer Systems Architecture
  • 0.2 [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]cmunbx.ttf[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]cmunbx.ttfSystems Security Architecture
  • 0.3 [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]cmunbx.ttf[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]cmunbx.ttfSecurity Models
  • 0.4 [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]cmunbx.ttf[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]cmunbx.ttfSecurity Product Evaluation Methods and Criteria
  • 1 Contributors
  • List of Figures
  • 2 Licenses
    • 2.1 GNU GENERAL PUBLIC LICENSE
    • 2.2 GNU Free Documentation License
    • 2.3 GNU Lesser General Public License

headers/babel.tex

\usepackage[english]{babel} \newcommand{\mychapterbabel}{Chapter} \newcommand{\mypagebabel}{on page} \newcommand{\myfigurebabel}{Figure} \newcommand{\mylangbabel}{english}

headers/commands.tex

% Syntax Highlightling %\DefineShortVerb[commandchars=\\\{\}]{\|} \DefineVerbatimEnvironment{Highlighting}{Verbatim}{commandchars=\\\{\}} % Add ',fontsize=\small' for more characters per line \newenvironment{Shaded}{\begin{scriptsize}}{\end{scriptsize}} \newcommand{\KeywordTok}[1]{\textbf{{#1}}} \newcommand{\DataTypeTok}[1]{\underline{{#1}}} \newcommand{\DecValTok}[1]{{#1}} \newcommand{\BaseNTok}[1]{{#1}} \newcommand{\FloatTok}[1]{{#1}} \newcommand{\CharTok}[1]{{#1}} \newcommand{\StringTok}[1]{{#1}} \newcommand{\CommentTok}[1]{\textit{{#1}}} \newcommand{\OtherTok}[1]{{#1}} \newcommand{\AlertTok}[1]{\textbf{{#1}}} \newcommand{\FunctionTok}[1]{{#1}} \newcommand{\RegionMarkerTok}[1]{{#1}} \newcommand{\ErrorTok}[1]{\textbf{{#1}}} \newcommand{\NormalTok}[1]{{#1}} \newcommand{\myfigurewithoutcaption}[1]{{\bfseries \myfigurebabel{ }#1}} \newcommand{\myfigurewithcaption}[2]{{\bfseries \myfigurebabel{ }#1{\quad}}#2} % Definition der Fussnoten % ------------------------ %\KOMAoptions{footnotes=multiple} \DeclareTextSymbol{\textlongs}{TS1}{115} \deffootnote[2.2em]{2.2em}{0em}{\makebox[2.2em][l]{\thefootnotemark}} \newcommand{\badchar}[1] {\textbf{?}} \newcommand{\myplainurl}[1] {{\ttfamily \url{#1}}} \newcommand{\myfnhref}[2] {{#2} \^{}{\{\ttfamily \url{#1}\}} } \newcommand{\mymchref}[2] {} \newcommand{\mytabhref}[2] {{#2}\protect\footnote{\ttfamily \url{#1} }} %{\textsc{#2}} \newcommand{\myfnlref}[2] {{#2} \^{}\{\mychapterbabel \ref{#1} \mypagebabel {$\text{}$} \pageref{#1}\}} \newlength{\fnwidth} \setlength{\fnwidth}{\linewidth} \addtolength{\fnwidth}{-10mm} \newcommand{\myhref}[2] {{#2}\protect\footnote{ \begin{minipage}{\fnwidth} \ttfamily \url{#1} \end{minipage}}} \newcommand{\mylref}[2] {{#2}\protect\footnote{\mychapterbabel {$\text{}$} \ref{#1} \mypagebabel {$\text{}$} \pageref{#1}}} \newcommand{\myfnsref}[2] {\text{#2} \^{}\{\text{#1} \}} \newcommand{\mysref}[2] {\text{#2}\protect\footnote{#1}} \newcommand{\TickYes}{\checkmark} % Kompatibilität, damit myfootnote nichts ins Leere läuft \newcommand{\myfootnote}[1] %{\footnote{\quad{}#1}} {\footnote{#1}} % Auflistungen % ------------ % Standardvorschlag für itemize %\newenvironment{myitemize}{\begin{itemize}}{\end{itemize}} %\newenvironment{myenumerate}{\begin{enumerate}}{\end{enumerate}} \newenvironment{myquote}{\begin{itemize}[{}]}{\end{itemize}} \newenvironment{myblockquote}{\begin{itemize}[{\quad}]}{\end{itemize}} \newenvironment{mydescription}{ \begin{inparablank}}{\end{inparablank}} % Alternativen ohne Einrückung \newenvironment{myitemize}{\begin{compactitem}[\textbullet]}{\end{compactitem}} \newenvironment{myenumerate}{\begin{compactenum}}{\end{compactenum}} % einige weitere Festlegungen % --------------------------- % \breakslash is used for URLs to allow linebreaking \newcommand{\mybreakslash}{\discretionary{/}{}{/}} \newlength{\mylength} \newlength{\myhight} \newlength{\myshadingheight} \newcommand{\myoverline}[1] {\settowidth{\mylength}{#1} \settoheight{\myhight}{#1} \makebox[-3pt][l]{#1} \rule[\myhight+1pt]{\mylength}{0.15mm}} % Teile von Büchern \newcommand{\mypart}[1] %{\part{#1}} {\addtocontents{toc}{\protect\vspace{7.5mm} \textbf{\Large {#1}}}} % minitoc vorbereiten, aber standardmäßig unterdrücken \newcommand{\myminitoc}{} % Haupttitel % ---------- %\newcommand{\mymaintitle}[1] %{\definecolor{shadecolor}{gray}{0.9}\begin{shaded} %\begin{center} %\Huge \bfseries %#1 %\end{center} %\end{shaded}} %\newcommand{\mysubtitle}[1] %{\begin{center} %\LARGE \bfseries %#1 %\end{center}} \newcommand{\mysubtitle}[1]{\subtitle{#1}} \newcommand{\mymaintitle}[1]{\title{#1}} \newcommand{\myauthor}[1]{\author{#1}} % this is for getting rid of a lintian complaint about % the German translation of the English word resolution which % I can not represent here literally according to lintian \newcommand{\resdhunlongstring}[0]{Res} \newcommand{\sourcedhunlongstring}[0]{source} \newcommand{\redshunlongstringsource}[0]{\resdhunlongstring\sourcedhunlongstring} % Metadaten % --------- \newcommand{\fetchurlcaption}[0] {\mysref{In den Metadaten erläutert unter: {\itshape Adresse der elektronischen \redshunlongstringsource zur Abholung (O)}.}{URL zur Abholung}} \newcommand{\bookcaption}[0] {\mysref{In den Metadaten erläutert unter: {\itshape Adresse der elektronischen \redshunlongstringsource (O)}.}{Buch (Hauptseite)}} \newcommand{\functionalgroupcaption}[0] {\mysref{In den Metadaten erläutert unter: {\itshape Angaben zum Inhalt: DDC-Sachgruppe der Deutschen Nationalbibliografie oder Warengruppen-Systematik des Deutschen Buchhandels (O)}.}{Sachgruppe(n)} } \newcommand{\futhertopicscaption}[0] {\mysref{In den Metadaten erläutert unter: {\itshape Angaben zum Inhalt: weitere Klassifikationen / Thesauri (F)}.}{Weitere Themen}} \newcommand{\mainauthorscaption}[0] {Hauptautor(en)} \newcommand{\projecttexniciancaption}[0] {Betreuer} \newcommand{\organizationscaptions}[0] {\mysref{In den Metadaten erläutert unter: {\itshape Beteiligte Organisationen (F)}.}{Organisation(en)}} \newcommand{\datecaption}[0] {Erscheinungsdatum} \newcommand{\issuecaption}[0] {Ausgabebezeichnung} \newcommand{\standardcodecaption}[0] {Standardnummer } \newcommand{\maintitlecaption}[0] {Haupttitel} \newcommand{\publishercaption}[0] {\mysref{In den Metadaten erläutert unter: {\itshape Verlag / Verlegende Stelle (O)}.}{Verlegende Stelle} } \newcommand{\publishercitycaption}[0] {Verlagsort} \newcommand{\shelfcaption}[0] {Wikibooks-Regal} \newcommand{\sizecaption}[0] {Umfang} \newcommand{\Alpha}{\mathrm{A}} \newcommand{\Beta}{\mathrm{B}} \newcommand{\Epsilon}{\mathrm{E}} \newcommand{\Zeta}{\mathrm{Z}} \newcommand{\Eta}{\mathrm{H}} \newcommand{\Iota}{\mathrm{I}} \newcommand{\Kappa}{\mathrm{K}} \newcommand{\Mu}{\mathrm{M}} \newcommand{\Nu}{\mathrm{N}} \newcommand{\Rho}{\mathrm{P}} \newcommand{\Tau}{\mathrm{T}} \newcommand{\Chi}{\mathrm{X}}

headers/defaultcolors.tex

\definecolor{AliceBlue}{rgb}{0.941176470588,0.972549019608,1.0} \definecolor{aliceblue}{rgb}{0.941176470588,0.972549019608,1.0} \definecolor{AntiqueWhite}{rgb}{0.980392156863,0.921568627451,0.843137254902} \definecolor{antiquewhite}{rgb}{0.980392156863,0.921568627451,0.843137254902} \definecolor{Aqua}{rgb}{0.0,1.0,1.0} \definecolor{aqua}{rgb}{0.0,1.0,1.0} \definecolor{Aquamarine}{rgb}{0.498039215686,1.0,0.83137254902} \definecolor{aquamarine}{rgb}{0.498039215686,1.0,0.83137254902} \definecolor{Azure}{rgb}{0.941176470588,1.0,1.0} \definecolor{azure}{rgb}{0.941176470588,1.0,1.0} \definecolor{Beige}{rgb}{0.960784313725,0.960784313725,0.862745098039} \definecolor{beige}{rgb}{0.960784313725,0.960784313725,0.862745098039} \definecolor{Bisque}{rgb}{1.0,0.894117647059,0.76862745098} \definecolor{bisque}{rgb}{1.0,0.894117647059,0.76862745098} \definecolor{Black}{rgb}{0.0,0.0,0.0} \definecolor{black}{rgb}{0.0,0.0,0.0} \definecolor{BlanchedAlmond}{rgb}{1.0,0.921568627451,0.803921568627} \definecolor{blanchedalmond}{rgb}{1.0,0.921568627451,0.803921568627} \definecolor{Blue}{rgb}{0.0,0.0,1.0} %\definecolor{blue}{rgb}{0.0,0.0,1.0} \definecolor{BlueViolet}{rgb}{0.541176470588,0.16862745098,0.886274509804} \definecolor{blueviolet}{rgb}{0.541176470588,0.16862745098,0.886274509804} \definecolor{Brown}{rgb}{0.647058823529,0.164705882353,0.164705882353} \definecolor{brown}{rgb}{0.647058823529,0.164705882353,0.164705882353} \definecolor{BurlyWood}{rgb}{0.870588235294,0.721568627451,0.529411764706} \definecolor{burlywood}{rgb}{0.870588235294,0.721568627451,0.529411764706} \definecolor{CadetBlue}{rgb}{0.372549019608,0.619607843137,0.627450980392} \definecolor{cadetblue}{rgb}{0.372549019608,0.619607843137,0.627450980392} \definecolor{Chartreuse}{rgb}{0.498039215686,1.0,0.0} \definecolor{chartreuse}{rgb}{0.498039215686,1.0,0.0} \definecolor{Chocolate}{rgb}{0.823529411765,0.411764705882,0.117647058824} \definecolor{chocolate}{rgb}{0.823529411765,0.411764705882,0.117647058824} \definecolor{Coral}{rgb}{1.0,0.498039215686,0.313725490196} \definecolor{coral}{rgb}{1.0,0.498039215686,0.313725490196} \definecolor{CornflowerBlue}{rgb}{0.392156862745,0.58431372549,0.929411764706} \definecolor{cornflowerblue}{rgb}{0.392156862745,0.58431372549,0.929411764706} \definecolor{Cornsilk}{rgb}{1.0,0.972549019608,0.862745098039} \definecolor{cornsilk}{rgb}{1.0,0.972549019608,0.862745098039} \definecolor{Crimson}{rgb}{0.862745098039,0.078431372549,0.235294117647} \definecolor{crimson}{rgb}{0.862745098039,0.078431372549,0.235294117647} \definecolor{Cyan}{rgb}{0.0,1.0,1.0} %\definecolor{cyan}{rgb}{0.0,1.0,1.0} \definecolor{DarkBlue}{rgb}{0.0,0.0,0.545098039216} \definecolor{darkblue}{rgb}{0.0,0.0,0.545098039216} \definecolor{DarkCyan}{rgb}{0.0,0.545098039216,0.545098039216} \definecolor{darkcyan}{rgb}{0.0,0.545098039216,0.545098039216} \definecolor{DarkGoldenRod}{rgb}{0.721568627451,0.525490196078,0.043137254902} \definecolor{darkgoldenrod}{rgb}{0.721568627451,0.525490196078,0.043137254902} \definecolor{DarkGray}{rgb}{0.662745098039,0.662745098039,0.662745098039} \definecolor{darkgray}{rgb}{0.662745098039,0.662745098039,0.662745098039} \definecolor{DarkGreen}{rgb}{0.0,0.392156862745,0.0} \definecolor{darkgreen}{rgb}{0.0,0.392156862745,0.0} \definecolor{DarkKhaki}{rgb}{0.741176470588,0.717647058824,0.419607843137} \definecolor{darkkhaki}{rgb}{0.741176470588,0.717647058824,0.419607843137} \definecolor{DarkMagenta}{rgb}{0.545098039216,0.0,0.545098039216} \definecolor{darkmagenta}{rgb}{0.545098039216,0.0,0.545098039216} \definecolor{DarkOliveGreen}{rgb}{0.333333333333,0.419607843137,0.18431372549} \definecolor{darkolivegreen}{rgb}{0.333333333333,0.419607843137,0.18431372549} \definecolor{Darkorange}{rgb}{1.0,0.549019607843,0.0} \definecolor{darkorange}{rgb}{1.0,0.549019607843,0.0} \definecolor{DarkOrchid}{rgb}{0.6,0.196078431373,0.8} \definecolor{darkorchid}{rgb}{0.6,0.196078431373,0.8} \definecolor{DarkRed}{rgb}{0.545098039216,0.0,0.0} \definecolor{darkred}{rgb}{0.545098039216,0.0,0.0} \definecolor{DarkSalmon}{rgb}{0.913725490196,0.588235294118,0.478431372549} \definecolor{darksalmon}{rgb}{0.913725490196,0.588235294118,0.478431372549} \definecolor{DarkSeaGreen}{rgb}{0.560784313725,0.737254901961,0.560784313725} \definecolor{darkseagreen}{rgb}{0.560784313725,0.737254901961,0.560784313725} \definecolor{DarkSlateBlue}{rgb}{0.282352941176,0.239215686275,0.545098039216} \definecolor{darkslateblue}{rgb}{0.282352941176,0.239215686275,0.545098039216} \definecolor{DarkSlateGray}{rgb}{0.18431372549,0.309803921569,0.309803921569} \definecolor{darkslategray}{rgb}{0.18431372549,0.309803921569,0.309803921569} \definecolor{DarkTurquoise}{rgb}{0.0,0.807843137255,0.819607843137} \definecolor{darkturquoise}{rgb}{0.0,0.807843137255,0.819607843137} \definecolor{DarkViolet}{rgb}{0.580392156863,0.0,0.827450980392} \definecolor{darkviolet}{rgb}{0.580392156863,0.0,0.827450980392} \definecolor{DeepPink}{rgb}{1.0,0.078431372549,0.576470588235} \definecolor{deeppink}{rgb}{1.0,0.078431372549,0.576470588235} \definecolor{DeepSkyBlue}{rgb}{0.0,0.749019607843,1.0} \definecolor{deepskyblue}{rgb}{0.0,0.749019607843,1.0} \definecolor{DimGray}{rgb}{0.411764705882,0.411764705882,0.411764705882} \definecolor{dimgray}{rgb}{0.411764705882,0.411764705882,0.411764705882} \definecolor{DodgerBlue}{rgb}{0.117647058824,0.564705882353,1.0} \definecolor{dodgerblue}{rgb}{0.117647058824,0.564705882353,1.0} \definecolor{FireBrick}{rgb}{0.698039215686,0.133333333333,0.133333333333} \definecolor{firebrick}{rgb}{0.698039215686,0.133333333333,0.133333333333} \definecolor{FloralWhite}{rgb}{1.0,0.980392156863,0.941176470588} \definecolor{floralwhite}{rgb}{1.0,0.980392156863,0.941176470588} \definecolor{ForestGreen}{rgb}{0.133333333333,0.545098039216,0.133333333333} \definecolor{forestgreen}{rgb}{0.133333333333,0.545098039216,0.133333333333} \definecolor{Fuchsia}{rgb}{1.0,0.0,1.0} \definecolor{fuchsia}{rgb}{1.0,0.0,1.0} \definecolor{Gainsboro}{rgb}{0.862745098039,0.862745098039,0.862745098039} \definecolor{gainsboro}{rgb}{0.862745098039,0.862745098039,0.862745098039} \definecolor{GhostWhite}{rgb}{0.972549019608,0.972549019608,1.0} \definecolor{ghostwhite}{rgb}{0.972549019608,0.972549019608,1.0} \definecolor{Gold}{rgb}{1.0,0.843137254902,0.0} \definecolor{gold}{rgb}{1.0,0.843137254902,0.0} \definecolor{GoldenRod}{rgb}{0.854901960784,0.647058823529,0.125490196078} \definecolor{goldenrod}{rgb}{0.854901960784,0.647058823529,0.125490196078} \definecolor{Gray}{rgb}{0.501960784314,0.501960784314,0.501960784314} \definecolor{gray}{rgb}{0.501960784314,0.501960784314,0.501960784314} \definecolor{Green}{rgb}{0.0,0.501960784314,0.0} %\definecolor{green}{rgb}{0.0,0.501960784314,0.0} \definecolor{GreenYellow}{rgb}{0.678431372549,1.0,0.18431372549} \definecolor{greenyellow}{rgb}{0.678431372549,1.0,0.18431372549} \definecolor{HoneyDew}{rgb}{0.941176470588,1.0,0.941176470588} \definecolor{honeydew}{rgb}{0.941176470588,1.0,0.941176470588} \definecolor{HotPink}{rgb}{1.0,0.411764705882,0.705882352941} \definecolor{hotpink}{rgb}{1.0,0.411764705882,0.705882352941} \definecolor{IndianRed}{rgb}{0.803921568627,0.360784313725,0.360784313725} \definecolor{indianred}{rgb}{0.803921568627,0.360784313725,0.360784313725} \definecolor{Indigo}{rgb}{0.294117647059,0.0,0.509803921569} \definecolor{indigo}{rgb}{0.294117647059,0.0,0.509803921569} \definecolor{Ivory}{rgb}{1.0,1.0,0.941176470588} \definecolor{ivory}{rgb}{1.0,1.0,0.941176470588} \definecolor{Khaki}{rgb}{0.941176470588,0.901960784314,0.549019607843} \definecolor{khaki}{rgb}{0.941176470588,0.901960784314,0.549019607843} \definecolor{Lavender}{rgb}{0.901960784314,0.901960784314,0.980392156863} \definecolor{lavender}{rgb}{0.901960784314,0.901960784314,0.980392156863} \definecolor{LavenderBlush}{rgb}{1.0,0.941176470588,0.960784313725} \definecolor{lavenderblush}{rgb}{1.0,0.941176470588,0.960784313725} \definecolor{LawnGreen}{rgb}{0.486274509804,0.988235294118,0.0} \definecolor{lawngreen}{rgb}{0.486274509804,0.988235294118,0.0} \definecolor{LemonChiffon}{rgb}{1.0,0.980392156863,0.803921568627} \definecolor{lemonchiffon}{rgb}{1.0,0.980392156863,0.803921568627} \definecolor{LightBlue}{rgb}{0.678431372549,0.847058823529,0.901960784314} \definecolor{lightblue}{rgb}{0.678431372549,0.847058823529,0.901960784314} \definecolor{LightCoral}{rgb}{0.941176470588,0.501960784314,0.501960784314} \definecolor{lightcoral}{rgb}{0.941176470588,0.501960784314,0.501960784314} \definecolor{LightCyan}{rgb}{0.878431372549,1.0,1.0} \definecolor{lightcyan}{rgb}{0.878431372549,1.0,1.0} \definecolor{LightGoldenRodYellow}{rgb}{0.980392156863,0.980392156863,0.823529411765} \definecolor{lightgoldenrodyellow}{rgb}{0.980392156863,0.980392156863,0.823529411765} \definecolor{LightGrey}{rgb}{0.827450980392,0.827450980392,0.827450980392} \definecolor{lightgrey}{rgb}{0.827450980392,0.827450980392,0.827450980392} \definecolor{LightGreen}{rgb}{0.564705882353,0.933333333333,0.564705882353} \definecolor{lightgreen}{rgb}{0.564705882353,0.933333333333,0.564705882353} \definecolor{LightPink}{rgb}{1.0,0.713725490196,0.756862745098} \definecolor{lightpink}{rgb}{1.0,0.713725490196,0.756862745098} \definecolor{LightSalmon}{rgb}{1.0,0.627450980392,0.478431372549} \definecolor{lightsalmon}{rgb}{1.0,0.627450980392,0.478431372549} \definecolor{LightSeaGreen}{rgb}{0.125490196078,0.698039215686,0.666666666667} \definecolor{lightseagreen}{rgb}{0.125490196078,0.698039215686,0.666666666667} \definecolor{LightSkyBlue}{rgb}{0.529411764706,0.807843137255,0.980392156863} \definecolor{lightskyblue}{rgb}{0.529411764706,0.807843137255,0.980392156863} \definecolor{LightSlateGray}{rgb}{0.466666666667,0.533333333333,0.6} \definecolor{lightslategray}{rgb}{0.466666666667,0.533333333333,0.6} \definecolor{LightSteelBlue}{rgb}{0.690196078431,0.76862745098,0.870588235294} \definecolor{lightsteelblue}{rgb}{0.690196078431,0.76862745098,0.870588235294} \definecolor{LightYellow}{rgb}{1.0,1.0,0.878431372549} \definecolor{lightyellow}{rgb}{1.0,1.0,0.878431372549} \definecolor{Lime}{rgb}{0.0,1.0,0.0} \definecolor{lime}{rgb}{0.0,1.0,0.0} \definecolor{LimeGreen}{rgb}{0.196078431373,0.803921568627,0.196078431373} \definecolor{limegreen}{rgb}{0.196078431373,0.803921568627,0.196078431373} \definecolor{Linen}{rgb}{0.980392156863,0.941176470588,0.901960784314} \definecolor{linen}{rgb}{0.980392156863,0.941176470588,0.901960784314} \definecolor{Magenta}{rgb}{1.0,0.0,1.0} %\definecolor{magenta}{rgb}{1.0,0.0,1.0} \definecolor{Maroon}{rgb}{0.501960784314,0.0,0.0} \definecolor{maroon}{rgb}{0.501960784314,0.0,0.0} \definecolor{MediumAquaMarine}{rgb}{0.4,0.803921568627,0.666666666667} \definecolor{mediumaquamarine}{rgb}{0.4,0.803921568627,0.666666666667} \definecolor{MediumBlue}{rgb}{0.0,0.0,0.803921568627} \definecolor{mediumblue}{rgb}{0.0,0.0,0.803921568627} \definecolor{MediumOrchid}{rgb}{0.729411764706,0.333333333333,0.827450980392} \definecolor{mediumorchid}{rgb}{0.729411764706,0.333333333333,0.827450980392} \definecolor{MediumPurple}{rgb}{0.576470588235,0.439215686275,0.847058823529} \definecolor{mediumpurple}{rgb}{0.576470588235,0.439215686275,0.847058823529} \definecolor{MediumSeaGreen}{rgb}{0.235294117647,0.701960784314,0.443137254902} \definecolor{mediumseagreen}{rgb}{0.235294117647,0.701960784314,0.443137254902} \definecolor{MediumSlateBlue}{rgb}{0.482352941176,0.407843137255,0.933333333333} \definecolor{mediumslateblue}{rgb}{0.482352941176,0.407843137255,0.933333333333} \definecolor{MediumSpringGreen}{rgb}{0.0,0.980392156863,0.603921568627} \definecolor{mediumspringgreen}{rgb}{0.0,0.980392156863,0.603921568627} \definecolor{MediumTurquoise}{rgb}{0.282352941176,0.819607843137,0.8} \definecolor{mediumturquoise}{rgb}{0.282352941176,0.819607843137,0.8} \definecolor{MediumVioletRed}{rgb}{0.780392156863,0.0823529411765,0.521568627451} \definecolor{mediumvioletred}{rgb}{0.780392156863,0.0823529411765,0.521568627451} \definecolor{MidnightBlue}{rgb}{0.0980392156863,0.0980392156863,0.439215686275} \definecolor{midnightblue}{rgb}{0.0980392156863,0.0980392156863,0.439215686275} \definecolor{MintCream}{rgb}{0.960784313725,1.0,0.980392156863} \definecolor{mintcream}{rgb}{0.960784313725,1.0,0.980392156863} \definecolor{MistyRose}{rgb}{1.0,0.894117647059,0.882352941176} \definecolor{mistyrose}{rgb}{1.0,0.894117647059,0.882352941176} \definecolor{Moccasin}{rgb}{1.0,0.894117647059,0.709803921569} \definecolor{moccasin}{rgb}{1.0,0.894117647059,0.709803921569} \definecolor{NavajoWhite}{rgb}{1.0,0.870588235294,0.678431372549} \definecolor{navajowhite}{rgb}{1.0,0.870588235294,0.678431372549} \definecolor{Navy}{rgb}{0.0,0.0,0.501960784314} \definecolor{navy}{rgb}{0.0,0.0,0.501960784314} \definecolor{OldLace}{rgb}{0.992156862745,0.960784313725,0.901960784314} \definecolor{oldlace}{rgb}{0.992156862745,0.960784313725,0.901960784314} \definecolor{Olive}{rgb}{0.501960784314,0.501960784314,0.0} \definecolor{olive}{rgb}{0.501960784314,0.501960784314,0.0} \definecolor{OliveDrab}{rgb}{0.419607843137,0.556862745098,0.137254901961} \definecolor{olivedrab}{rgb}{0.419607843137,0.556862745098,0.137254901961} \definecolor{Orange}{rgb}{1.0,0.647058823529,0.0} \definecolor{orange}{rgb}{1.0,0.647058823529,0.0} \definecolor{OrangeRed}{rgb}{1.0,0.270588235294,0.0} \definecolor{orangered}{rgb}{1.0,0.270588235294,0.0} \definecolor{Orchid}{rgb}{0.854901960784,0.439215686275,0.839215686275} \definecolor{orchid}{rgb}{0.854901960784,0.439215686275,0.839215686275} \definecolor{PaleGoldenRod}{rgb}{0.933333333333,0.909803921569,0.666666666667} \definecolor{palegoldenrod}{rgb}{0.933333333333,0.909803921569,0.666666666667} \definecolor{PaleGreen}{rgb}{0.596078431373,0.98431372549,0.596078431373} \definecolor{palegreen}{rgb}{0.596078431373,0.98431372549,0.596078431373} \definecolor{PaleTurquoise}{rgb}{0.686274509804,0.933333333333,0.933333333333} \definecolor{paleturquoise}{rgb}{0.686274509804,0.933333333333,0.933333333333} \definecolor{PaleVioletRed}{rgb}{0.847058823529,0.439215686275,0.576470588235} \definecolor{palevioletred}{rgb}{0.847058823529,0.439215686275,0.576470588235} \definecolor{PapayaWhip}{rgb}{1.0,0.937254901961,0.835294117647} \definecolor{papayawhip}{rgb}{1.0,0.937254901961,0.835294117647} \definecolor{PeachPuff}{rgb}{1.0,0.854901960784,0.725490196078} \definecolor{peachpuff}{rgb}{1.0,0.854901960784,0.725490196078} \definecolor{Peru}{rgb}{0.803921568627,0.521568627451,0.247058823529} \definecolor{peru}{rgb}{0.803921568627,0.521568627451,0.247058823529} \definecolor{Pink}{rgb}{1.0,0.752941176471,0.796078431373} \definecolor{pink}{rgb}{1.0,0.752941176471,0.796078431373} \definecolor{Plum}{rgb}{0.866666666667,0.627450980392,0.866666666667} \definecolor{plum}{rgb}{0.866666666667,0.627450980392,0.866666666667} \definecolor{PowderBlue}{rgb}{0.690196078431,0.878431372549,0.901960784314} \definecolor{powderblue}{rgb}{0.690196078431,0.878431372549,0.901960784314} \definecolor{Purple}{rgb}{0.501960784314,0.0,0.501960784314} \definecolor{purple}{rgb}{0.501960784314,0.0,0.501960784314} \definecolor{Red}{rgb}{1.0,0.0,0.0} %\definecolor{red}{rgb}{1.0,0.0,0.0} \definecolor{RosyBrown}{rgb}{0.737254901961,0.560784313725,0.560784313725} \definecolor{rosybrown}{rgb}{0.737254901961,0.560784313725,0.560784313725} \definecolor{RoyalBlue}{rgb}{0.254901960784,0.411764705882,0.882352941176} \definecolor{royalblue}{rgb}{0.254901960784,0.411764705882,0.882352941176} \definecolor{SaddleBrown}{rgb}{0.545098039216,0.270588235294,0.0745098039216} \definecolor{saddlebrown}{rgb}{0.545098039216,0.270588235294,0.0745098039216} \definecolor{Salmon}{rgb}{0.980392156863,0.501960784314,0.447058823529} \definecolor{salmon}{rgb}{0.980392156863,0.501960784314,0.447058823529} \definecolor{SandyBrown}{rgb}{0.956862745098,0.643137254902,0.376470588235} \definecolor{sandybrown}{rgb}{0.956862745098,0.643137254902,0.376470588235} \definecolor{SeaGreen}{rgb}{0.180392156863,0.545098039216,0.341176470588} \definecolor{seagreen}{rgb}{0.180392156863,0.545098039216,0.341176470588} \definecolor{SeaShell}{rgb}{1.0,0.960784313725,0.933333333333} \definecolor{seashell}{rgb}{1.0,0.960784313725,0.933333333333} \definecolor{Sienna}{rgb}{0.627450980392,0.321568627451,0.176470588235} \definecolor{sienna}{rgb}{0.627450980392,0.321568627451,0.176470588235} \definecolor{Silver}{rgb}{0.752941176471,0.752941176471,0.752941176471} \definecolor{silver}{rgb}{0.752941176471,0.752941176471,0.752941176471} \definecolor{SkyBlue}{rgb}{0.529411764706,0.807843137255,0.921568627451} \definecolor{skyblue}{rgb}{0.529411764706,0.807843137255,0.921568627451} \definecolor{SlateBlue}{rgb}{0.41568627451,0.352941176471,0.803921568627} \definecolor{slateblue}{rgb}{0.41568627451,0.352941176471,0.803921568627} \definecolor{SlateGray}{rgb}{0.439215686275,0.501960784314,0.564705882353} \definecolor{slategray}{rgb}{0.439215686275,0.501960784314,0.564705882353} \definecolor{Snow}{rgb}{1.0,0.980392156863,0.980392156863} \definecolor{snow}{rgb}{1.0,0.980392156863,0.980392156863} \definecolor{SpringGreen}{rgb}{0.0,1.0,0.498039215686} \definecolor{springgreen}{rgb}{0.0,1.0,0.498039215686} \definecolor{SteelBlue}{rgb}{0.274509803922,0.509803921569,0.705882352941} \definecolor{steelblue}{rgb}{0.274509803922,0.509803921569,0.705882352941} \definecolor{Tan}{rgb}{0.823529411765,0.705882352941,0.549019607843} \definecolor{tan}{rgb}{0.823529411765,0.705882352941,0.549019607843} \definecolor{Teal}{rgb}{0.0,0.501960784314,0.501960784314} \definecolor{teal}{rgb}{0.0,0.501960784314,0.501960784314} \definecolor{Thistle}{rgb}{0.847058823529,0.749019607843,0.847058823529} \definecolor{thistle}{rgb}{0.847058823529,0.749019607843,0.847058823529} \definecolor{Tomato}{rgb}{1.0,0.388235294118,0.278431372549} \definecolor{tomato}{rgb}{1.0,0.388235294118,0.278431372549} \definecolor{Turquoise}{rgb}{0.250980392157,0.878431372549,0.81568627451} \definecolor{turquoise}{rgb}{0.250980392157,0.878431372549,0.81568627451} \definecolor{Violet}{rgb}{0.933333333333,0.509803921569,0.933333333333} \definecolor{violet}{rgb}{0.933333333333,0.509803921569,0.933333333333} \definecolor{Wheat}{rgb}{0.960784313725,0.870588235294,0.701960784314} \definecolor{wheat}{rgb}{0.960784313725,0.870588235294,0.701960784314} \definecolor{White}{rgb}{1.0,1.0,1.0} %\definecolor{white}{rgb}{1.0,1.0,1.0} \definecolor{WhiteSmoke}{rgb}{0.960784313725,0.960784313725,0.960784313725} \definecolor{whitesmoke}{rgb}{0.960784313725,0.960784313725,0.960784313725} \definecolor{Yellow}{rgb}{1.0,1.0,0.0} %\definecolor{yellow}{rgb}{1.0,1.0,0.0} \definecolor{YellowGreen}{rgb}{0.603921568627,0.803921568627,0.196078431373} \definecolor{yellowgreen}{rgb}{0.603921568627,0.803921568627,0.196078431373} \definecolor{shadecolor}{gray}{0.9} \definecolor{mydarkgreen}{rgb}{0.0,0.5625,0.0}

headers/formattings.tex

% PDF-Links vorbereiten \hypersetup{%a5paper, linkcolor=black, % Für Links in der gleichen Seite urlcolor=black, % Für Links auf URLs breaklinks=true, % Links dürfen umgebrochen werden colorlinks=false, citebordercolor=0 0 0, % Farbe für \cite filebordercolor=0 0 0, linkbordercolor=0 0 0, menubordercolor=0 0 0, urlbordercolor=0 0 0, pdfhighlight=/I, pdfborder=0 0 0, % keine Box um die Links! bookmarksopen=true, bookmarksnumbered=true, frenchlinks=false } % nicht zu viele Silbentrennungen \sloppy % Waisen, Hurenkinder \clubpenalty = 10000 \widowpenalty = 10000 \displaywidowpenalty = 10000 % verschiedene Einstellungen \addtolength{\skip\footins}{2ex} % Länge zwischen Fußnotenbereich und Text

headers/hyphenation.tex

\hyphenation{NASA} \hyphenation{Unter-schenkel-vorder-innen-seite} \hyphenation{Unter-schenkel-vorder-au\ss en-seite} \hyphenation{Auge} \hyphenation{ohne} \hyphenation{eine} \hyphenation{come} \hyphenation{zero} \hyphenation{also} \hyphenation{five} \hyphenation{many} \hyphenation{copy} \hyphenation{year} \hyphenation{same} \hyphenation{make} \hyphenation{time} \hyphenation{made} \hyphenation{glei-che} \hyphenation{Zucker-wasser} \hyphenation{Makro-phagen-stimulation} \hyphenation{Revo-lution} \hyphenation{Reich} \hyphenation{Gebiet} \hyphenation{ethnische} \hyphenation{Sow-jet-uni-on} \hyphenation{NATO} \hyphenation{Amts-sprache} \hyphenation{Amts-sprachen} \hyphenation{Otto} \hyphenation{Ab-sorptions-ko-effizient} \hyphenation{Reich} \hyphenation{Trier} \hyphenation{Butter-worth} \hyphenation{Rausch-unter-dr\"uckung}

headers/imageheader.tex

\begin{small} Auf den folgenden Seiten stehen für alle Bilder die Quellen, Autoren und Lizenzen. Das Verzeichnis wurde erstellt mit Hilfe der \myhref{http://de.wikipedia.org/wiki/MediaWiki}{Wikimedia-Software} und an Layout und Gliederung dieses Buches angepasst. Zu den Lizenzen gibt es hier weitere Informationen: \begin{itemize} \item GNU Free Documentation License (GFDL). Text dieser Lizenz: \newline{}\url{http://www.gnu.org/licenses/old-licenses/gpl-1.0.txt} \item GNU General Public License Version 2 (GPL). Text dieser Lizenz: \newline{}\url{http://www.gnu.org/licenses/gpl-2.0.txt} \item Creative Commons Attribution ShareAlike 1.0 License (cc-by-sa-1.0). Text dieser Lizenz: \newline{}\url{http://creativecommons.org/licenses/by-sa/1.0/} \item Creative Commons Attribution ShareAlike 2.0 License (cc-by-sa-2.0). Damit werden auch die Versionen f\"ur andere Sprachen bezeichnet. Text der englischen Version: \newline{}\url{http://creativecommons.org/licenses/by-sa/2.0/} \item Creative Commons Attribution ShareAlike 2.5 License (cc-by-sa-2.5). Text dieser Lizenz:\newline{}\url{http://creativecommons.org/licenses/by-sa/2.5/} \item Creative Commons Attribution ShareAlike 3.0 License (cc-by-sa-3.0). Text dieser Lizenz:\newline{}\url{http://creativecommons.org/licenses/by-sa/3.0/} \item Creative Commons Attribution 2.0 License (cc-by-2.0). Damit werden auch die Versionen f\"ur andere Sprachen bezeichnet. Text der englischen Version:\newline{}\url{http://creativecommons.org/licenses/by/2.0/} \item Creative Commons Attribution 2.5 License (cc-by-2.5). Text dieser Lizenz:\newline{}\url{http://creativecommons.org/licenses/by/2.5/deed.en} \item Creative Commons Attribution 3.0 License (cc-by-3.0). Text dieser Lizenz:\newline{}\url{http://creativecommons.org/licenses/by/2.5/deed.en} \item Public Domain (PD): This image is in the public domain. Dieses Bild ist gemeinfrei. \item ATTR: The copyright holder of this file allows anyone to use it for any purpose, provided that the copyright holder is properly attributed. Redistribution, derivative work, commercial use, and all other use is permitted. \item EURO: This is the common (reverse) face of a euro coin. The copyright on the design of the common face of the euro coins belongs to the European Commission. Authorised is reproduction in a format without relief (drawings, paintings, films) provided they are not detrimental to the image of the euro. \end{itemize} Den an weiteren Einzelheiten interessierten Leser verweisen wir auf die Onlineversion dieses Buches und die Beschreibungsseiten der Dateien. \end{small} \pagebreak

headers/license.tex

\chapter{Zu diesem Buch} \section{Hinweise zu den Lizenzen} \label{Lizenzhinweise} Dieses Werk ist entstanden bei \myhref{http://de.wikibooks.org/wiki/Einf\%C3\%BChrung_in_SQL}{Wikibooks}, einer Online-Bibliothek im Internet mit Lehr-, Sach- und Fachbüchern. Jeder kann und darf diese Bücher frei nutzen und bearbeiten. Alle Inhalte stehen unter den Lizenzen „Creative Commons Attribution/Share-Alike“ (CC-BY-SA 3.0) und GNU-Lizenz für freie Dokumentation (GFDL). Das Konvertierungsprogramm \myhref{http://de.wikibooks.org/wiki/Benutzer:Dirk_Huenniger/wb2pdf}{wb2pdf} steht unter GNU General Public License (GPL). Das Textsatzprogramm \myhref{http://de.wikipedia.org/wiki/LaTeX} {\LaTeX{}} steht unter der LaTeX Project Public License (LPPL). Hinweise zur Nutzung und für Zitate sind zu finden unter: \begin{itemize} \item Originalversion der Lizenz CC-BY-SA 3.0 \newline \url{http://creativecommons.org/licenses/by-sa/3.0} \item Deutsche Version der Lizenz mit Ergänzungen \newline{} \url{http://creativecommons.org/licenses/by-sa/3.0/deed.de} \item Originalversion der Lizenz GFDL \newline{} \url{http://www.gnu.org/copyleft/fdl.html} \item Originalversion der Lizenz GPL \newline{} \url{http://www.gnu.org/licenses/gpl-3.0.html} \item Version der LaTeX PPL \newline{} \url{http://www.opensource.org/licenses/lppl} \item Nutzungsbedingungen der Wikimedia Foundation (deutsch) \newline{} \url{http://wikimediafoundation.org/wiki/Nutzungsbedingungen} \item Zitieren aus Wikibooks \newline{} \url{http://de.wikibooks.org/wiki/Hilfe:Zitieren#Zitieren_aus_Wikibooks} \end{itemize}

main/main.tex

\RequirePackage{hyphsubst} \documentclass[fontsize=11pt,paper=A4,BCOR=12mm,DIV=13,open=any,listof=totoc]{scrbook} \input{../headers/paper} \input{../headers/packages1} \input{../headers/babel} \input{../headers/svg} \input{../headers/packages2} \input{../headers/defaultcolors} \input{../headers/hyphenation} \input{../headers/commands} \input{../headers/title} \input{../headers/options} \input{../headers/formattings} \input{../headers/unicodes} \input{../headers/templates} \input{../headers/templates-dirk} \input{../headers/templates-chemie} \usepackage{lmodern} \usepackage{xltxtra} \usepackage{fontspec} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf} \setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf} \begin{document} \usetocstyle{standard} \raggedbottom \thispagestyle{empty} \pagestyle{empty} %\include{coverfrontpage} %\cleardoublepage \pagenumbering{Roman} \maketitle \pagestyle{scrheadings} \setcounter{tocdepth}{\mytocdepth} \tableofcontents %\cleardoublepage \pagenumbering{arabic} %\include{kap-vorwort} \LaTeXNullTemplate{} \label{0}\section{{\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Computer Systems Architecture}} \label{1}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A computer system consists of different types of components like hardware, software,operating systems and firmware. The most important and common components being \begin{myitemize} \item{} Hardware Components like: CPU, Storage Devices, I/O Devices, Communication Devices \item{} Software Components like: Operating Systems, Application Programs \item{} Firmware \end{myitemize} \subsection{Central Processing Unit (CPU)} \label{2} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} CPU is the brain of the computer. \item{} It fetches the instructions from memory and executes them \item{} Each CPU type has its own instruction set and architecture \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries CPU Components} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Registers}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf}: are temporary storage locations that can store references to memory locations, next instruction to be executed etc and also enable the CPU to keep its status information. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Arithmetic Logic Unit(ALU)}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf}: performs the actual execution of complex mathematical functions and logical operations on data. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Control Unit}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf}: manages and synchronizes the system while different applications code and OS instructions are being executed. It fetches the code,interprets the code and oversees the execution of the different instruction sets.It determines what application instructions get processed and in what priority and time slice. It controls when instructions are executed, and this execution enables applications to process data. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape General registers}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} are used to hold variables and temporary results as the ALU works through its execution steps. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Special registers}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} (dedicated registers) hold information such as the program counter, stack pointer, and program status word (PSW) \begin{myitemize} \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Program counter (PC)}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} register contains the memory address of the next instruction that needs to be fetched \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Program status word (PSW)}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} holds different condition bits. One of the bits indicates whether the CPU should be working in user mode (also called problem state) or privileged mode (also called kernel or supervisor mode). \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Stack pointer}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf}directs the CPU where the next piece of data is located. \end{myitemize} \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Address bus}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf}, is a hardwired connection to the RAM chips in the system and the individual (I/O) devices. It is used by the CPU to indicate the location of the instructions that need to be processed. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Data bus}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} is used by the memory or I/O device in response to CPU request for sending the data that resides at the requested location. \end{myitemize} \subsection{Storage} \label{3} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A storage device is a hardware device capable of storing data. \item{} Storage devices can be classified into 3 categories \begin{myitemize} \item{} Primary Storage or Memory: which are directly accessible to the CPU like Cache Memory (L1,L2,L3),Main Memory (RAM) \item{} Secondary Storage: Which are permanent storage devices like Hard Disks, Floppy Disks, CDs, DVDs, flash memory, ZIP drives etc. \item{} Tertiary Storage : Tapes \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Random Access Memory} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} RAM stores data and program instructions temporarily by the operating system and application programs. \item{} It is described as volatile because if the computer’s power supply is terminated, then all information within this type of memory is lost. \begin{myitemize} \item{} RAM Types \begin{myitemize} \item{} Dynamic RAM-{} uses capacitors which have to be refreshed periodically to hold the data, slow. \begin{myitemize} \item{} Synchronous DRAM (SDRAM)-{} timing of the CPU and the timing of the memory activities are synchronized. can access only one block at a time. \item{} Extended data out DRAM (EDO DRAM)-{} can capture the next block of data while the first block is being sent to the CPU for processing, faster than SDRAM. \item{} Burst EDO DRAM (BEDO DRAM)-{} Build on top of EDO DRAM.It reads and sends up to four memory addresses in a small number of clock cycles. \item{} Double data rate SDRAM (DDR SDRAM)-{} Carries out read operations on the rising and falling cycles of a clock pulse. speed is twice of SDRAM \end{myitemize} \item{} Static RAM-{} uses more transistors, faster than DRAM,expensive, used in cache. \end{myitemize} \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Read Only Memory} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} ROMs are non-{}volatile memories.the instructions stored in these memories are called as firmware. \item{} ROM Types \begin{myitemize} \item{} Programmable read-{}only memory (PROM)-{}can be programmed only one time after the manufacturing. \item{} Erasable and programmable read-{}only memory (EPROM)-{} can be erased, modified,and upgraded. \item{} Flash memory-{} a special type of memory that is used in digital cameras, BIOS chips, memory cards for laptops, and video game consoles. It is used more as a type of hard drive than memory. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Cache Memory} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The cache memory is a smaller, faster memory which stores copies of the data from the most frequently used main memory locations. \item{} Cache Levels \begin{myitemize} \item{} L1 Cache-{} located within the CPU \item{} L2 Cache-{} located between the CPU and the main memory (RAM) \item{} L3 Cache-{} can be an externally managed memory that has faster access time than RAM. \end{myitemize} \item{} Cache Types \begin{myitemize} \item{} Prefetch Cache(P-{}Cache)-{} used to store data that has been brought in as a result of a prefetch operation \item{} W-{}Cache -{} acts as a holding station for stored data. \item{} Instruction Cache-{} used to store instructions. \item{} Data Cache-{} stores data \item{} Translation Look aside Buffer (TLB)-{} stores the translated addresses of virtual page address to a valid physical address. \end{myitemize} \item{} Cache Organization-{} describes the organization of lines and the replacement policy \begin{myitemize} \item{} Direct Mapping-{} The (virtual or physical) memory address of the incoming cache line controls which cache location is going to be used.Suffers from thrashing. \item{} Fully Associative-{} based on LRU policy where the LRU line is replaced. \item{} Set Associative-{} uses several direct-{}mapped caches or set. A cache controller decides which set the line will go into. Within the set, a direct-{}mapped scheme is used to allocate a slot in the cache. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Virtual Memory} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Virtual memory is a logical memory that gives an application program the impression that it has a contiguous working memory. \item{} A VM logically extends the capabilities of RAM by allocation a separate portion of the hard disk space called swap space. \item{} \end{myitemize} \subsection{Operating Systems} \label{4} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} An operating system provides an environment for applications and users to work within. \item{} It is responsible for managing the underlying hardware components,memory management, I/O operations, file system, process management, and providing system services \item{} OS Architectures \begin{myitemize} \item{} Monolithic operating system architecture-{} mainly made up of various procedures that can call upon each other in a haphazard manner, provides single layer security only. For example, DOS. \item{} Layered operating system-{} separates system functionality into hierarchical layers,provide data hiding, provides multilayer security. For example, Unix. \begin{myitemize} \item{} Layer 0 controlled access to the processor and provided multiprogramming functionality \item{} Layer 1 carried out memory management \item{} Layer 2 provided interprocess communication \item{} Layer 3 dealt with I/O devices and \item{} Layer 4 was where the applications resided \end{myitemize} \item{} Microkernel Based-{} The OS functions are divided into several different processes that run in user mode, instead of kernel mode.The processes communicate in a C/S model.The server processes are called as subsystems and provide services to user process and other OS processes. For example, Windows 2000. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Process Management} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A process is a program in execution that is loaded and actuated by the OS.It contains a set of the instructions and the assigned resources. \item{} When a process is created, the operating system assigns resources to it, such as a memory segment, CPU time slot (interrupt), access to system application programming interfaces (APIs), and files to interact with. \item{} Process States: A process can run in running state (CPU is executing its instructions and data),ready state (waiting to send instructions to the CPU), or blocked state (waiting for input data, such as keystrokes from a user). \item{} Process Table: A data structure that contains each individual process’s state, stack pointer, memory allocation,program counter, and status of open files in use. \item{} Threads: A thread is a unit of program execution. conversely a process is a single thread of execution.A thread is made up of individual instruction set and the data that needs to be worked on by the CPU.All the threads of a process share the resources of the processes that created them. \item{} Process Scheduling: governs the way different processes communication(or synchronize) between each other in order to overcome deadlock conditions. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Memory Management} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The main objectives of memory management is to \begin{myitemize} \item{} Provide an abstraction level for programmers \item{} Maximize performance with the limited amount of memory available \item{} Protect the operating system and applications loaded into memory \end{myitemize} \item{} The memory manager has five basic responsibilities: \begin{myitemize} \item{} Relocation \begin{myitemize} \item{} Swap contents from RAM to the hard drive as needed \item{} Provide pointers for applications if their instructions and memory segment have been moved to a different location in main memory \end{myitemize} \item{} Protection \begin{myitemize} \item{} Limit processes to interact only with the memory segments that are assigned to them \item{} Provide access control to memory segments \end{myitemize} \item{} Sharing \begin{myitemize} \item{} Use complex controls to ensure integrity and confidentiality when processes need to use the same shared memory segments \item{} Allow many users with different levels of access to interact with the same application running in one memory segment \end{myitemize} \item{} Logical organization \begin{myitemize} \item{} Allow for the sharing of specific software modules, such as dynamic link library (DLL) procedures \end{myitemize} \item{} Physical organization \begin{myitemize} \item{} Segment the physical memory space for application and operating system processes \end{myitemize} \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries I/O Device Management} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} I/O devices are usually considered block or character devices. \item{} A block device works with data in fixed-{}size blocks, each block with its own unique address. For example, disk drive . \item{} A character device, such as a printer, network interface card, or mouse, works with streams of characters, without using any fixed sizes. This type of data is not addressable \item{} There are different ways that operating systems can manage software I/O procedures. \begin{myitemize} \item{} Programmed I/O-{} the CPU sends data to an I/O device and polls the device to see if it is ready to accept more data. If the device is not ready to accept more data, the CPU wastes time by waiting for the device to become ready. very slow \item{} Interrupt-{}driven I/O-{} the CPU sends a character/block over to the device and then goes and works on another process’s request. When the device is done with its job it sends an interrupt to the CPU. The CPU stops what it is doing, sends the next block/character and this continues until the entire job is processes by the device.lot of interrupt handling overhead. \item{} I/O using DMA-{} A DMA controller feeds the characters from the memory to the device without bothering the CPU. This method is sometimes referred to as unmapped I/O. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries OS Protection Mechanisms} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} CPU Modes \begin{myitemize} \item{} CPU modes also called processor modes or CPU privilege levels,are operating modes for the central processing unit of some computer architectures that place restrictions on the operations that can be performed by the process currently running in the CPU. This design allows the operating system to run at different privilege levels like kernel mode, user mode, master mode etc. \end{myitemize} \item{} Protection Rings \begin{myitemize} \item{} Protection Rings are concentric rings that provide strict boundaries and definitions for what the processes that work within each ring can access and what operations they can successfully execute. \item{} The processes that operate within the inner rings have more privileges than the processes operating in the outer rings, because the inner rings only permit the most trusted components and processes to operate within them. \item{} Protection rings support the availability, integrity, and confidentiality requirements of multitasking operating systems. \item{} The most commonly used architecture provides four protection rings: \begin{myitemize} \item{} Ring 0 Operating system kernel \item{} Ring 1 Remaining parts of the operating system \item{} Ring 2 I/O drivers and utilities \item{} Ring 3 Applications and user activity \end{myitemize} \end{myitemize} \item{} Memory Protection \begin{myitemize} \item{} Limit processes to interact only with the memory segments that are assigned to them \item{} Provide access control to memory segments \end{myitemize} \item{} Process Isolation \begin{myitemize} \item{} Ensures that processes do not “step on each other’s toes,\symbol{34} negatively affect each other’s productivity and thus communicate in an insecure manner. \item{} Methods for process isolation: \begin{myitemize} \item{} Encapsulation of objects-{} no other process understands or interacts with the internal programming code of a process. \item{} Time multiplexing of shared resources-{} allows processes to use the same resources on a time sharing basis. \item{} Naming distinctions-{} different processes have their own name or identification value called as PID \item{} Virtual mapping-{} Every process has its own virtual memory address space. \end{myitemize} \end{myitemize} \item{} Domains \begin{myitemize} \item{} A domain is defined as a set of objects that a subject is able to access. \item{} The domain can be all the resources a user can access, all the files available to a program, the memory segments available to a process, or the services and processes available to an application. \item{} A process that resides in a privileged domain needs to be able to execute its instructions and process its data with the assurance that programs in a different domain cannot negatively affect its environment. This is referred to as an execution domain \item{} The higher the level of trust, the larger the number of available resources or objects \end{myitemize} \end{myitemize} \subsection{Firmware} \label{5} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Firmware is a computer program that is embedded in a hardware device \item{} Like software, it is a computer program which is executed by a microprocessor or a microcontroller. But it is also tightly linked to a piece of hardware, and has little meaning outside of it. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries BIOS} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} BIOS refers to the firmware code run by a personal computer when first powered on. \item{} The primary function of the BIOS is to identify and initiate component hardware (such as hard disk, floppy and optical disk drives). This is to prepare the machine so other software programs stored on various media can load, execute, and assume control of the PC.This process is known as booting, or booting up, which is short for bootstrapping. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries ROM image} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A ROM image, or simply ROM, is a computer file which contains a copy of the data from a read-{}only memory chip, often from a video game cartridge, a computer\textquotesingle{}s firmware, or from an arcade game\textquotesingle{}s main board. \item{} The term is frequently used in the context of emulation, whereby older games or computer firmware are copied to ROM files on modern computers and can, using a piece of software known as an emulator, be run on the newer computer. \end{myitemize} \subsection{Virtual Machines} \label{6} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A virtual machine (VM) is a software implementation of a machine (computer) that executes programs like a real machine \item{} An essential characteristic of a virtual machine is that the software running inside is limited to the resources and abstractions provided by the virtual machine -{}-{} it cannot break out of its virtual world \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries VM Categories} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Virtual machines are separated in two major categories, based on their use and degree of correspondence to any real machine. \begin{myitemize} \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape system virtual machine}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} provides a complete system platform which supports the execution of a complete operating system. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape process virtual machine}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} is designed to run a single program, which means that it supports a single process. \end{myitemize} \end{myitemize} \LaTeXNullTemplate{} \label{7}\section{{\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Systems Security Architecture}} \label{8}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The security architecture is one component of a product’s overall architecture and is developed to provide guidance during the design of the product. It outlines the level of assurance that is required and potential impacts that this level of security could have during the development stages and on the product overall.\subsection{Security Design Principles} \label{9} Security is a system requirement just like performance, capability, cost, etc.Therefore, it may be necessary to trade off certain security requirements to gain others. {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Principles of Secure Design} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Design security in from the start \item{} Allow for future security enhancements \item{} Minimize and isolate security controls \item{} Employ least privilege \item{} Structure the security relevant features \item{} Make security friendly \item{} Don’t depend on secrecy for security \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Principles for Software Security} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Secure the weakest link \item{} Practice defense in depth \item{} Fail securely-{} If your software has to fail, make sure it does it securely \item{} Follow the principle of least privilege \item{} Compartmentalize-{} Minimize the amount of damage that can be done by breaking the system into units \item{} Keep it simple-{} Complex design is never easy to understand \item{} Promote privacy-{} Try not to do anything that compromises the privacy of the user \item{} Remember that hiding secrets is hard \item{} Be reluctant to trust-{} Instead of making assumptions that need to hold true, you should be reluctant to extend trust \item{} Use your community resources-{} Public scrutiny promotes trust \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Design Principles for Protection Mechanisms} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Least privilege-{} Should only have the rights necessary to complete your task. \item{} Economy of mechanism-{} Should be sufficiently small and as simple as to be verified and implemented – e.g., security kernel. Complex mechanisms should be correctly Understood, Modeled, Configured, Implemented and Used \item{} Complete mediation-{} Every access to every object must be checked \item{} Open design-{} Let the design be open. {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Security through obscurity}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} is a bad idea \item{} Should be open for scrutiny by the community-{} Better to have a friend/colleague find an error than a foe \item{} Separation of privilege-{} Access to objects should depend on more than one condition being satisfied \item{} Least common mechanism-{} Minimize the amount of mechanism common to more than one user and depended on by all users \item{} Psychological acceptability-{} User interface must be easy to use, so that users routinely and automatically apply the mechanisms correctly. Otherwise, they will be bypassed \item{} Fail-{}safe defaults. Should be lack of access \end{myitemize} \subsection{Trusted Computing Base} \label{10} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A Trusted Computing Base (TCB) is the whole combination of protection mechanisms within a computer system. \item{} The TCB addresses all the security components of the hardware, software, and firmware within the system. \item{} It does not address the level of security that a system provides, but rather the level of trust that a system provides as because no computer system can be totally secure \item{} If the TCB is enabled, then the system has a trusted path, a trusted shell, and system integrity–checking capabilities \begin{myitemize} \item{} A trusted path is a communication channel between the user, or program, and the kernel. The TCB provides protection resources to ensure that this channel cannot be compromised in any way \item{} A trusted shell means that someone who is working in that shell cannot “bust out of it” and other processes cannot “bust into” it. \end{myitemize} \item{} The TCB contains components that directly enforce the security policy (is a set of rules and practices that dictates how sensitive information and resources are managed, protected, and distributed.) \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Basic Functions of a TCB} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Process Activation-{} deals with the activities that have to take place when a process is going to have its instructions and data processed by the CPU. \item{} Execution Domain Switching-{} takes place when a process needs to call upon a process in a higher protection ring. \item{} Memory protection and \item{} I/O operations \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Evaluating the TCB} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Evaluating the trust level of a system includes identifying the architecture, security services, and assurance mechanisms that make up the TCB. \item{} During the evaluation process, the tests must show how the TCB is protected from accidental or intentional tampering and compromising activity. \item{} For systems to achieve a higher trust level rating, they must meet well-{}defined TCB requirements,and the details of their operational states, developing stages, testing procedures, and documentation will be reviewed with more granularity than systems that are attempting to achieve a lower trust rating. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Reference Monitor and Security Kernel} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The reference monitor is an abstract machine that mediates all access subjects have to objects, both to ensure that the subjects have the necessary access rights and to protect the objects from unauthorized access and destructive modification. \item{} The security kernel is made up of hardware, software, and firmware components that fall within the TCB and implements and enforces the reference monitor concept. \item{} The security kernel mediates all access and functions between subjects and objects. The security kernel is the core of the TCB and is the most commonly used approach to building trusted computing systems. There are three main requirements of the security kernel: \begin{myitemize} \item{} It must provide isolation for the processes carrying out the reference monitor concept, and the processes must be tamper-{}proof. \item{} It must be invoked for every access attempt and must be impossible to circumvent. Thus, the security kernel must be implemented in a complete and foolproof way. \item{} It must be small enough to be able to be tested and verified in a complete and comprehensive manner. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Perimeter} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A security perimeter is a boundary that divides the trusted from the untrusted. \item{} For the system to stay in a secure and trusted state, precise communication standards must be developed to ensure that when a component within the TCB needs to communicate with a component outside the TCB, the communication cannot expose the system to unexpected security compromises. This type of communication is handled and controlled through interfaces. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries The Relation} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The reference monitor is a concept in which an abstract machine mediates all access to objects by subjects. \item{} The security kernel is the hardware, firmware, and software of a TCB that implements this concept. \item{} The TCB is the totality of protection mechanisms within a computer system that work together to enforce a security policy. The TCB contains the security kernel and all other security protection mechanisms \end{myitemize} \subsection{Security Modes of Operation} \label{11} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A system can operate in different modes depending on the sensitivity of the data being processed, the clearance level of the users, and what those users are authorized to do. \item{} The mode of operation describes the security conditions under which the system actually functions. \item{} Trust vs Assurance \begin{myitemize} \item{} A trust is a level of confidence or belief that tells the customer how much protection he can expect out of the system. \item{} In a trusted system, all protection mechanisms work together to process sensitive data for many types of uses, and will provide the necessary level of protection per classification level \item{} Assurance is an higher level of confidence that looks at the same issue but in more depth and detail where the system is throughly inspected. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Dedicated Security Mode}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} All users must have… \begin{myitemize} \item{} Proper clearance for all information on the system \item{} Formal access approval for all information on the system \item{} Signed NDA for all information on the system \item{} Valid need to know for all information on the system \end{myitemize} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape All users can access all data.}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries System High-{}Security Mode}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} All users must have… \begin{myitemize} \item{} Proper clearance for all information on the system \item{} Formal access approval for all information on the system \item{} Signed NDA for all information on the system \item{} Valid need to know for some information on the system \end{myitemize} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape All users can access some data, based on their need to know.}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Compartmented Security Mode}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} All users must have… \begin{myitemize} \item{} Proper clearance for the highest level of data classification on the system \item{} Formal access approval for all information they will access on the system \item{} Signed NDA for all information they will access on the system \item{} Valid need to know for some of the information on the system \end{myitemize} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape All users can access some data, based on their need to know and formal access approval.}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Multilevel Security Mode}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} All users must have… \begin{myitemize} \item{} Proper clearance for all information they will access on the system \item{} Formal access approval for all information they will access on the system \item{} Signed NDA for all information they will access on the system \item{} Valid need to know for some of the information on the system \end{myitemize} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape All users can access some data, based on their need to know, clearance, and formal access approval.}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} \LaTeXNullTemplate{} \label{12}\section{{\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Models}} \label{13} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A security policy is a document that expresses clearly and concisely what the protection mechanisms are to achieve. Its a statement of the security we expect the system to enforce. \item{} A security model is a specification of a security policy: \begin{myitemize} \item{} it describes the entities governed by the policy, \item{} it states the rules that constitute the policy. \end{myitemize} \item{} There are various types of security models: \begin{myitemize} \item{} Models can capture policies for confidentiality (Bell-{}LaPadula) or for integrity (Biba, Clark-{}Wilson). \item{} Some models apply to environments with static policies (Bell-{}LaPadula), others consider dynamic changes of access rights (Chinese Wall). \item{} Security models can be informal (Clark-{}Wilson), semi-{}formal, or formal (Bell-{}LaPadula, Harrison-{}Ruzzo-{}Ullman). \end{myitemize} \item{} Model vs Policy \begin{myitemize} \item{} A security model maps the abstract goals of the policy to information system terms by specifying explicit data structures and techniques that are necessary to enforce the security policy. A security model is usually represented in mathematics and analytical ideas, which are then mapped to system specifications, and then developed by programmers through programming code \item{} For Example, if a security policy states that subjects need to be authorized to access objects, the security model would provide the mathematical relationships and formulas explaining how x can access y only through the outlined specific methods \item{} A security policy outlines goals without regard to how they will be accomplished. A model is a framework that gives the policy form and solves security access problems for particular situations. \end{myitemize} \end{myitemize} \subsection{Lattice Models} \label{14} \begin{myitemize} \item{} A lattice is a mathematical construct that is built upon the notion of a group. \item{} A lattice is a mathematical construction with: \begin{myitemize} \item{} a set of elements \item{} a partial ordering relation \item{} the property that any two elements must have unique least upper bound and greatest lower bound \end{myitemize} \item{} A security lattice model combines multilevel and multilateral security \item{} Lattice elements are security labels that consist of a security level and set of categories \end{myitemize} \subsection{State Machine Models} \label{15} \begin{myitemize} \item{} In state machine model, the state of a machine is captured in order to verify the security of a system. \item{} A given state consists of all current permissions and all current instances of subjects accessing the objects. If the subject can access objects only by means that are concurrent with the security policy, the system is secure. \item{} The model is used to describe the behavior of a system to different inputs. It provides mathematical constructs that represents sets (subjects, objects) and sequences. When an object accepts an input , this modifies a state variable thus transiting to a different state. \item{} Implementation tips \begin{myitemize} \item{} The developer must define what and where the state variables are. \item{} The developer must define a secure state for each state variable. \item{} Define and identify the allowable state transition functions. \item{} The state transition function should be tested to verify that the overall m/c state will not compromise and the integrity of the system is maintained. \end{myitemize} \end{myitemize} \subsection{Noninterference Models} \label{16} \begin{myitemize} \item{} The model ensures that any actions that take place at a higher security level do not affect, or interfere with, actions that take place at a lower level. \item{} It is not concerned with the flow of data, but rather with what a subject knows about the state of the system. So if an entity at a higher security level performs an action, it can not change the state for the entity at the lower level. \item{} The model also addresses the inference attack that occurs when some one has access to some type of information and can infer(guess) something that he does not have the clearance level or authority to know. \end{myitemize} \subsection{Bell—LaPadula Confidentiality Model} \label{17} \begin{myitemize} \item{} It was the first mathematical model with a multilevel security policy that is used to define the concept of a secure state machine and models of access and outlined rules of access. \item{} It is a state m/c model that enforces the confidentiality aspects of access model. \item{} The model focuses on ensuring that the subjects with different clearances(top secret, secret, confidential) are properly authenticated by having the necessary security clearance , need to know , and formal access approval-{}before accessing an object that are under different classification levels (top secret, secret, confidential). \item{} The rules of Bell-{}Lapadula model \begin{myitemize} \item{} Simple security rule (no read up rule): It states that a subject at a given security level can not read data that resides at a higher security level. \item{} Star property rule ( no write down rule): It states that a subject in a given security level can not write information to a lower security levels. \end{myitemize} \item{} Strong star property rule: It states a subject that has read and write capabilities can only perform those functions at the same security level , nothing higher and nothing lower. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Tranquility principle}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} : subjects and objects can not change their security levels once they have been instantiated (created). \item{} All MAC systems are based on the Bell – Lapadula model because of it multilevel security. \item{} Designed US govt and mostly adopted by govt agencies \end{myitemize} \subsection{Biba Integrity Model} \label{18} \begin{myitemize} \item{} It is developed after Bell – Lapadula model. \item{} It addresses integrity of data unlike Bell – Lapadula which addresses confidentiality. \item{} It uses a lattice of integrity levels unlike Bell – Lapadula which uses a lattice of security levels. \item{} It is also an information flow model like the Bell – Lapadula because they are most concerned about data flowing from one level to another. \item{} The rules of Biba model \begin{myitemize} \item{} simple integrity rule(no read down) : it states that a subject can not read data from a lower integrity level. \item{} star integrity rule(no write up) : it states that a subject can not write data to an object at a higher integrity level. \item{} invocation property : it states that a subject can not invoke(call upon) a subject at a higher integrity level. \end{myitemize} \end{myitemize} \subsection{Clark—Wilson Integrity Model} \label{19} \begin{myitemize} \item{} It was developed after Biba and addresses the integrity of information. \item{} This model separates data into one subject that needs to be highly protected , referred to as a constrained data item(CDI)and another subset that does not require high level of protection , referred to as unconstrained data items(UDI). \item{} Components \begin{myitemize} \item{} Subjects (users): are active agents. \item{} Transformation procedures (TPs): the s/w procedures such as read, write, modify that perform the required operation on behalf of the subject (user). \item{} Constrained data items (CDI): data that can be modified only by Tp’s. \item{} Unconstrained data items (UDI): data that can be manipulated by subjects via primitive read/write operations. \item{} Integrity verification procedure (IVP): programs that run periodically to check the consistency of CDIs with external reality. These integrity rules are usually defined by vendors. \end{myitemize} \item{} Integrity goals of Clark – Wilson model \begin{myitemize} \item{} Prevent unauthorized users from making modification (addressed by Biba model). \item{} Separation of duties prevents authorized users from making improper modifications. \item{} Well formed transactions: maintain internal and external consistency i.e. it is a series of operations that are carried out to transfer the data from one consistent state to the other. \end{myitemize} \end{myitemize} \subsection{Access Control Matrix} \label{20} \begin{myitemize} \item{} This model addressed in access control. \item{} Commonly used in OS and applications. \end{myitemize} \subsection{Information Flow Models} \label{21} \begin{myitemize} \item{} In this model, data is thought of as being held in individual discrete compartments. \item{} Information is compartmentalized based on two factors. \begin{myitemize} \item{} Classification and \item{} Need to know \end{myitemize} \item{} The subjects clearance has to dominate the objects classification and the subjects security profile must contain the one of the categories listed in the object label, which enforces need to know. \item{} For example: \begin{myitemize} \item{} Bell – Lapadula which prevents information flowing from higher source level to lower source level. \item{} Biba which prevents information flowing from lower integrity level to higher integrity level \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Covert channels} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A covert channel is a way for an entity to receive information in an unauthorized manner. \item{} It is an information flow that is not controlled by a security mechanism. \item{} It is an unauthorized communication path that is not protected by the system because it was uncovered while developing the system. \item{} Types of covert channels \begin{myitemize} \item{} Covert timing: in this channel, one process relays information to another by modulating its use of system resources. \item{} Covert storage: in this channel, one process writes data to a storage location and another process directly, or indirectly reads it. \end{myitemize} \end{myitemize} \subsection{Graham—Denning Model} \label{22} \begin{myitemize} \item{} This model defines a set of basic rights in terms of commands that a specific subject can execute on an object. \item{} It proposes the eight primitive protection rights, or rules of how these types of functionalities should take place securely. \begin{myitemize} \item{} How to securely create an object. \item{} How to securely create a subject. \item{} How to securely delete an object. \item{} How to securely delete a subject. \item{} How to provide read access rights. \item{} How to provide grant access rights. \item{} How to provide delete access rights. \item{} How to provide transfer access rights. \end{myitemize} \end{myitemize} \subsection{Harrison—Ruzzo—Ullman Model} \label{23} \begin{myitemize} \item{} The HRU security model (Harrison, Ruzzo, Ullman model) is an operating system level computer security model which deals with the integrity of access rights in the system. The system is based around the idea of a finite set of procedures being available to edit the access rights of a subject s on an object o. \item{} The model also discussed the possibilities and limitations of proving safety of a system using an algorithm. \end{myitemize} \subsection{Brewer—Nash (Chinese Wall)} \label{24} \begin{myitemize} \item{} This model provides access controls that can change dynamically depending upon a user’s previous actions. \item{} The main goal of this model is to protect against conflicts of interests by user’s access attempts. \item{} It is based on the information flow model, where no information can flow between subjects and objects in a way that would result in a conflict of interest. \item{} The model states that a subject can write to an object if, and only if, the subject can not read another object that is in a different data set. \end{myitemize} \LaTeXNullTemplate{} \label{25}\section{{\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Product Evaluation Methods and Criteria}} \label{26} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A security evaluation examines the security-{}relevant parts of a system, meaning the TCB, access control mechanisms, reference monitor, kernel, and protection mechanisms. The relationship and interaction between these components are also evaluated. \item{} There are different methods of evaluating and assigning assurance levels to systems. Two reasons explain why more than one type of assurance evaluation process exist: \begin{myitemize} \item{} methods and ideologies have evolved over time, and \item{} various parts of the world look at computer security differently and rate some aspects of security differently \end{myitemize} \item{} An evaluation program establishes a trust between the security product vendor and the customer. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Evaluation Standards} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Information Technology Security Evaluation Criteria (ITSEC)-{} EU \item{} Trusted Computing Security Evaluation Criteria (TCSEC) -{}US \item{} Common Criteria-{} Hybrid of ITSEC and TCSEC \end{myitemize} \subsection{Rainbow Series} \label{27} The Rainbow series was a series of books to cover all the areas of security like \begin{myitemize} \item{} Red Books-{} Network Security \item{} Orange Books-{} Operating System Security \item{} Yellow-{} Security Risk Management \item{} Violet-{} Database Security \end{myitemize} \LaTexInfoTemplateOne{Originally only the orange book existed but the other books have evolved to cover all the areas of security and thus the collection is names as Rainbow series} \subsubsection{Orange Book or TCSEC} \label{28} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} TCSEC was developed by US DoD and was published in an Orange book and hence also called as {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Orange Book} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} It mainly addresses the confidentiality, but not integrity and mainly addresses government and military requirements. \item{} It is used to evaluate whether a product contains the security properties the vendor claims it does and whether the product is appropriate for a specific application or function. \item{} It is used to review the functionality, effectiveness,and assurance of a product during its evaluation, and it uses classes that were devised to address typical patterns of security requirements. \item{} TCSEC provides a classification system that is divided into different assurance levels with A representing the highest and D the lowest. \begin{myitemize} \item{} A: Verified protection \item{} B: Mandatory protection: Variants-{} B1<{}B2<{}B3 \item{} C: Discretionary protection: Variants-{}C1<{}C2 \item{} D: Minimal security \end{myitemize} \end{myitemize} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape The levels are concentric.i.e if a product is assured at level B2, that implies it meets D,C1,C2 and B1}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries The Criteria} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Security policy-{} The policy must be explicit and well defined and enforced by the mechanisms within the system. \item{} Identification-{} Individual subjects must be uniquely identified. \item{} Labels Access-{} Control labels must be associated properly with objects. \item{} Documentation-{} Documentation must be provided, including test, design, and specification documents, user guides, and manuals. \item{} Accountability-{} Audit data must be captured and protected to enforce accountability. \item{} Life cycle assurance-{} Software, hardware, and firmware must be able to be tested individually to ensure that each enforces the security policy in an effective manner throughout their lifetimes. \item{} Continuous protection-{} The security mechanisms and the system as a whole must perform predictably and acceptably in different situations continuously. \end{myitemize} \LaTexInfoTemplateOne{Even though the evaluation is done independently based on the above categories, the rating that is assigned at the end is a sum total of these items.} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries The Assurance Levels} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Division D: Minimal Protection-{} It is reserved for systems that have been evaluated but fail to meet the criteria and requirements of the higher divisions. \item{} Division C: Discretionary Protection-{} The C rating category has two individual assurance ratings within it. \begin{myitemize} \item{} C1: Discretionary Security Protection \begin{myitemize} \item{} Based on individuals and/or groups. \item{} It requires a separation of users and information, and identification and authentication of individual entities is provided. \item{} The type of environment that would require this rating is one in which users are processing information at the same sensitivity level; thus, strict access control and auditing measures are not required. \item{} It would be a trusted environment with low security concerns \end{myitemize} \item{} C2: Controlled Access Protection \begin{myitemize} \item{} Users need to be identified individually to provide more precise access control and auditing functionality. \item{} Logical access control mechanisms are used to enforce authentication and the uniqueness of each individual’s identification \item{} The type of environment that would require systems with a C2 rating is one in which users are trusted but a certain level of accountability is required. \item{} Overall, C2 is regarded to be the most reasonable class for commercial applications, but the level of protection is still relatively weak \end{myitemize} \end{myitemize} \item{} Division B: Mandatory Protection-{} Mandatory access control is enforced by the use of security labels. The architecture is based on the Bell-{}LaPadula security model, and evidence of reference monitor enforcement must be available \begin{myitemize} \item{} B1: Labeled Security \begin{myitemize} \item{} Each data object must contain a classification label and each subject must have a clearance label. \item{} When a subject attempts to access an object,the system must compare the subject’s and object’s security labels to ensure that the requested actions are acceptable. \item{} Data leaving the system must also contain an accurate security label. \item{} The security policy is based on an informal statement, and the design specifications are reviewed and verified. \item{} This security rating is intended for environments that require systems to handle classified data. \end{myitemize} \item{} B2: Structured Protection \begin{myitemize} \item{} The security policy is clearly defined and documented,and the system design and implementation are subjected to more thorough review and testing procedures. \item{} This class requires more stringent authentication mechanisms and well-{}defined interfaces among layers. \item{} Subjects and devices require labels, and the system must not allow covert channels. \item{} The type of environment that would require B2 systems is one that processes sensitive data that requires a higher degree of security and are relatively resistant to penetration and compromise. \end{myitemize} \item{} B3: Security Domains \begin{myitemize} \item{} In this class, more granularity is provided in each protection mechanism, and the programming code that is not necessary to support the security policy is excluded. \item{} The reference monitor components must be small enough to test properly and be tamper-{}proof \item{} The system must be able to recover from failures without its security level being compromised. \item{} The type of environment that requires B3 systems is a highly secured environment that processes very sensitive information and are highly resistant to penetration. \end{myitemize} \end{myitemize} \item{} Division A: Verified Protection-{} Formal methods are used to ensure that all subjects and objects are controlled with the necessary discretionary and mandatory access controls. The design, development, implementation, and documentation are looked at in a formal and detailed way \begin{myitemize} \item{} A1: Verified Design \begin{myitemize} \item{} Formal techniques are used to prove the equivalence between the TCB specifications and the security policy model. \item{} More stringent change configuration is put in place with the development of an A1 system, and the overall design can be verified \item{} The type of environment that would require A1 systems is the most secure of secured environments. This type of environment deals with top-{}secret information and cannot adequately trust anyone using the systems without strict authentication, restrictions,and auditing. \end{myitemize} \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries TCSEC Myths} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} It looks specifically at the operating system and not at other issues like networking, databases, and so on. \item{} It focuses mainly on one attribute of security, confidentiality, and not at integrity and availability. \item{} It works with government classifications and not the protection classifications that commercial industries use. \item{} It has a relatively small number of ratings, which means many different aspects of security are not evaluated and rated independently. \end{myitemize} \subsubsection{Red Book or TNI} \label{29} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Red books also called Trusted Network Interpretation (TNI),addresses security evaluation topics for networks and network components. \item{} Like the Orange Book, the Red Book does not supply specific details about how to implement security mechanisms; instead, it provides a framework for securing different types of networks \item{} It rates the confidentiality of data and operations that happen within a network and the network components and products. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Items addresses in the Orange Books} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Communication integrity \begin{myitemize} \item{} Authentication Protects against masquerading and playback attacks. Mechanisms include digital signatures, encryption, timestamp, and passwords. \item{} Message integrity Protects the protocol header, routing information, and packet payload from being modified. Mechanisms include message authentication and encryption. \item{} Non-{}repudiation Ensures that a sender cannot deny sending a message.Mechanisms include encryption, digital signatures, and notarization. \end{myitemize} \item{} Denial-{}of-{}service prevention \begin{myitemize} \item{} Continuity of operations Ensures that the network is available even if attacked. Mechanisms include fault tolerant and redundant systems and the capability to reconfigure network parameters in case of an emergency. \item{} Network management Monitors network performance and identifies attacks and failures. Mechanisms include components that enable network administrators to monitor and restrict resource access. \end{myitemize} \item{} Compromise protection \begin{myitemize} \item{} Data confidentiality Protects data from being accessed in an unauthorized method during transmission. Mechanisms include access controls, encryption,and physical protection of cables. \item{} Traffic flow confidentiality Ensures that unauthorized entities are not aware of routing information or frequency of communication via traffic analysis. Mechanisms include padding messages, sending noise, or sending false messages. \item{} Selective routing Routes messages in a way to avoid specific threats.Mechanisms include network configuration and routing tables. \end{myitemize} \end{myitemize} \subsection{{\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Information Technology Security Evaluation Criteria (ITSEC)}} \label{30}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} As TCSEC was developed by US, ITSEC was developed by the EU to address all the security evaluation issues. \item{} The ITSEC had two main evaluation attributes \begin{myitemize} \item{} Functionality-{} When the functionality of a system’s protection mechanisms is being evaluated, the services that are provided to the subjects like access control mechanisms, auditing, authentication, and so on are examined and measured. \item{} Assurance-{} Assurance, is the degree of confidence in the protection mechanisms,and their effectiveness and capability to perform consistently. Assurance is generally tested by examining development practices, documentation, configuration management, and testing mechanisms. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Evaluation Criteria}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} ITSEC had 10 classes F1 to F10 to evaluate the functional requirements and 7 classes E0 to E6 to evaluate the assurance requirements. \begin{myitemize} \item{} Security functional requirements \begin{myitemize} \item{} F00:Identification and authentication \item{} F01:Audit \item{} F02:Resource utilization \item{} F03:Trusted paths/channels \item{} F04:User data protection \item{} F05:Security management \item{} F06:Product access \item{} F07:Communications \item{} F08:Privacy \item{} F09:Protection of the product’s security functions \item{} F10:Cryptographic support \end{myitemize} \item{} Security assurance requirements \begin{myitemize} \item{} E00:Guidance documents and manuals \item{} E01:Configuration management \item{} E02:Vulnerability assessment \item{} E03:Delivery and operation \item{} E04:Life-{}cycle support \item{} E05:Assurance maintenance \item{} E06:Development \item{} Testing \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries ITSEC Ratings} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The ratings are based on effectiveness and correctness. \begin{myitemize} \item{} Effectiveness means that the TOE meets the security claims that the vendor has specified. This analysis looks at the construction and operational vulnerabilities and the ease of use, to ensure that the proper security settings do not get in the way of productivity.-{} rates functionality \item{} Correctness deals with how the TOE was built and implementation issues. This type of analysis looks at the architectural design, how the security mechanisms enforce the policy, and the operational documentation and environment.-{} rates assurance. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries TCSEC vs ITSEC} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} TCSEC bundles functionality and assurance into one rating, whereas ITSEC evaluates these two attributes separately. \item{} ITSEC provides more flexibility than TCSEC. \item{} ITSEC addresses integrity, availability, and confidentiality whereas TCSEC addresses only confidentiality. \item{} ITSEC also addresses networked systems, whereas TCSEC deals with stand-{}alone systems. \end{myitemize} \subsection{Common Criteria} \label{31} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Overview} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Common criteria was the result of ISO\textquotesingle{}s attempt to gather several organizations to come together to combine and align existing and emerging evaluation criteria like TCSEC, ITSEC, Canadian Trusted Computer Product Evaluation Criteria {$\text{[}$}CTCPEC{$\text{]}$}, and the Federal Criteria. \item{} It was developed through a collaboration among national security standards organizations within the United States, Canada, France, Germany, the United Kingdom, and the Netherlands. \item{} Under the Common Criteria model, an evaluation is carried out on a product and is assigned an Evaluation Assurance Level (EAL) \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Benefits of the CC} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Helps consumers by reducing the complexity of the ratings and eliminating the need to understand the definition and meaning of different ratings within various evaluation schemes. \item{} Helps manufacturers because now they can build to one specific set of requirements if they want to sell their products internationally, instead of having to meet several different ratings with varying rules and requirements. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries CC Assurance Levels} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} The Common Criteria has seven assurance levels which ranges from EAL1(lowest), where functionality testing takes place, through EAL7(highest), where thorough testing is performed and the system design is verified. \begin{myitemize} \item{} EAL 1 Functionally tested \item{} EAL 2 Structurally tested \item{} EAL 3 Methodically tested and checked \item{} EAL 4 Methodically designed, tested, and reviewed \item{} EAL 5 Semi-{}formally designed and tested \item{} EAL 6 Semi-{}formally verified design and tested \item{} EAL 7 Formally verified design and tested \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Protection Profile} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} A protection profile is a mechanism that is used by CC in its evaluation process to describe a real-{}world need of a product that is not currently on the market. \item{} Protection Profile Characteristics \begin{myitemize} \item{} Contains the set of security requirements, their meaning and reasoning, and the corresponding EAL rating that the intended product will require. \item{} Describes the environmental assumptions, the objectives, and the functional and assurance level expectations. Each relevant threat is listed along with how it is to be controlled by specific objectives. \item{} Justifies the assurance level and requirements for the strength of each protection mechanism. \item{} Provides a means for a consumer, or others, to identify specific security needs; this is the security problem that is to be conquered \item{} Provide the necessary goals and protection mechanisms to achieve the necessary level of security and a list of the things that can go wrong during the type of system development. \end{myitemize} \item{} Protection Profile Sections \begin{myitemize} \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Descriptive elements}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Provides the name of the profile and a description of the security problem that is to be solved. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Rationale}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Justifies the profile and gives a more detailed description of the real-{}world problem to be solved. The environment, usage assumptions, and threats are illustrated along with guidance on the security policies that can be supported by products and systems that conform to this profile. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Functional requirements}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Establishes a protection boundary, meaning the threats or compromises that are within this boundary to be countered. The product or system must enforce the boundary established in this section. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Development assurance requirements}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Identifies the specific requirements that the product or system must meet during the development phases, from design to implementation. \item{} {\itshape \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunti.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunti.ttf}\itshape Evaluation assurance requirements}\setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Establishes the type and intensity of the evaluation. \end{myitemize} \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries CC Components} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Protection profile-{} Description of needed security solution. \item{} Target of evaluation-{} Product proposed to provide needed security solution. \item{} Security target-{} Vendor’s written explanation of the security functionality and assurance mechanisms that meet the needed security solution; in other words, “This is what our product does and how it does it.” \item{} Packages—EALs-{} Functional and assurance requirements are bundled into packages for reuse. This component describes what must be met to achieve specific EAL ratings. \end{myitemize} \subsection{Certification and Accreditation} \label{32} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Certification} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Certification is the comprehensive technical evaluation of the security components and their compliance for the purpose of accreditation. \item{} A certification process may use safeguard evaluation, risk analysis, verification, testing, and auditing techniques to assess the appropriateness of a specific system. \item{} The goal of a certification process is to ensure that a system, product, or network is right for the customer’s purposes. \end{myitemize} {\bfseries \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Accreditation} \begin{myitemize} \item{} \setmainfont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunrm.ttf}\setmonofont[Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunrm.ttf} Accreditation is the formal acceptance of the adequacy of a system’s overall security and functionality by management. \item{} Certification is a technical review that assesses the security mechanisms and evaluates their effectiveness. Accreditation is management’s official acceptance of the information in the certification process findings. \end{myitemize} \LaTeXNullTemplate{} \LaTeXNullTemplate{}\chapter{Contributors} \label{Contributors} \begin{longtable}{rp{0.6\linewidth}} \textbf{Edits}&\textbf{User}\\ 1& \myhref{http://en.wikibooks.org/wiki/User:Adrignola}{Adrignola}\\ 5& \myhref{http://en.wikibooks.org/wiki/User:QuiteUnusual}{QuiteUnusual}\\ \end{longtable} \pagebreak \listoffigures \label{ListOfFigures} \begin{itemize} \item GFDL: Gnu Free Documentation License. \url{http://www.gnu.org/licenses/fdl.html} \item cc-by-sa-3.0: Creative Commons Attribution ShareAlike 3.0 License. \url{http://creativecommons.org/licenses/by-sa/3.0/} \item cc-by-sa-2.5: Creative Commons Attribution ShareAlike 2.5 License. \url{http://creativecommons.org/licenses/by-sa/2.5/} \item cc-by-sa-2.0: Creative Commons Attribution ShareAlike 2.0 License. \url{http://creativecommons.org/licenses/by-sa/2.0/} \item cc-by-sa-1.0: Creative Commons Attribution ShareAlike 1.0 License. \url{http://creativecommons.org/licenses/by-sa/1.0/} \item cc-by-2.0: Creative Commons Attribution 2.0 License. \url{http://creativecommons.org/licenses/by/2.0/} \item cc-by-2.0: Creative Commons Attribution 2.0 License. \url{http://creativecommons.org/licenses/by/2.0/deed.en} \item cc-by-2.5: Creative Commons Attribution 2.5 License. \url{http://creativecommons.org/licenses/by/2.5/deed.en} \item cc-by-3.0: Creative Commons Attribution 3.0 License. \url{http://creativecommons.org/licenses/by/3.0/deed.en} \item GPL: GNU General Public License. \url{http://www.gnu.org/licenses/gpl-2.0.txt} \item LGPL: GNU Lesser General Public License. \url{http://www.gnu.org/licenses/lgpl.html} \item PD: This image is in the public domain. \item ATTR: The copyright holder of this file allows anyone to use it for any purpose, provided that the copyright holder is properly attributed. Redistribution, derivative work, commercial use, and all other use is permitted. \item EURO: This is the common (reverse) face of a euro coin. The copyright on the design of the common face of the euro coins belongs to the European Commission. Authorised is reproduction in a format without relief (drawings, paintings, films) provided they are not detrimental to the image of the euro. \item LFK: Lizenz Freie Kunst. \url{http://artlibre.org/licence/lal/de} \item CFR: Copyright free use. \item EPL: Eclipse Public License. \url{http://www.eclipse.org/org/documents/epl-v10.php} \end{itemize} Copies of the GPL, the LGPL as well as a GFDL are included in chapter \mylref{Licenses}{Licenses}. Please note that images in the public domain do not require attribution. You may click on the image numbers in the following table to open the webpage of the images in your webbrower. \pagebreak \small \begin{longtable}{|p{0.05\textwidth}|p{0.6\textwidth}|p{0.15\textwidth}|} \hline \end{longtable} \pagebreak\KOMAoptions{fontsize=9pt,DIV=90,BCOR=0pt} \pagebreak \chapter{Licenses} \label{Licenses} {\tiny \section {GNU GENERAL PUBLIC LICENSE} \begin{multicols}{4} Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. “This License” refers to version 3 of the GNU General Public License. “Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. “The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations. To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work. A “covered work” means either the unmodified Program or a work based on the Program. To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work. A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: * a) The work must carry prominent notices stating that you modified it, and giving a relevant date. * b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”. * c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. * d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: * a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. * b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. * c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. * d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. * e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. “Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. “Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: * a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or * b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or * c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or * d) Limiting the use for publicity purposes of names of licensors or authors of the material; or * e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or * f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”. A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) <year> <name of author> This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: <program> Copyright (C) <year> <name of author> This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”. You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>. The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>. \end{multicols} \section{GNU Free Documentation License} \begin{multicols}{4} Version 1.3, 3 November 2008 Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. 0. PREAMBLE The purpose of this License is to make a manual, textbook, or other functional and useful document "free" in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others. This License is a kind of "copyleft", which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software. We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference. 1. APPLICABILITY AND DEFINITIONS This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The "Document", below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as "you". You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law. A "Modified Version" of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language. A "Secondary Section" is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document's overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them. The "Invariant Sections" are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none. The "Cover Texts" are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words. A "Transparent" copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not "Transparent" is called "Opaque". Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only. The "Title Page" means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, "Title Page" means the text near the most prominent appearance of the work's title, preceding the beginning of the body of the text. The "publisher" means any person or entity that distributes copies of the Document to the public. A section "Entitled XYZ" means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as "Acknowledgements", "Dedications", "Endorsements", or "History".) To "Preserve the Title" of such a section when you modify the Document means that it remains a section "Entitled XYZ" according to this definition. The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License. 2. VERBATIM COPYING You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3. You may also lend copies, under the same conditions stated above, and you may publicly display copies. 3. COPYING IN QUANTITY If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document's license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects. If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages. If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public. It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document. 4. MODIFICATIONS You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version: * A. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission. * B. List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement. * C. State on the Title page the name of the publisher of the Modified Version, as the publisher. * D. Preserve all the copyright notices of the Document. * E. Add an appropriate copyright notice for your modifications adjacent to the other copyright notices. * F. Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below. * G. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document's license notice. * H. Include an unaltered copy of this License. * I. Preserve the section Entitled "History", Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled "History" in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence. * J. Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the "History" section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission. * K. For any section Entitled "Acknowledgements" or "Dedications", Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein. * L. Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles. * M. Delete any section Entitled "Endorsements". Such a section may not be included in the Modified Version. * N. Do not retitle any existing section to be Entitled "Endorsements" or to conflict in title with any Invariant Section. * O. Preserve any Warranty Disclaimers. If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version's license notice. These titles must be distinct from any other section titles. You may add a section Entitled "Endorsements", provided it contains nothing but endorsements of your Modified Version by various parties—for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard. You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one. The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version. 5. COMBINING DOCUMENTS You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers. The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work. In the combination, you must combine any sections Entitled "History" in the various original documents, forming one section Entitled "History"; likewise combine any sections Entitled "Acknowledgements", and any sections Entitled "Dedications". You must delete all sections Entitled "Endorsements". 6. COLLECTIONS OF DOCUMENTS You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects. You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document. 7. AGGREGATION WITH INDEPENDENT WORKS A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an "aggregate" if the copyright resulting from the compilation is not used to limit the legal rights of the compilation's users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document. If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document's Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate. 8. TRANSLATION Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail. If a section in the Document is Entitled "Acknowledgements", "Dedications", or "History", the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title. 9. TERMINATION You may not copy, modify, sublicense, or distribute the Document except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, or distribute it is void, and will automatically terminate your rights under this License. However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, receipt of a copy of some or all of the same material does not give you any rights to use it. 10. FUTURE REVISIONS OF THIS LICENSE The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See http://www.gnu.org/copyleft/. Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License "or any later version" applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. If the Document specifies that a proxy can decide which future versions of this License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Document. 11. RELICENSING "Massive Multiauthor Collaboration Site" (or "MMC Site") means any World Wide Web server that publishes copyrightable works and also provides prominent facilities for anybody to edit those works. A public wiki that anybody can edit is an example of such a server. A "Massive Multiauthor Collaboration" (or "MMC") contained in the site means any set of copyrightable works thus published on the MMC site. "CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 license published by Creative Commons Corporation, a not-for-profit corporation with a principal place of business in San Francisco, California, as well as future copyleft versions of that license published by that same organization. "Incorporate" means to publish or republish a Document, in whole or in part, as part of another Document. An MMC is "eligible for relicensing" if it is licensed under this License, and if all works that were first published under this License somewhere other than this MMC, and subsequently incorporated in whole or in part into the MMC, (1) had no cover texts or invariant sections, and (2) were thus incorporated prior to November 1, 2008. The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, provided the MMC is eligible for relicensing. ADDENDUM: How to use this License for your documents To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page: Copyright (C) YEAR YOUR NAME. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License". If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the "with … Texts." line with this: with the Invariant Sections being LIST THEIR TITLES, with the Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the situation. If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software. \end{multicols} \section{GNU Lesser General Public License} \begin{multicols}{4} GNU LESSER GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/> Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below. 0. Additional Definitions. As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License. “The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below. An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library. A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”. The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version. The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work. 1. Exception to Section 3 of the GNU GPL. You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL. 2. Conveying Modified Versions. If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version: * a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or * b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy. 3. Object Code Incorporating Material from Library Header Files. The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following: * a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License. * b) Accompany the object code with a copy of the GNU GPL and this license document. 4. Combined Works. You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following: * a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License. * b) Accompany the Combined Work with a copy of the GNU GPL and this license document. * c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document. * d) Do one of the following: o 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source. o 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version. * e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.) 5. Combined Libraries. You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following: * a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License. * b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work. 6. Revised Versions of the GNU Lesser General Public License. The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation. If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library. \end{multicols} } \pagebreak \end{document}

headers/options.tex

% Festlegungen für minitoc % \renewcommand{\myminitoc}{\minitoc} % \renewcommand{\mtctitle}{Überblick} % \setcounter{minitocdepth}{1} % \dominitoc % diese Zeile aktiviert das Erstellen der minitocs, sie muss vor \tableofcontents kommen % Seitenformat % ------------ %\KOMAoption{paper}{A5} % zulässig: letter, legal, executive; A-, B-, C-, D-Reihen \KOMAoption{open}{right} % zulässig: right (jedes Kapitel beginnt rechts), left, any \KOMAoption{numbers}{auto} % Satzspiegel jetzt neu berechnen, damit er bei Kopf- und Fußzeilen beachtet wird \KOMAoptions{DIV=13} % Kopf- und Fusszeilen % -------------------- % Breite und Trennlinie %\setheadwidth[-6mm]{textwithmarginpar} %\setheadsepline[textwithmarginpar]{0.4pt} \setheadwidth{text} \setheadsepline[text]{0.4pt} % Variante 1: Kopf: links Kapitel, rechts Abschnitt (ohne Nummer); Fuß: außen die Seitenzahl \ohead{\headmark} \renewcommand{\chaptermark}[1]{\markleft{#1}{}} \renewcommand{\sectionmark}[1]{\markright{#1}{}} \ofoot[\pagemark]{\pagemark} % Variante 2: Kopf außen die Seitenzahl, Fuß nichts %\ohead{\pagemark} %\ofoot{} % Standardschriften % ----------------- %\KOMAoption{fontsize}{18pt} \addtokomafont{disposition}{\rmfamily} \addtokomafont{title}{\rmfamily} \setkomafont{pageheadfoot}{\normalfont\rmfamily\mdseries} % vertikaler Ausgleich % -------------------- % nein -> \raggedbottom % ja -> \flushbottom aber ungeeignet bei Fußnoten %\raggedbottom \flushbottom % Tiefe des Inhaltsverzeichnisses bestimmen % ----------------------------------------- % -1 nur \part{} % 0 bis \chapter{} % 1 bis \section{} % 2 bis \subsection{} usw. \newcommand{\mytocdepth}{1} % mypart - Teile des Buches und Inhaltsverzeichnis % ------------------------------------------------ % Standard: nur im Inhaltsverzeichnis, zusätzlicher Eintrag ohne Seitenzahl % Variante: nur im Inhaltsverzeichnis, zusätzlicher Eintrag mit Seitenzahl %\renewcommand{\mypart}[1]{\addcontentsline{toc}{part}{#1}} % Variante: mit eigener Seite vor dem ersten Kapitel, mit Eintrag und Seitenzahl im Inhaltsverzeichnis \renewcommand{\mypart}[1]{\part{#1}} % maketitle % ----------------------------------------------- % Bestandteile des Innentitels %\title{Einführung in SQL} %\author{Jürgen Thomas} %\subtitle{Datenbanken bearbeiten} \date{} % Bestandteile von Impressum und CR % Bestandteile von Impressum und CR \uppertitleback{ %Detaillierte Daten zu dieser Publikation sind bei Wikibooks zu erhalten:\newline{} \url{http://de.wikibooks.org/} %Diese Publikation ist bei der Deutschen Nationalbibliothek registriert. Detaillierte Daten sind im Internet zu erhalten: \newline{}\url{https://portal.d-nb.de/opac.htm?method=showSearchForm#top} %Diese Publikation ist bei der Deutschen Nationalbibliothek registriert. Detaillierte Daten sind im Internet unter der Katalog-Nr. 1008575860 zu erhalten: \newline{}\url{http://d-nb.info/1008575860} %Namen von Programmen und Produkten sowie sonstige Angaben sind häufig geschützt. Da es auch freie Bezeichnungen gibt, wird das Symbol \textregistered{} nicht verwendet. %Erstellt am \today{} } \lowertitleback{ {\footnotesize On the 28th of April 2012 the contents of the English as well as German Wikibooks and Wikipedia projects were licensed under Creative Commons Attribution-ShareAlike 3.0 Unported license. A URI to this license is given in the list of figures on page \pageref{ListOfFigures}. If this document is a derived work from the contents of one of these projects and the content was still licensed by the project under this license at the time of derivation this document has to be licensed under the same, a similar or a compatible license, as stated in section 4b of the license. The list of contributors is included in chapter Contributors on page \pageref{Contributors}. The licenses GPL, LGPL and GFDL are included in chapter Licenses on page \pageref{Licenses}, since this book and/or parts of it may or may not be licensed under one or more of these licenses, and thus require inclusion of these licenses. The licenses of the figures are given in the list of figures on page \pageref{ListOfFigures}. This PDF was generated by the \LaTeX{} typesetting software. The \LaTeX{} source code is included as an attachment ({\tt source.7z.txt}) in this PDF file. To extract the source from the PDF file, you can use the \texttt{pdfdetach} tool including in the \texttt{poppler} suite, or the \url{http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/} utility. Some PDF viewers may also let you save the attachment to a file. After extracting it from the PDF file you have to rename it to {\tt source.7z}. To uncompress the resulting archive we recommend the use of \url{http://www.7-zip.org/}. The \LaTeX{} source itself was generated by a program written by Dirk Hünniger, which is freely available under an open source license from \url{http://de.wikibooks.org/wiki/Benutzer:Dirk_Huenniger/wb2pdf}. }} \renewcommand{\mysubtitle}[1]{} \renewcommand{\mymaintitle}[1]{} \renewcommand{\myauthor}[1]{} \newenvironment{myshaded}{% \def\FrameCommand{ \hskip-2pt \fboxsep=\FrameSep \colorbox{shadecolor}}% \MakeFramed {\advance\hsize-\width \FrameRestore}}% {\endMakeFramed}

headers/packages1.tex

% Standard für Formatierung %\usepackage[utf8]{inputenc} % use \usepackage[utf8]{inputenc} for tex4ht \usepackage[usenames]{color} \usepackage{textcomp} \usepackage{parskip} \usepackage[normalem]{ulem} \usepackage[unicode=true]{hyperref} \usepackage{tocstyle} \usepackage[defblank]{paralist} \usepackage{trace} % Minitoc %\usepackage{minitoc} % Keystroke \usepackage{keystroke}

headers/packages2.tex

% für Zeichensätze %replacemnt for pslatex \usepackage{mathptmx} \usepackage[scaled=.92]{helvet} \usepackage{courier} \usepackage[T1]{fontenc} % disable this line for tex4ht % für Tabellen \usepackage{multirow} \usepackage{multicol} \usepackage{array,ragged2e} \usepackage{longtable} % für Kopf- und Fußzeilen, Fußnoten \usepackage{scrpage2} \usepackage{footnote} % für Rahmen \usepackage{verbatim} \usepackage{framed} % für Symbole \usepackage{amsmath} \usepackage{amssymb} \usepackage{amsfonts} \usepackage{pifont} \usepackage{marvosym} \let\Cross\undefined \usepackage{fourier-orns} % disable this line for tex4ht % für weitere Logos, z.B. \danger % für Grafik-Einbindung \usepackage[pdftex]{graphicx} \usepackage{wasysym} \let\Square\undefined % unklare Verwendung \usepackage{bbm} \usepackage{skull} %arabtex \usepackage[T1]{tipa} % disable this line for tex4ht \usepackage{fancyvrb} \usepackage{bbding} \usepackage{textcomp} \usepackage[table]{xcolor} %\usepackage{microtype} disabled for xelatex \usepackage{lscape} \usepackage{tocstyle} \usepackage{amsthm}

headers/paper.tex

\KOMAoption{paper}{A4}

headers/svg.tex

\newcommand{\SVGExtension}{png}

headers/templates-chemie.tex

\newcommand{\TemplateEnergieerhaltung}[1]{ \begin{longtable}{|>{\RaggedRight}p{\linewidth}|} \hline {\bfseries Gesetz von der Erhaltung der Energie}\\ \hline {\bfseries Albert Einstein (14.3. 1879 - 18.4.1955)}: Umwandlung von Energie in Masse und von Masse in Energie ist möglich.\\ $E = m \cdot c^2$ (c = Lichtgeschwindigkeit = 300.000 km/s)\\ \hline {\bfseries Bei einer chemischen Reaktion ist die Summe aus Masse und Energie der Ausgangsstoffe gleich der Summe aus Masse und Energie der Endstoffe. }\\\hline Wird Energie frei, tritt ein unwägbar kleiner Massenverlust auf. Wird Energie investiert, tritt Massenzunahme auf. Dieses kann allerdings mit herkömmlichen Waagen nicht gemessen werden. \\ \hline \end{longtable} } \newcommand{\TemplatePeriodensystem}[1]{ Hier sollte das Periodensystem stehen. Ein solches wird sehr wahrscheinlich von Orlando Camargo Rodriguez frei zur Verfügung gestellt werden. Dateiname: tabela_periodica.tex ist bereits online. Lizenz aber noch nicht genau genug definiert. } \newcommand{\TemplateMassenerhaltung}[1]{ \begin{longtable}{|>{\RaggedRight}p{\linewidth}|} \hline {\bfseries Gesetz von der Erhaltung der Masse}\\ \hline {\bfseries Antoine Lavoisier (1743 - 1794)}: Rien ne se perd, rien ne se crée\\ Die Gesamtmasse ändert sich bei chemischen Reaktionen (im Rahmen der Messgenauigkeiten) nicht.\\ \hline Masse der Ausgangsstoffe=Masse der Produkte \\ \hline \end{longtable} } \newcommand{\TemplateDaltonsAtomhyposthese}[1]{ \begin{longtable}{|>{\RaggedRight}p{\linewidth}|} \hline \begin{enumerate} \item Materie besteht aus extrem kleinen, bei Reaktion ungeteilt bleibenden Teilchen, den Atomen. \item Die Masse der Atome eines bestimmten Elements sind gleich (alle Atome eines Elements sind gleich). Die Atome verschiedener Elemente unterscheiden sich in ihren Eigenschaften (zum Beispiel in Größe, Masse, usw.). \item Es existieren so viele Atomsorten wie Elemente. \item Bei chemischen Reaktionen werden Atome in neuer Kombination vereinigt oder voneinander getrennt. \item Eine bestimmte Verbindung wird von den Atomen der betreffenden Elemente in einem bestimmten, einfachen Zahlenverhältnis gebildet. \end{enumerate} \\ \hline \end{longtable} } \newcommand{\TemplateUnveraenderlicheMassenverhaeltnisse}[1]{ \begin{longtable}{|>{\RaggedRight}p{\linewidth}|} \hline {\bfseries Gesetz der unveränderlichen Massenverhältnisse}\\ \hline Louis Proust (1799) \\ \hline Bei chemischen Reaktionen, also Vereinigung beziehungsweise Zersetzung, reagieren die Reinstoffe immer in einem von der Natur vorgegebenen festen Verhältnis miteinander. \\ \hline \end{longtable} }

headers/templates-dirk.tex

\newenvironment{TemplateCodeInside}[6] { \def\leftbox{#5} \def\rightbox{} \def\framecolor{shadecolor} \ifstr{#4}{e}{ \def\framecolor{red} \def\rightbox{Falsch} } {} \ifstr{#4}{v}{ \def\framecolor{mydarkgreen} \def\rightbox{Richtig} } {} \begin{scriptsize} \begin{framed} \ttfamily \ifstr{\leftbox} {} { % Ausgabe nur, wenn rechte Box Inhalt hat, dann links mit Standardtext \ifstr{\rightbox}{}{} { \fbox{Quelltext} \hfill \textbf{\color{\framecolor} \fcolorbox{black}{white}{\rightbox} } } } { \fbox{\leftbox} % und bei Bedarf zusätzlich rechts die zweite Box \ifstr{\rightbox}{}{} { \hfill \textbf{\color{\framecolor} \fcolorbox{black}{white}{\rightbox} } } } \begin{flushleft} } % Ende der begin-Anweisungen, es folgen die end-Anweisungen {\end{flushleft}\end{framed}\end{scriptsize} } \newcommand{\TemplateCode}[9] % ************************************************** { \ifstr{#1}{}{~}{ \minisec{\normalfont \scriptsize \centering \textbf{\textit{#1}} \medskip } } \begin{scriptsize} % Code-Abschnitt mit #4 \begin{TemplateCodeInside} {} {0pt} {0pt} {#3} {#5} {} #6 \end{TemplateCodeInside} % Ausgabetext mit #4 #4 % #2 Fußzeile ausgeben, sofern vorgesehen \ifstr{#2} {} {} { \centering \textit{#2} \medskip \\ } \end{scriptsize} }

headers/templates.tex

\newcommand{\wbtempcolora}{white} \newcommand{\wbtempcolorb}{white} \newcommand{\wbtempcolorc}{white} \newcommand{\wbtemptexta}{} \newcommand{\wbtemptextb}{} \newcommand{\wbtemptextc}{} \newlength{\wbtemplengtha} \setlength{\wbtemplengtha}{0pt} \newlength{\wbtemplengthb} \setlength{\wbtemplengthb}{0pt} \newlength{\wbtemplengthc} \setlength{\wbtemplengthc}{0pt} \newlength{\wbtemplengthd} \setlength{\wbtemplengthd}{0pt} \newlength{\wbtemplengthe} \setlength{\wbtemplengthe}{0pt} \newcount\wbtempcounta \wbtempcounta=0 \newcount\wbtempcountb \wbtempcountb=0 \newcount\wbtempcountc \wbtempcountc=0 \newcommand{\CPPAuthorsTemplate}[4]{ \LaTeXZeroBoxTemplate{ The following people are authors to this book: #3 You can verify who has contributed to this book by examining the history logs at Wikibooks (http://en.wikibooks.org/). Acknowledgment is given for using some contents from other works like #1, as from the authors #2. The above authors release their work under the following license: This work is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license. In short: you are free to share and to make derivatives of this work under the conditions that you appropriately attribute it, and that you only distribute it under the same, similar or a compatible license. Any of the above conditions can be waived if you get permission from the copyright holder. Unless otherwise noted, #4 used in this book have their own copyright, may use different licenses than the one used here, and were not created by the above authors. The authors, contributors, and licenses used should be acknowledged separately.} } \newcommand{\tlTemplate}[1]{{\{\{{\ttfamily #1}\}\}}} \newcommand{\matrixdimTemplate}[1]{ \definecolor{shadecolor}{gray}{0.9} \begin{myshaded} {\bfseries Matrix Dimensions: }\\ A: $p \times p$ \\ B: $p \times q$\\ C: $r \times p$\\ D: $r \times q$\\ \end{myshaded} } \newcommand{\matlabTemplate}[1]{ \definecolor{shadecolor}{gray}{0.9} \begin{myshaded} This operation can be performed using this MATLAB command: {\ttfamily #1} \end{myshaded}} \newcommand{\PrintUnitPage}[3]{\pagebreak \begin{flushleft} {\bfseries \Large #1} \end{flushleft} \begin{longtable}{>{\RaggedRight}p{0.5\linewidth}>{\RaggedRight}p{0.5\linewidth}} & #2 \end{longtable}} \newcommand{\LaTeXCodeTipTemplate}[3]{ \definecolor{shadecolor}{gray}{0.9} \begin{myshaded} #1 \\ #2 \\ #3 \end{myshaded} } \newcommand{\DisassemblySyntax}[1]{ \definecolor{shadecolor}{gray}{0.9} \begin{myshaded} This code example uses #1 Syntax \end{myshaded}} \newcommand{\LaTeXDeutschTemplate}[1]{ {\bfseries deutsch:} #1 } \newcommand{\LaTeXNullTemplate}[1]{} \newcommand{\LatexSymbol}[1]{\LaTeX} \newcommand{\LaTeXDoubleBoxTemplate}[2]{ \begin{minipage}{\linewidth}\definecolor{shadecolor}{gray}{0.9}\begin{myshaded}{\bfseries #1} \\ #2 \end{myshaded} \end{minipage} } \newcommand{\LaTeXSimpleBoxTemplate}[2]{ {\bfseries #1} \\ #2 } \newcommand{\SolutionBoxTemplate}[2]{ #2 } \newcommand{\LaTeXDoubleBoxOpenTemplate}[2]{ \definecolor{shadecolor}{gray}{0.9}\begin{myshaded}{\bfseries #1} \\ #2 \end{myshaded} } \newcommand{\LaTeXLatinExcerciseTemplate}[3]{ \definecolor{shadecolor}{gray}{0.9}\begin{myshaded}{\bfseries Excercise: #1} \\ #2 \\ {\bfseries Solution} #3 \end{myshaded} } \newcommand{\LaTeXShadedColorBoxTemplate}[2]{ {\linewidth}#1\begin{myshaded} #2 \end{myshaded} } \newcommand{\PGP}[1]{PGP:#1} \newcommand{\DETAILS}[1]{For more details on this topic, see #1} \newcommand{\ADAFile}[1]{\LaTeXZeroBoxTemplate{File: #1}} \newcommand{\ADASample}[1]{\LaTeXZeroBoxTemplate{This code sample is also available in #1}} \newcommand{\LaTeXZeroBoxTemplate}[1]{ \begin{minipage}{\linewidth}\definecolor{shadecolor}{gray}{0.9}\begin{myshaded} #1 \end{myshaded} \end{minipage} } \newcommand{\LaTeXZeroBoxOpenTemplate}[1]{ \definecolor{shadecolor}{gray}{0.9}\begin{myshaded} #1 \end{myshaded} } \newcommand{\PDFLink}[1]{ \textbf{PDF} #1 } \newcommand{\Lysippos}[1]{Lysippos} \newcommand{\SonnensystemFakten}[3]{ #1 \\ \definecolor{shadecolor}{gray}{0.9}\begin{myshaded}{\bfseries #2} \\ #3 \\ \end{myshaded} } \newcommand{\VorlageReferenzenEintrag}[3]{ \begin{longtable}{p{0.2\linewidth}p{0.8\linewidth}} {[\bfseries #1]} & {\itshape #2} #3 \\ \end{longtable} } \newcommand{\MBOX}[2]{\definecolor{shadecolor}{gray}{0.9} \begin{myshaded} \begin{longtable}{p{0.2\linewidth}p{0.7\linewidth}} #1 & #2 \\ \end{longtable} \end{myshaded}} \newcommand{\LaTeXIdentityTemplate}[1]{#1 } \newcommand{\AdaRM}[3]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1-#2.html}{#1.#2 #3}} \newcommand{\AdaEightThreeRM}[2]{\myfnhref{http://archive.adaic.com/standards/83lrm/html/lrm-#1.html}{Annex #1: #2}} \newcommand{\AdaRMThree}[4]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1-#2-#3.html}{#1.#2.#3 #4}} \newcommand{\AdaRMAThree}[4]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1-#2-#3.html}{Annex #1.#2.#3 #4}} \newcommand{\AdaRMATwo}[3]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1-#2.html}{Annex #1.#2 #3}} \newcommand{\AdaNiveFiveRMThree}[4]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95lrm/ARM_HTML/RM-#1-#2-#3.html}{#1.#2.#3 #4}} \newcommand{\AdaSGThree}[4]{\myfnhref{http://www.adaic.org/resources/add_content/docs/95style/html/sec_#1/#1-#2-#3.html}{#1.#2.#3 #4}} \newcommand{\AdaSGTwo}[3]{\myfnhref{http://www.adaic.org/resources/add_content/docs/95style/html/sec_#1/#1-#2.html}{#1.#2 #3}} \newcommand{\AdaSGOne}[2]{\myfnhref{http://www.adaic.org/resources/add_content/docs/95style/html/sec_#1/}{Chapter #1: #2}} \newcommand{\AdaRMNineFive}[3]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95lrm/ARM_HTML/RM-#1-#2.html}{#1.#2 #3}} \newcommand{\AdaRMCiteFive}[7]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1-#2-#3.html}{ISO/IEC 8652:2007. #1.#2.#3 #4 (#5). Ada 2005 Reference Manual. #7 }} \newcommand{\AdaTwentyZeroFive}[1]{{\itshape This language feature is only available in Ada 2005}} \newcommand{\ADANFAI}[2]{\myfnhref{http://www.ada-auth.org/cgi-bin/cvsweb.cgi/AIs/AI-00#1.TXT}{AI95-00#1-01 #2}} \newcommand{\ADARMAONE}[2]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1.html}{Annex #1 #2}} \newcommand{\ADARMONE}[2]{\myfnhref{http://www.adaic.org/resources/add_content/standards/05rm/html/RM-#1.html}{Section #1: #2}} \newcommand{\ADANiveFiveRMONE}[2]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95lrm/ARM_HTML/RM-#1.html}{Section #1: #2}} \newcommand{\AdaNiveFiveRMAThree}[4]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95lrm/ARM_HTML/RM-#1-#2-#3.html}{Annex #1.#2-#3 #4}} \newcommand{\AdaNiveFiveRMATwo}[4]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95lrm/ARM_HTML/RM-#1-#2.html}{Annex #1.#2 #3}} \newcommand{\AdaNiveFiveR}[3]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95rat/rat95html/rat95-p#3-#1.html}{#1 #2}} \newcommand{\AdaNiveFiveRTwo}[4]{\myfnhref{http://www.adaic.org/resources/add_content/standards/95rat/rat95html/rat95-p#4-#1.html}{#1.#2 #3}} \newcommand{\AdaPragma}[1]{\LaTeXTTBF{pragma} } \newcommand{\TychoBrahe}[1]{Tycho Brahe} \newcommand{\LaTeXPlainBoxTemplate}[1]{ \begin{minipage}{\linewidth}\definecolor{shadecolor}{gray}{0.9}\begin{myshaded} #1 \end{myshaded} \end{minipage} } \newcommand{\Hinweis}[1]{ \begin{TemplateInfo}{{\Huge \textcircled{\LARGE !}}}{Hinweis} #1 \end{TemplateInfo}} \newcommand{\LaTexInfoTemplateOne}[1]{ \begin{TemplateInfo}{\Info}{Information} #1 \end{TemplateInfo}} \newcommand{\EqnTemplate}[1]{ \begin{flushright} \textbf{[#1]} \end{flushright}} \newcommand{\RefTemplate}[1]{[#1]} \newcommand{\LaTeXGCCTakeTemplate}[1]{ \LaTeXDoubleBoxTemplate{Take home:}{#1} } \newcommand{\LaTeXEditorNote}[1]{\LaTeXDoubleBoxTemplate{Editor's note}{#1}} \newcommand{\BNPForVersion}[1]{ \LaTeXInfoTemplateOne{Applicable Blender version: #1} } \newcommand{\LaTeXInfoTemplateOne}[1]{ \begin{TemplateInfo}{\Info}{Information} #1 \end{TemplateInfo} } \newcommand{\LaTexHelpFulHintTemplate}[1]{ \LaTeXDoubleBoxTemplate{Helpful Hint:}{#1} } \newcommand{\MyLaTeXTemplate}[3]{ \LaTeXDoubleBoxTemplate{MyLaTeXTemplate1:}{#1 \\ #2 \\ #3} } \newcommand{\TemplatePreformat}[1]{ \par \begin{scriptsize} %\setlength{\baselineskip}{0.9\baselineskip} \ttfamily #1 \par \end{scriptsize} } \newcommand{\TemplateSpaceIndent}[1]{ \begin{scriptsize} \begin{framed} \ttfamily #1 \end{framed} \end{scriptsize} } \newcommand{\GenericColorBox}[2] { \newline \begin{tabular}[t]{p{0.6cm}p{4cm}} #1&#2\\ \end{tabular} } \newcommand{\legendNamedColorBox}[2] { \GenericColorBox{ \parbox[t]{0.5\linewidth}{ \textsuperscript{ \fcolorbox{black}{#1}{ \Huge{\,\,} } } } }{ #2 } } \newcommand{\legendColorBox}[2] { \GenericColorBox{ \definecolor{tempColor}{rgb}{#1} \parbox[t]{0.5\linewidth}{ \textsuperscript{ \fcolorbox{black}{tempColor}{ \Huge{\,\,} } } } }{ #2 } } %\newcommand{\ubung} {{\LARGE $\triangleright$}} \newcommand{\ubung}{\ding{228} \textbf{Aufgabe:}\,} \newcommand{\TemplateSource}[1] { %\begin{TemplateCodeInside}{}{\baselineskip}{\baselineskip}{}{}{true} \begin{scriptsize} \begin{myshaded}\ttfamily #1 \end{myshaded} \end{scriptsize} %\end{TemplateCodeInside} } \newenvironment{TemplateInfo}[2] % no more parameters %**************************************************** % Template Info % Kasten mit Logo, Titelzeile, Text % kann für folgende Wiki-Vorlagen benutzt werden: % Vorlage:merke, Vorlage:Achtung u.ä. % % #1 Logo (optional) default: \Info % #2 Titel (optional) default: Information; könnte theoretisch auch leer sein, % das ist aber wegen des Logos nicht sinnvoll %**************************************************** { % Definition des Kastens mit Standardwerten % u.U. ist linewidth=1pt erorderlich \begin{framed} % linksbündig ist besser, weil es in der Regel wenige Zeilen sind, die teilweise kurz sind \begin{flushleft} % Überschrift größer darstellen \begin{Large} % #1 wird als Logo verwendet, Vorgabe ist \Info aus marvosym % für andere Logos muss ggf. das Package eingebunden werden % das Logo kann auch mit einer Größe verbunden werden, z.B. \LARGE\danger als #1 {#1 } \ % #2 wird als Titelzeile verwendet, Vorgabe ist 'Information' {\bfseries #2} \medskip \end{Large} \\ } % Ende der begin-Anweisungen, es folgenden die end-Anweisungen { \end{flushleft}\end{framed} } \newcommand{\TemplateHeaderExercise}[3] % no more parameters %**************************************************** % Template Header Exercise % Rahmen als minisec mit Nummer der Aufgabe und Titel und grauem Hintergrund % ist gedacht für folgende Wiki-Vorlage: % Vorlage:Übung4 % kann genauso für den Aufgaben-Teil folgender Vorlagen verwendet werden: % Vorlage:Übung (wird zz. nur einmal benutzt) % Vorlage:Übung2 (wird zz. gar nicht benutzt) % Vorlage:Übung3 (wird zz. in 2 Büchern häufig benutzt) % C++-Programmierung/ Vorlage:Aufgabe (wird zz. nur selten benutzt, % ist in LatexRenderer.hs schon erledigt) % % #1 Text (optional) 'Aufgabe' oder 'Übung', kann auch leer sein % #2 Nummer (Pflicht) könnte theoretisch auch leer sein, aber dann sieht die Zeile % seltsam aus; oder die if-Abfragen wären unnötig komplex % #3 Titel (optional) Inhaltsangabe der Aufgabe, kann auch leer sein %**************************************************** { \minisec{\normalfont \fcolorbox{black}{shadecolor}{\large \, #1 #2 \ifx{#3}{}{}\else{-- #3}\fi \,} \medskip } } \newcommand{\TemplateHeaderSolution}[3] % no more parameters %**************************************************** % Template Header Solution % Rahmen als minisec mit Nummer der Aufgabe und Titel und grauem Hintergrund % % ist gedacht für den Lösungen-Teil der Vorlagen und wird genauso % verwendet wie \TemplateHeaderExercise %**************************************************** { \minisec{\normalfont \fcolorbox{black}{shadecolor}{\large \, Lösung zu #1 #2 \ifx{#3}{}{}\else{-- #3}\fi \,} \medskip } } \newcommand{\TemplateUbungDrei}[4] { \TemplateHeaderExercise{Übung}{#1}{#2} #3 \TemplateHeaderSolution{Übung}{#1}{#2} #4 } \newcommand{\Mywrapfigure}[2] { \begin{wrapfigure}{r}{#1\textwidth} \begin{center} #2 \end{center} \end{wrapfigure} } \newcommand{\Mymakebox}[2] { \begin{minipage}{#1\textwidth} #2 \end{minipage} } \newcommand{\MyBlau}[1]{ \textcolor{darkblue}{#1} } \newcommand{\MyRot}[1]{ \textcolor{red}{#1} } \newcommand{\MyGrun}[1]{ \textcolor{mydarkgreen}{#1} } \newcommand{\MyBg}[2]{ \fcolorbox{#1}{#1}{#2} } \newcommand{\BNPModule}[1]{ the "#1" module } \newcommand{\LaTeXMerkeZweiTemplate}[1]{\LaTeXDoubleBoxTemplate{Merke}{#1}} \newcommand{\LaTeXDefinitionTemplate}[1]{\LaTeXDoubleBoxTemplate{Definition}{#1}} \newcommand{\LaTeXAnorganischeChemieFuerSchuelerVorlageMerksatzTemplate}[1]{\LaTeXDoubleBoxTemplate{Merksatz}{#1}} \newcommand{\LaTeXTextTemplate}[1]{\LaTeXDoubleBoxTemplate{}{#1}} \newcommand{\LaTeXExampleTemplate}[1]{\LaTeXDoubleBoxTemplate{Example:}{#1}} \newcommand{\LaTeXexampleTemplate}[1]{\LaTeXDoubleBoxTemplate{Example:}{#1}} \newcommand{\LaTeXPTPBoxTemplate}[1]{\LaTeXDoubleBoxTemplate{Points to ponder:}{#1}} \newcommand{\LaTeXNOTETemplate}[2]{\LaTeXDoubleBoxTemplate{Note:}{#1 #2}} \newcommand{\LaTeXNotizTemplate}[1]{\LaTeXDoubleBoxTemplate{Notiz:}{#1}} \newcommand{\LaTeXbodynoteTemplate}[1]{\LaTeXDoubleBoxTemplate{Note:}{#1}} \newcommand{\LaTeXecebcite}[1]{\textsuperscript{[#1]}} \newcommand{\LaTeXAPDIPpreface}[1]{ Roberto R. Romulo \newline Chairman (2000-2002) \newline e-ASEAN Task Force \newline Manila, Philippines \newline $\text{ }$\newline Shahid Akhtar \newline Program Coordinator\newline UNDP-APDIP \newline Kuala Lumpur, Malaysia\newline http://www.apdip.net\newline} \newcommand{\LaTeXcquoteTemplate}[1]{\LaTeXDoubleBoxTemplate{Quote:}{#1}} \newcommand{\LaTeXCquoteTemplate}[1]{\LaTeXDoubleBoxTemplate{Quote:}{#1}} \newcommand{\LaTeXSideNoteTemplate}[1]{\LaTeXDoubleBoxTemplate{Note:}{#1}} \newcommand{\LaTeXsideNoteTemplate}[1]{\LaTeXDoubleBoxTemplate{Note:}{#1}} \newcommand{\LaTeXExercisesTemplate}[1]{\LaTeXDoubleBoxTemplate{Exercises:}{#1}} \newcommand{\LaTeXCppProgrammierungVorlageTippTemplate}[1]{\LaTeXDoubleBoxTemplate{Tip}{#1}} \newcommand{\LaTeXTipTemplate}[1]{\LaTeXDoubleBoxTemplate{Tip}{#1}} \newcommand{\LaTeXUnknownTemplate}[1]{unknown} \newcommand{\LaTeXCppProgrammierungVorlageHinweisTemplate}[1]{\LaTeXDoubleBoxTemplate{Hinweis}{#1}} \newcommand{\LaTeXCppProgrammierungVorlageSpaeterImBuchTemplate}[1]{\LaTeXDoubleBoxTemplate{Thema wird später näher erläutert...}{#1}} \newcommand{\SGreen}[1]{This page uses material from Dr. Sheldon Green's Hypertext Help with LaTeX.} \newcommand{\ARoberts}[1]{This page uses material from Andy Roberts' Getting to grips with LaTeX with permission from the author.} \newcommand{\LaTeXCppProgrammierungVorlageAnderesBuchTemplate}[1]{\LaTeXDoubleBoxTemplate{Buchempfehlung}{#1}} \newcommand{\LaTeXCppProgrammierungVorlageNichtNaeherBeschriebenTemplate}[1]{\LaTeXDoubleBoxTemplate{Nicht Thema dieses Buches...}{#1}} \newcommand{\LaTeXPythonUnterLinuxVorlagenVorlageDetailsTemplate}[1]{\LaTeXDoubleBoxTemplate{Details}{#1}} \newcommand{\LaTeXChapterTemplate}[1]{\chapter{#1} \myminitoc } \newcommand{\Sample}[2]{ \begin{longtable}{|p{\linewidth}|} \hline #1 \\ \hline #2 \\ \hline \end{longtable} } \newcommand{\Syntax}[1]{ \LaTeXDoubleBoxTemplate{Syntax}{#1}} \newcommand{\LaTeXTT}[1]{{\ttfamily #1}} \newcommand{\LaTeXBF}[1]{{\bfseries #1}} \newcommand{\ADAPK}[3]{{#1.#2}} \newcommand{\LaTeXTTBF}[1]{{\bfseries \ttfamily #1}} \newcommand{\LaTeXIT}[1]{{\itshape #1}} \newcommand{\ADACOM}[1]{{\itshape -{}-#1}} \newcommand{\LaTeXCenter}[1]{ \begin{center} #1 \end{center}} \newcommand{\BNPManual}[2]{The Blender Manual page on #1 at \url{http://wiki.blender.org/index.php/Doc:Manual/#1}} \newcommand{\BNPWeb}[2]{#1 at \url{#2}} \newcommand{\Noframecenter}[2]{ \begin{tablular}{p{\linewidth}} #2\\ #1 \end{tabluar} } \newcommand{\LaTeXTTUlineTemplate}[1]{{\ttfamily \uline{#1}} } \newcommand{\PythonUnterLinuxDenulltails}[1]{ \begin{tabular}{|p{\linewidth}|}\hline \textbf{Denulltails} \\ \hline #1 \\ \hline \end{tabular}} \newcommand{\GNURTip}[1]{ \begin{longtable}{|p{\linewidth}|}\hline \textbf{Tip} \\ \hline #1 \\ \hline \end{longtable}} \newcommand{\PerlUebung}[1]{ \begin{longtable}{|p{\linewidth}|}\hline #1 \\ \hline \end{longtable}} \newcommand{\PerlNotiz}[1]{ \begin{table}{|p{\linewidth}|}\hline #1 \\ \hline \end{table}} \newcommand{\ACFSZusatz}[1]{\textbf{ Zusatzinformation }} \newcommand{\ACFSVorlageB}[1]{\textbf{ Beobachtung }} \newcommand{\ACFSVorlageV}[1]{\textbf{ Versuchsbeschreibung }} \newcommand{\TemplateHeaderSolutionUebung}[2]{\TemplateHeaderSolution{Übung}{#1}{#2}} \newcommand{\TemplateHeaderExerciseUebung}[2]{\TemplateHeaderExercise{Übung}{#1}{#2}} \newcommand{\ChemTemplate}[9]{\texttt{ #1#2#3#4#5#6#7#8#9}} \newcommand{\WaningTemplate}[1]{ \begin{TemplateInfo}{\danger}{Warning} #1 \end{TemplateInfo}} \newcommand{\WarnungTemplate}[1]{ \begin{TemplateInfo}{\danger}{Warnung} #1 \end{TemplateInfo}} \newcommand{\BlenderAlignedToViewIssue}[1]{ \begin{TemplateInfo}{\danger}{Blender3d Aligned to view issue} This tutorial relies on objects being created so that they are aligned to the view that you’re looking through. Versions 2.48 and above have changed the way this works. Visit Aligned (\url{http://en.wikibooks.org/wiki/Blender_3D:_Noob_to_Pro/Aligned_to_view_issue}) to view issue to understand the settings that need to be changed. \end{TemplateInfo}} \newcommand{\BlenderVersion}[1]{ {\itshape Diese Seite bezieht sich auf }{\bfseries \quad Blender Version #1}} \newcommand{\Literal}[1]{{\itshape #1}} \newcommand{\JavaIllustration}[3]{ \begin{tablular} {Figure #1: #2} \\ #3 \end{ltablular} } \newcommand{\Ja}[1]{\Checkmark {\bfseries Ja}} \newcommand{\Nein}[1]{\XSolidBrush {\bfseries Nein}} \newcommand{\SVGVersions}[8]{ {\scriptsize \begin{tabular}{|p{0.45\linewidth}|p{0.13\linewidth}|}\hline Squiggle (Batik) & #1 \\ \hline Opera (Presto) & #2 \\ \hline Firefox (Gecko; auch SeaMonkey, Iceape, Iceweasel etc) & #3 \\ \hline Konqueror (KSVG) & #4 \\ \hline Safari (Webkit) & #5 \\ \hline Chrome (Webkit) & #6 \\ \hline Microsoft Internet Explorer (Trident) & #7 \\ \hline librsvg & #8 \\\hline \end{tabular}} } \theoremstyle{plain} \newtheorem{satz}{Satz} \newtheorem{beweis}{Beweis} \newtheorem{beispiel}{Beispiel} \theoremstyle{definition} \newtheorem{mydef}{Definition} \newcommand{\NFSatz}[2]{\begin{satz}#1\end{satz}#2} \newcommand{\NFDef}[2]{\begin{mydef}#1\end{mydef}#2} \newcommand{\NFBeweis}[2]{\begin{beweis}#1\end{beweis}#2} \newcommand{\NFBeispiel}[2]{\begin{beweis}#1\end{beweis}#2} \newcommand{\NFFrage}[3]{ \definecolor{shadecolor}{gray}{0.9}\begin{myshaded}{\itshape \uline{#1}: #2} \\ #3 \end{myshaded} } \newcommand{\NFFrageB}[2]{ \definecolor{shadecolor}{gray}{0.9}\begin{myshaded}{\itshape \uline{Frage}: #1} \\ #2 \end{myshaded} } \newcommand{\NFVertiefung}[1]{ {\bfseries Vertiefung:} \\ Der Inhalt des folgenden Abschnitts ist eine Vertiefung des Stoffes. Für die nächsten Kapitel ist es nicht notwendig, dass du dieses Kapitel gelesen hast. }

headers/title.tex

\publishers{en.wikibooks.org} \title{Security Architecture and Design}

headers/unicodes.tex

\newcommand{\R}{\ensuremath{\mathbb{R}}} \newcommand{\N}{\ensuremath{\mathbb{N}}} \newcommand{\Z}{\ensuremath{\mathbb{Z}}} \newcommand{\Q}{\ensuremath{\mathbb{Q}}} \renewcommand{\C}{\ensuremath{\mathbb{C}}}

main/main.out

\BOOKMARK [1][]{section.0.1}{\376\377\0000\000.\0001\000\040\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000r\000m\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000i\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000i\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000b\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000i\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000x\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000C\000o\000m\000p\000u\000t\000e\000r\000\040\000S\000y\000s\000t\000e\000m\000s\000\040\000A\000r\000c\000h\000i\000t\000e\000c\000t\000u\000r\000e}{}% 1 \BOOKMARK [1][]{section.0.2}{\376\377\0000\000.\0002\000\040\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000r\000m\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000i\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000i\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000b\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000i\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000x\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000S\000y\000s\000t\000e\000m\000s\000\040\000S\000e\000c\000u\000r\000i\000t\000y\000\040\000A\000r\000c\000h\000i\000t\000e\000c\000t\000u\000r\000e}{}% 2 \BOOKMARK [1][]{section.0.3}{\376\377\0000\000.\0003\000\040\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000r\000m\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000i\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000i\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000b\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000i\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000x\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000S\000e\000c\000u\000r\000i\000t\000y\000\040\000M\000o\000d\000e\000l\000s}{}% 3 \BOOKMARK [1][]{section.0.4}{\376\377\0000\000.\0004\000\040\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000r\000m\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000i\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000b\000i\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000[\000P\000a\000t\000h\000=\000/\000u\000s\000r\000/\000s\000h\000a\000r\000e\000/\000f\000o\000n\000t\000s\000/\000t\000r\000u\000e\000t\000y\000p\000e\000/\000c\000m\000u\000/\000,\000U\000p\000r\000i\000g\000h\000t\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000b\000.\000t\000t\000f\000,\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000i\000t\000.\000t\000t\000f\000,\000B\000o\000l\000d\000I\000t\000a\000l\000i\000c\000F\000o\000n\000t\000=\000c\000m\000u\000n\000t\000x\000.\000t\000t\000f\000]\000c\000m\000u\000n\000b\000x\000.\000t\000t\000f\000S\000e\000c\000u\000r\000i\000t\000y\000\040\000P\000r\000o\000d\000u\000c\000t\000\040\000E\000v\000a\000l\000u\000a\000t\000i\000o\000n\000\040\000M\000e\000t\000h\000o\000d\000s\000\040\000a\000n\000d\000\040\000C\000r\000i\000t\000e\000r\000i\000a}{}% 4 \BOOKMARK [0][]{chapter.1}{\376\377\0001\000\040\000C\000o\000n\000t\000r\000i\000b\000u\000t\000o\000r\000s}{}% 5 \BOOKMARK [0][]{chapter*.4}{\376\377\000L\000i\000s\000t\000\040\000o\000f\000\040\000F\000i\000g\000u\000r\000e\000s}{}% 6 \BOOKMARK [0][]{chapter.2}{\376\377\0002\000\040\000L\000i\000c\000e\000n\000s\000e\000s}{}% 7 \BOOKMARK [1][]{section.2.1}{\376\377\0002\000.\0001\000\040\000G\000N\000U\000\040\000G\000E\000N\000E\000R\000A\000L\000\040\000P\000U\000B\000L\000I\000C\000\040\000L\000I\000C\000E\000N\000S\000E}{chapter.2}% 8 \BOOKMARK [1][]{section.2.2}{\376\377\0002\000.\0002\000\040\000G\000N\000U\000\040\000F\000r\000e\000e\000\040\000D\000o\000c\000u\000m\000e\000n\000t\000a\000t\000i\000o\000n\000\040\000L\000i\000c\000e\000n\000s\000e}{chapter.2}% 9 \BOOKMARK [1][]{section.2.3}{\376\377\0002\000.\0003\000\040\000G\000N\000U\000\040\000L\000e\000s\000s\000e\000r\000\040\000G\000e\000n\000e\000r\000a\000l\000\040\000P\000u\000b\000l\000i\000c\000\040\000L\000i\000c\000e\000n\000s\000e}{chapter.2}% 10

main/main.aux

\relax \providecommand\hyper@newdestlabel[2]{} \providecommand\HyperFirstAtBeginDocument{\AtBeginDocument} \HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined \global\let\oldcontentsline\contentsline \gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} \global\let\oldnewlabel\newlabel \gdef\newlabel#1#2{\newlabelxx{#1}#2} \gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} \AtEndDocument{\ifx\hyper@anchor\@undefined \let\contentsline\oldcontentsline \let\newlabel\oldnewlabel \fi} \fi} \global\let\hyper@last\relax \gdef\HyperFirstAtBeginDocument#1{#1} \providecommand*\HyPL@Entry[1]{} \HyPL@Entry{0<</S/R>>} \select@language{english} \@writefile{toc}{\select@language{english}} \@writefile{lof}{\select@language{english}} \@writefile{lot}{\select@language{english}} \HyPL@Entry{2<</S/D>>} \tocstyle@set@width {unum}{toc}{}{19.46909pt} \tocstyle@set@width {num}{toc}{1}{19.46909pt} \tocstyle@set@width {skip}{toc}{1}{11.77124pt} \tocstyle@set@width {num}{toc}{0}{11.77124pt} \tocstyle@set@width {skip}{toc}{0}{0.0pt} \newlabel{0}{{}{1}{}{chapter*.1}{}} \@writefile{toc}{\contentsline {section}{\numberline {0.1}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Computer Systems Architecture}{1}{section.0.1}} \newlabel{1}{{0.1}{1}{\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Computer Systems Architecture}{section.0.1}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.1}Central Processing Unit (CPU)}{1}{subsection.0.1.1}} \newlabel{2}{{0.1.1}{1}{Central Processing Unit (CPU)}{subsection.0.1.1}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.2}Storage}{2}{subsection.0.1.2}} \newlabel{3}{{0.1.2}{2}{Storage}{subsection.0.1.2}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.3}Operating Systems}{4}{subsection.0.1.3}} \newlabel{4}{{0.1.3}{4}{Operating Systems}{subsection.0.1.3}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.4}Firmware}{6}{subsection.0.1.4}} \newlabel{5}{{0.1.4}{6}{Firmware}{subsection.0.1.4}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.1.5}Virtual Machines}{7}{subsection.0.1.5}} \newlabel{6}{{0.1.5}{7}{Virtual Machines}{subsection.0.1.5}{}} \newlabel{7}{{0.1.5}{7}{Virtual Machines}{subsection.0.1.5}{}} \@writefile{toc}{\contentsline {section}{\numberline {0.2}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Systems Security Architecture}{7}{section.0.2}} \newlabel{8}{{0.2}{7}{\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Systems Security Architecture}{section.0.2}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.2.1}Security Design Principles}{7}{subsection.0.2.1}} \newlabel{9}{{0.2.1}{7}{Security Design Principles}{subsection.0.2.1}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.2.2}Trusted Computing Base}{8}{subsection.0.2.2}} \newlabel{10}{{0.2.2}{8}{Trusted Computing Base}{subsection.0.2.2}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.2.3}Security Modes of Operation}{10}{subsection.0.2.3}} \newlabel{11}{{0.2.3}{10}{Security Modes of Operation}{subsection.0.2.3}{}} \newlabel{12}{{0.2.3}{11}{Security Modes of Operation}{subsection.0.2.3}{}} \@writefile{toc}{\contentsline {section}{\numberline {0.3}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Models}{11}{section.0.3}} \newlabel{13}{{0.3}{11}{\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Models}{section.0.3}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.1}Lattice Models}{11}{subsection.0.3.1}} \newlabel{14}{{0.3.1}{11}{Lattice Models}{subsection.0.3.1}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.2}State Machine Models}{12}{subsection.0.3.2}} \newlabel{15}{{0.3.2}{12}{State Machine Models}{subsection.0.3.2}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.3}Noninterference Models}{12}{subsection.0.3.3}} \newlabel{16}{{0.3.3}{12}{Noninterference Models}{subsection.0.3.3}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.4}Bell—LaPadula Confidentiality Model}{12}{subsection.0.3.4}} \newlabel{17}{{0.3.4}{12}{Bell—LaPadula Confidentiality Model}{subsection.0.3.4}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.5}Biba Integrity Model}{13}{subsection.0.3.5}} \newlabel{18}{{0.3.5}{13}{Biba Integrity Model}{subsection.0.3.5}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.6}Clark—Wilson Integrity Model}{13}{subsection.0.3.6}} \newlabel{19}{{0.3.6}{13}{Clark—Wilson Integrity Model}{subsection.0.3.6}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.7}Access Control Matrix}{14}{subsection.0.3.7}} \newlabel{20}{{0.3.7}{14}{Access Control Matrix}{subsection.0.3.7}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.8}Information Flow Models}{14}{subsection.0.3.8}} \newlabel{21}{{0.3.8}{14}{Information Flow Models}{subsection.0.3.8}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.9}Graham—Denning Model}{14}{subsection.0.3.9}} \newlabel{22}{{0.3.9}{14}{Graham—Denning Model}{subsection.0.3.9}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.10}Harrison—Ruzzo—Ullman Model}{15}{subsection.0.3.10}} \newlabel{23}{{0.3.10}{15}{Harrison—Ruzzo—Ullman Model}{subsection.0.3.10}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.3.11}Brewer—Nash (Chinese Wall)}{15}{subsection.0.3.11}} \newlabel{24}{{0.3.11}{15}{Brewer—Nash (Chinese Wall)}{subsection.0.3.11}{}} \newlabel{25}{{0.3.11}{15}{Brewer—Nash (Chinese Wall)}{subsection.0.3.11}{}} \@writefile{toc}{\contentsline {section}{\numberline {0.4}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Product Evaluation Methods and Criteria}{15}{section.0.4}} \newlabel{26}{{0.4}{15}{\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Product Evaluation Methods and Criteria}{section.0.4}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.4.1}Rainbow Series}{16}{subsection.0.4.1}} \newlabel{27}{{0.4.1}{16}{Rainbow Series}{subsection.0.4.1}{}} \@writefile{toc}{\contentsline {subsubsection}{Orange Book or TCSEC}{16}{section*.2}} \newlabel{28}{{0.4.1}{16}{Orange Book or TCSEC}{section*.2}{}} \@writefile{toc}{\contentsline {subsubsection}{Red Book or TNI}{18}{section*.3}} \newlabel{29}{{0.4.1}{18}{Red Book or TNI}{section*.3}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.4.2}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Information Technology Security Evaluation Criteria (ITSEC)}{19}{subsection.0.4.2}} \newlabel{30}{{0.4.2}{19}{\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Information Technology Security Evaluation Criteria (ITSEC)}{subsection.0.4.2}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.4.3}Common Criteria}{20}{subsection.0.4.3}} \newlabel{31}{{0.4.3}{20}{Common Criteria}{subsection.0.4.3}{}} \@writefile{toc}{\contentsline {subsection}{\numberline {0.4.4}Certification and Accreditation}{22}{subsection.0.4.4}} \newlabel{32}{{0.4.4}{22}{Certification and Accreditation}{subsection.0.4.4}{}} \gdef \LT@i {\LT@entry {1}{40.6014pt}\LT@entry {1}{272.01709pt}} \@writefile{toc}{\contentsline {chapter}{\numberline {1}Contributors}{23}{chapter.1}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \newlabel{Contributors}{{1}{23}{Contributors}{chapter.1}{}} \@writefile{toc}{\contentsline {chapter}{List of Figures}{25}{chapter*.4}} \newlabel{ListOfFigures}{{1}{25}{Contributors}{chapter*.4}{}} \gdef \LT@ii {\LT@entry {1}{0.0pt}\LT@entry {1}{0.0pt}\LT@entry {1}{0.0pt}} \@writefile{toc}{\contentsline {chapter}{\numberline {2}Licenses}{29}{chapter.2}} \@writefile{lof}{\addvspace {10\p@ }} \@writefile{lot}{\addvspace {10\p@ }} \newlabel{Licenses}{{2}{29}{Licenses}{chapter.2}{}} \@writefile{toc}{\contentsline {section}{\numberline {2.1}GNU GENERAL PUBLIC LICENSE}{29}{section.2.1}} \@writefile{toc}{\contentsline {section}{\numberline {2.2}GNU Free Documentation License}{30}{section.2.2}} \@writefile{toc}{\contentsline {section}{\numberline {2.3}GNU Lesser General Public License}{31}{section.2.3}}

main/main.lof

\select@language {english} \addvspace {10\p@ } \addvspace {10\p@ }

main/main.log

This is XeTeX, Version 3.1415926-2.5-0.9999.3 (TeX Live 2013/Debian) (format=xelatex 2013.11.8) 25 JAN 2014 22:11 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **main.tex (./main.tex LaTeX2e <2011/06/27> Babel <3.9f> and hyphenation patterns for 78 languages loaded. (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hyphsubst.sty Package: hyphsubst 2008/06/09 v0.2 Substitute hyphenation patterns (HO) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty Package: infwarerr 2010/04/08 v1.3 Providing info/warning/error messages (HO) )) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbook.cls Document Class: scrbook 2012/07/29 v3.11b KOMA-Script document class (book) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrkbase.sty Package: scrkbase 2012/07/29 v3.11b KOMA-Script package (KOMA-Script-dependent basics and keyval usage) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrbase.sty Package: scrbase 2012/07/29 v3.11b KOMA-Script package (KOMA-Script-independent basics and keyval usage) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty Package: keyval 1999/03/16 v1.13 key=value parser (DPC) \KV@toks@=\toks14 ) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrlfile.sty Package: scrlfile 2012/06/15 v3.12 KOMA-Script package (loading files) Package scrlfile, 2012/06/15 v3.12 KOMA-Script package (loading files) Copyright (C) Markus Kohm ))) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/tocbasic.sty Package: tocbasic 2012/04/04 v3.10b KOMA-Script package (handling toc-files) ) Package tocbasic Info: omitting babel extension for `toc' (tocbasic) because of feature `nobabel' available (tocbasic) for `toc' on input line 117. Package tocbasic Info: omitting babel extension for `lof' (tocbasic) because of feature `nobabel' available (tocbasic) for `lof' on input line 118. Package tocbasic Info: omitting babel extension for `lot' (tocbasic) because of feature `nobabel' available (tocbasic) for `lot' on input line 119. Class scrbook Info: File `scrsize11pt.clo' used to setup font sizes on input li ne 1368. (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrsize11pt.clo File: scrsize11pt.clo 2012/07/29 v3.11b KOMA-Script font size class option (11p t) ) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/typearea.sty Package: typearea 2012/07/29 v3.11b KOMA-Script package (type area) Package typearea, 2012/07/29 v3.11b KOMA-Script package (type area) Copyright (C) Frank Neukam, 1992-1994 Copyright (C) Markus Kohm, 1994- \ta@bcor=\skip41 \ta@div=\count80 \ta@hblk=\skip42 \ta@vblk=\skip43 \ta@temp=\skip44 Package typearea Info: These are the values describing the layout: (typearea) DIV = 13 (typearea) BCOR = 34.1433pt (typearea) \paperwidth = 597.50793pt (typearea) \textwidth = 433.35742pt (typearea) DIV departure = -10% (typearea) \evensidemargin = 14.40149pt (typearea) \oddsidemargin = 5.20905pt (typearea) \paperheight = 845.04694pt (typearea) \textheight = 650.20029pt (typearea) \topmargin = -44.6664pt (typearea) \headheight = 17.0pt (typearea) \headsep = 20.40001pt (typearea) \topskip = 11.0pt (typearea) \footskip = 47.60002pt (typearea) \baselineskip = 13.6pt (typearea) on input line 1213. ) \c@part=\count81 \c@chapter=\count82 \c@section=\count83 \c@subsection=\count84 \c@subsubsection=\count85 \c@paragraph=\count86 \c@subparagraph=\count87 \abovecaptionskip=\skip45 \belowcaptionskip=\skip46 \c@pti@nb@sid@b@x=\box26 \c@figure=\count88 \c@table=\count89 \bibindent=\dimen102 ) (../headers/paper.tex) (../headers/packages1.tex (/usr/share/texlive/texmf-dist/tex/latex/graphics/color.sty Package: color 2005/11/14 v1.0j Standard LaTeX Color (DPC) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive ) Package color Info: Driver file: xetex.def on input line 130. (/usr/share/texlive/texmf-dist/tex/xelatex/xetex-def/xetex.def File: xetex.def 2013/04/29 v0.96 LaTeX color/graphics driver for XeTeX (RRM/JK) )) (/usr/share/texlive/texmf-dist/tex/latex/base/textcomp.sty Package: textcomp 2005/09/27 v1.99g Standard LaTeX package Package textcomp Info: Sub-encoding information: (textcomp) 5 = only ISO-Adobe without \textcurrency (textcomp) 4 = 5 + \texteuro (textcomp) 3 = 4 + \textohm (textcomp) 2 = 3 + \textestimated + \textcurrency (textcomp) 1 = TS1 - \textcircled - \t (textcomp) 0 = TS1 (full) (textcomp) Font families with sub-encoding setting implement (textcomp) only a restricted character set as indicated. (textcomp) Family '?' is the default used for unknown fonts. (textcomp) See the documentation for details. Package textcomp Info: Setting ? sub-encoding to TS1/1 on input line 71. (/usr/share/texlive/texmf-dist/tex/latex/base/ts1enc.def File: ts1enc.def 2001/06/05 v3.0e (jk/car/fm) Standard LaTeX file ) LaTeX Info: Redefining \oldstylenums on input line 266. Package textcomp Info: Setting cmr sub-encoding to TS1/0 on input line 281. Package textcomp Info: Setting cmss sub-encoding to TS1/0 on input line 282. Package textcomp Info: Setting cmtt sub-encoding to TS1/0 on input line 283. Package textcomp Info: Setting cmvtt sub-encoding to TS1/0 on input line 284. Package textcomp Info: Setting cmbr sub-encoding to TS1/0 on input line 285. Package textcomp Info: Setting cmtl sub-encoding to TS1/0 on input line 286. Package textcomp Info: Setting ccr sub-encoding to TS1/0 on input line 287. Package textcomp Info: Setting ptm sub-encoding to TS1/4 on input line 288. Package textcomp Info: Setting pcr sub-encoding to TS1/4 on input line 289. Package textcomp Info: Setting phv sub-encoding to TS1/4 on input line 290. Package textcomp Info: Setting ppl sub-encoding to TS1/3 on input line 291. Package textcomp Info: Setting pag sub-encoding to TS1/4 on input line 292. Package textcomp Info: Setting pbk sub-encoding to TS1/4 on input line 293. Package textcomp Info: Setting pnc sub-encoding to TS1/4 on input line 294. Package textcomp Info: Setting pzc sub-encoding to TS1/4 on input line 295. Package textcomp Info: Setting bch sub-encoding to TS1/4 on input line 296. Package textcomp Info: Setting put sub-encoding to TS1/5 on input line 297. Package textcomp Info: Setting uag sub-encoding to TS1/5 on input line 298. Package textcomp Info: Setting ugq sub-encoding to TS1/5 on input line 299. Package textcomp Info: Setting ul8 sub-encoding to TS1/4 on input line 300. Package textcomp Info: Setting ul9 sub-encoding to TS1/4 on input line 301. Package textcomp Info: Setting augie sub-encoding to TS1/5 on input line 302. Package textcomp Info: Setting dayrom sub-encoding to TS1/3 on input line 303. Package textcomp Info: Setting dayroms sub-encoding to TS1/3 on input line 304. Package textcomp Info: Setting pxr sub-encoding to TS1/0 on input line 305. Package textcomp Info: Setting pxss sub-encoding to TS1/0 on input line 306. Package textcomp Info: Setting pxtt sub-encoding to TS1/0 on input line 307. Package textcomp Info: Setting txr sub-encoding to TS1/0 on input line 308. Package textcomp Info: Setting txss sub-encoding to TS1/0 on input line 309. Package textcomp Info: Setting txtt sub-encoding to TS1/0 on input line 310. Package textcomp Info: Setting lmr sub-encoding to TS1/0 on input line 311. Package textcomp Info: Setting lmdh sub-encoding to TS1/0 on input line 312. Package textcomp Info: Setting lmss sub-encoding to TS1/0 on input line 313. Package textcomp Info: Setting lmssq sub-encoding to TS1/0 on input line 314. Package textcomp Info: Setting lmvtt sub-encoding to TS1/0 on input line 315. Package textcomp Info: Setting qhv sub-encoding to TS1/0 on input line 316. Package textcomp Info: Setting qag sub-encoding to TS1/0 on input line 317. Package textcomp Info: Setting qbk sub-encoding to TS1/0 on input line 318. Package textcomp Info: Setting qcr sub-encoding to TS1/0 on input line 319. Package textcomp Info: Setting qcs sub-encoding to TS1/0 on input line 320. Package textcomp Info: Setting qpl sub-encoding to TS1/0 on input line 321. Package textcomp Info: Setting qtm sub-encoding to TS1/0 on input line 322. Package textcomp Info: Setting qzc sub-encoding to TS1/0 on input line 323. Package textcomp Info: Setting qhvc sub-encoding to TS1/0 on input line 324. Package textcomp Info: Setting futs sub-encoding to TS1/4 on input line 325. Package textcomp Info: Setting futx sub-encoding to TS1/4 on input line 326. Package textcomp Info: Setting futj sub-encoding to TS1/4 on input line 327. Package textcomp Info: Setting hlh sub-encoding to TS1/3 on input line 328. Package textcomp Info: Setting hls sub-encoding to TS1/3 on input line 329. Package textcomp Info: Setting hlst sub-encoding to TS1/3 on input line 330. Package textcomp Info: Setting hlct sub-encoding to TS1/5 on input line 331. Package textcomp Info: Setting hlx sub-encoding to TS1/5 on input line 332. Package textcomp Info: Setting hlce sub-encoding to TS1/5 on input line 333. Package textcomp Info: Setting hlcn sub-encoding to TS1/5 on input line 334. Package textcomp Info: Setting hlcw sub-encoding to TS1/5 on input line 335. Package textcomp Info: Setting hlcf sub-encoding to TS1/5 on input line 336. Package textcomp Info: Setting pplx sub-encoding to TS1/3 on input line 337. Package textcomp Info: Setting pplj sub-encoding to TS1/3 on input line 338. Package textcomp Info: Setting ptmx sub-encoding to TS1/4 on input line 339. Package textcomp Info: Setting ptmj sub-encoding to TS1/4 on input line 340. ) (/usr/share/texlive/texmf-dist/tex/latex/parskip/parskip.sty Package: parskip 2001/04/09 non-zero parskip adjustments ) (/usr/share/texlive/texmf-dist/tex/generic/ulem/ulem.sty \UL@box=\box27 \UL@hyphenbox=\box28 \UL@skip=\skip47 \UL@hook=\toks15 \UL@height=\dimen103 \UL@pe=\count90 \UL@pixel=\dimen104 \ULC@box=\box29 Package: ulem 2012/05/18 \ULdepth=\dimen105 ) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty Package: hyperref 2012/11/06 v6.83m Hypertext links for LaTeX (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty Package: hobsub-hyperref 2012/05/28 v1.13 Bundle oberdiek, subset hyperref (HO) (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty Package: hobsub-generic 2012/05/28 v1.13 Bundle oberdiek, subset generic (HO) Package: hobsub 2012/05/28 v1.13 Construct package bundles (HO) Package hobsub Info: Skipping package `infwarerr' (already loaded). Package: ltxcmds 2011/11/09 v1.22 LaTeX kernel commands for general use (HO) Package: ifluatex 2010/03/01 v1.3 Provides the ifluatex switch (HO) Package ifluatex Info: LuaTeX not detected. Package: ifvtex 2010/03/01 v1.5 Detect VTeX and its facilities (HO) Package ifvtex Info: VTeX not detected. Package: intcalc 2007/09/27 v1.1 Expandable calculations with integers (HO) Package: ifpdf 2011/01/30 v2.3 Provides the ifpdf switch (HO) Package ifpdf Info: pdfTeX in PDF mode is not detected. Package: etexcmds 2011/02/16 v1.5 Avoid name clashes with e-TeX commands (HO) Package etexcmds Info: Could not find \expanded. (etexcmds) That can mean that you are not using pdfTeX 1.50 or (etexcmds) that some package has redefined \expanded. (etexcmds) In the latter case, load this package earlier. Package: kvsetkeys 2012/04/25 v1.16 Key value parser (HO) Package: kvdefinekeys 2011/04/07 v1.3 Define keys (HO) Package: pdftexcmds 2011/11/29 v0.20 Utility functions of pdfTeX for LuaTeX (HO ) Package pdftexcmds Info: LuaTeX not detected. Package pdftexcmds Info: pdfTeX >= 1.30 not detected. Package pdftexcmds Info: \pdf@primitive is available. Package pdftexcmds Info: \pdf@ifprimitive is available. Package pdftexcmds Info: \pdfdraftmode not found. Package: pdfescape 2011/11/25 v1.13 Implements pdfTeX's escape features (HO) Package: bigintcalc 2012/04/08 v1.3 Expandable calculations on big integers (HO ) Package: bitset 2011/01/30 v1.1 Handle bit-vector datatype (HO) Package: uniquecounter 2011/01/30 v1.2 Provide unlimited unique counter (HO) ) Package hobsub Info: Skipping package `hobsub' (already loaded). Package: letltxmacro 2010/09/02 v1.4 Let assignment for LaTeX macros (HO) Package: hopatch 2012/05/28 v1.2 Wrapper for package hooks (HO) Package: xcolor-patch 2011/01/30 xcolor patch Package: atveryend 2011/06/30 v1.8 Hooks at the very end of document (HO) Package atveryend Info: \enddocument detected (standard20110627). Package: atbegshi 2011/10/05 v1.16 At begin shipout hook (HO) Package: refcount 2011/10/16 v3.4 Data extraction from label references (HO) Package: hycolor 2011/01/30 v1.7 Color options for hyperref/bookmark (HO) ) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional ) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty Package: auxhook 2011/03/04 v1.3 Hooks for auxiliary files (HO) ) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty Package: kvoptions 2011/06/30 v3.11 Key value format for package options (HO) ) \@linkdim=\dimen106 \Hy@linkcounter=\count91 \Hy@pagecounter=\count92 (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def File: pd1enc.def 2012/11/06 v6.83m Hyperref: PDFDocEncoding definition (HO) ) \Hy@SavedSpaceFactor=\count93 (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/hyperref.cfg File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive ) Package hyperref Info: Option `unicode' set `true' on input line 4319. (/usr/share/texlive/texmf-dist/tex/latex/hyperref/puenc.def File: puenc.def 2012/11/06 v6.83m Hyperref: PDF Unicode definition (HO) ) Package hyperref Info: Hyper figures OFF on input line 4443. Package hyperref Info: Link nesting OFF on input line 4448. Package hyperref Info: Hyper index ON on input line 4451. Package hyperref Info: Plain pages OFF on input line 4458. Package hyperref Info: Backreferencing OFF on input line 4463. Package hyperref Info: Implicit mode ON; LaTeX internals redefined. Package hyperref Info: Bookmarks ON on input line 4688. \c@Hy@tempcnt=\count94 (/usr/share/texlive/texmf-dist/tex/latex/url/url.sty \Urlmuskip=\muskip10 Package: url 2006/04/12 ver 3.3 Verb mode for urls, etc. ) LaTeX Info: Redefining \url on input line 5041. \XeTeXLinkMargin=\dimen107 \Fld@menulength=\count95 \Field@Width=\dimen108 \Fld@charsize=\dimen109 Package hyperref Info: Hyper figures OFF on input line 6295. Package hyperref Info: Link nesting OFF on input line 6300. Package hyperref Info: Hyper index ON on input line 6303. Package hyperref Info: backreferencing OFF on input line 6310. Package hyperref Info: Link coloring OFF on input line 6315. Package hyperref Info: Link coloring with OCG OFF on input line 6320. Package hyperref Info: PDF/A mode OFF on input line 6325. LaTeX Info: Redefining \ref on input line 6365. LaTeX Info: Redefining \pageref on input line 6369. \Hy@abspage=\count96 \c@Item=\count97 \c@Hfootnote=\count98 ) Package hyperref Message: Driver (autodetected): hxetex. (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hxetex.def File: hxetex.def 2012/11/06 v6.83m Hyperref driver for XeTeX (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/stringenc.sty Package: stringenc 2011/12/02 v1.10 Convert strings between diff. encodings (HO ) ) \pdfm@box=\box30 \c@Hy@AnnotLevel=\count99 \HyField@AnnotCount=\count100 \Fld@listcount=\count101 \c@bookmark@seq@number=\count102 (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/rerunfilecheck.sty Package: rerunfilecheck 2011/04/15 v1.7 Rerun checks for auxiliary files (HO) Package rerunfilecheck Info: Feature \pdfmdfivesum is not available (rerunfilecheck) (e.g. pdfTeX or LuaTeX with package `pdftexcmds'). (rerunfilecheck) Therefore file contents cannot be checked efficien tly (rerunfilecheck) and the loading of the package is aborted. ) \Hy@SectionHShift=\skip48 ) (/usr/share/texlive/texmf-dist/tex/latex/koma-script/tocstyle.sty Package: tocstyle 2009/11/09 v0.2d-alpha LaTeX2e KOMA-Script package (versatile toc styles) Package tocstyle Warning: THIS IS AN ALPHA VERSION! (tocstyle) USAGE OF THIS VERSION IS ON YOUR OWN RISK! (tocstyle) EVERYTHING MAY HAPPEN! (tocstyle) EVERYTHING MAY CHANGE IN FUTURE! (tocstyle) THERE IS NO SUPPORT, IF YOU USE THIS PACKAGE! (tocstyle) Maybe it would be better, not to load this package. \tocstyle@indentstyle=\count103 Package tocstyle Info: no tocstyle.cfg found on input line 838. ) (/usr/share/texlive/texmf-dist/tex/latex/paralist/paralist.sty Package: paralist 2013/06/09 v2.4 Extended list environments \pltopsep=\skip49 \plpartopsep=\skip50 \plitemsep=\skip51 \plparsep=\skip52 \pl@lab=\toks16 ) (/usr/share/texlive/texmf-dist/tex/latex/tools/trace.sty Package: trace 2003/04/30 v1.1c trace LaTeX code ) (/usr/share/texlive/texmf-dist/tex/latex/keystroke/keystroke.sty Package: keystroke 2010/04/23 v1.6 3D keystrokes (SuSE GmbH/RN) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty Package: graphics 2009/02/05 v1.0o Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty Package: trig 1999/03/16 v1.09 sin cos tan (DPC) ) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/graphics.cfg File: graphics.cfg 2010/04/23 v1.9 graphics configuration of TeX Live ) Package graphics Info: Driver file: xetex.def on input line 91. ) \suse@key=\box31 \keystroke@left=\box32 \keystroke@right=\box33 \keystroke@middle=\box34 File: keystroke_left.pdf Graphic file (type QTm) <use "keystroke_left.pdf" > File: keystroke_middle.pdf Graphic file (type QTm) <use "keystroke_middle.pdf" > File: keystroke_right.pdf Graphic file (type QTm) <use "keystroke_right.pdf" >)) (../headers/babel.tex (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.sty Package: babel 2013/05/16 v3.9f The Babel package (/usr/share/texlive/texmf-dist/tex/generic/babel-english/english.ldf Language: english 2012/08/20 v3.3p English support from the babel system (/usr/share/texlive/texmf-dist/tex/generic/babel/babel.def File: babel.def 2013/05/16 v3.9f Babel common definitions \babel@savecnt=\count104 \U@D=\dimen110 (/usr/share/texlive/texmf-dist/tex/generic/babel/xebabel.def)) \l@canadian = a dialect from \language\l@american \l@australian = a dialect from \language\l@british \l@newzealand = a dialect from \language\l@british ))) (../headers/svg.tex) (../headers/packages2.tex (/usr/share/texlive/texmf-dist/tex/latex/psnfss/mathptmx.sty Package: mathptmx 2005/04/12 PSNFSS-v9.2a Times w/ Math, improved (SPQR, WaS) LaTeX Font Info: Redeclaring symbol font `operators' on input line 28. LaTeX Font Info: Overwriting symbol font `operators' in version `normal' (Font) OT1/cmr/m/n --> OT1/ztmcm/m/n on input line 28. LaTeX Font Info: Overwriting symbol font `operators' in version `bold' (Font) OT1/cmr/bx/n --> OT1/ztmcm/m/n on input line 28. LaTeX Font Info: Redeclaring symbol font `letters' on input line 29. LaTeX Font Info: Overwriting symbol font `letters' in version `normal' (Font) OML/cmm/m/it --> OML/ztmcm/m/it on input line 29. LaTeX Font Info: Overwriting symbol font `letters' in version `bold' (Font) OML/cmm/b/it --> OML/ztmcm/m/it on input line 29. LaTeX Font Info: Redeclaring symbol font `symbols' on input line 30. LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' (Font) OMS/cmsy/m/n --> OMS/ztmcm/m/n on input line 30. LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' (Font) OMS/cmsy/b/n --> OMS/ztmcm/m/n on input line 30. LaTeX Font Info: Redeclaring symbol font `largesymbols' on input line 31. LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' (Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31. LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' (Font) OMX/cmex/m/n --> OMX/ztmcm/m/n on input line 31. \symbold=\mathgroup4 \symitalic=\mathgroup5 LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 34. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' (Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' (Font) OT1/cmr/bx/n --> OT1/ptm/bx/n on input line 34. LaTeX Font Info: Redeclaring math alphabet \mathit on input line 35. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' (Font) OT1/cmr/m/it --> OT1/ptm/m/it on input line 35. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' (Font) OT1/cmr/bx/it --> OT1/ptm/m/it on input line 35. LaTeX Info: Redefining \hbar on input line 50. ) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/helvet.sty Package: helvet 2005/04/12 PSNFSS-v9.2a (WaS) ) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/courier.sty Package: courier 2005/04/12 PSNFSS-v9.2a (WaS) ) (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty Package: fontenc 2005/09/27 v1.99g Standard LaTeX package (/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file LaTeX Font Info: Redeclaring font encoding T1 on input line 43. )) (/usr/share/texlive/texmf-dist/tex/latex/multirow/multirow.sty \bigstrutjot=\dimen111 ) (/usr/share/texlive/texmf-dist/tex/latex/tools/multicol.sty Package: multicol 2011/06/27 v1.7a multicolumn formatting (FMi) \c@tracingmulticols=\count105 \mult@box=\box35 \multicol@leftmargin=\dimen112 \c@unbalance=\count106 \c@collectmore=\count107 \doublecol@number=\count108 \multicoltolerance=\count109 \multicolpretolerance=\count110 \full@width=\dimen113 \page@free=\dimen114 \premulticols=\dimen115 \postmulticols=\dimen116 \multicolsep=\skip53 \multicolbaselineskip=\skip54 \partial@page=\box36 \last@line=\box37 \mult@rightbox=\box38 \mult@grightbox=\box39 \mult@gfirstbox=\box40 \mult@firstbox=\box41 \@tempa=\box42 \@tempa=\box43 \@tempa=\box44 \@tempa=\box45 \@tempa=\box46 \@tempa=\box47 \@tempa=\box48 \@tempa=\box49 \@tempa=\box50 \@tempa=\box51 \@tempa=\box52 \@tempa=\box53 \@tempa=\box54 \@tempa=\box55 \@tempa=\box56 \@tempa=\box57 \@tempa=\box58 \c@columnbadness=\count111 \c@finalcolumnbadness=\count112 \last@try=\dimen117 \multicolovershoot=\dimen118 \multicolundershoot=\dimen119 \mult@nat@firstbox=\box59 \colbreak@box=\box60 \multicol@sort@counter=\count113 ) (/usr/share/texlive/texmf-dist/tex/latex/tools/array.sty Package: array 2008/09/09 v2.4c Tabular extension package (FMi) \col@sep=\dimen120 \extrarowheight=\dimen121 \NC@list=\toks17 \extratabsurround=\skip55 \backup@length=\skip56 ) (/usr/share/texlive/texmf-dist/tex/latex/ms/ragged2e.sty Package: ragged2e 2009/05/21 v2.1 ragged2e Package (MS) (/usr/share/texlive/texmf-dist/tex/latex/ms/everysel.sty Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) ) \CenteringLeftskip=\skip57 \RaggedLeftLeftskip=\skip58 \RaggedRightLeftskip=\skip59 \CenteringRightskip=\skip60 \RaggedLeftRightskip=\skip61 \RaggedRightRightskip=\skip62 \CenteringParfillskip=\skip63 \RaggedLeftParfillskip=\skip64 \RaggedRightParfillskip=\skip65 \JustifyingParfillskip=\skip66 \CenteringParindent=\skip67 \RaggedLeftParindent=\skip68 \RaggedRightParindent=\skip69 \JustifyingParindent=\skip70 ) (/usr/share/texlive/texmf-dist/tex/latex/tools/longtable.sty Package: longtable 2004/02/01 v4.11 Multi-page Table package (DPC) \LTleft=\skip71 \LTright=\skip72 \LTpre=\skip73 \LTpost=\skip74 \LTchunksize=\count114 \LTcapwidth=\dimen122 \LT@head=\box61 \LT@firsthead=\box62 \LT@foot=\box63 \LT@lastfoot=\box64 \LT@cols=\count115 \LT@rows=\count116 \c@LT@tables=\count117 \c@LT@chunks=\count118 \LT@p@ftn=\toks18 ) Class scrbook Info: longtable captions redefined on input line 17. (/usr/share/texlive/texmf-dist/tex/latex/koma-script/scrpage2.sty Package: scrpage2 2010/04/22 v2.5 LaTeX2e KOMA-Script package LaTeX Info: Redefining \pagemark on input line 176. ) (/usr/share/texlive/texmf-dist/tex/latex/mdwtools/footnote.sty Package: footnote 1997/01/28 1.13 Save footnotes around boxes \fn@notes=\box65 \fn@width=\dimen123 ) (/usr/share/texlive/texmf-dist/tex/latex/tools/verbatim.sty Package: verbatim 2003/08/22 v1.5q LaTeX2e package for verbatim enhancements \every@verbatim=\toks19 \verbatim@line=\toks20 \verbatim@in@stream=\read1 ) (/usr/share/texlive/texmf-dist/tex/latex/framed/framed.sty Package: framed 2011/10/22 v 0.96: framed or shaded text with page breaks \OuterFrameSep=\skip75 \fb@frw=\dimen124 \fb@frh=\dimen125 \FrameRule=\dimen126 \FrameSep=\dimen127 ) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsmath.sty Package: amsmath 2013/01/14 v2.14 AMS math features \@mathmargin=\skip76 For additional information on amsmath, use the `?' option. (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amstext.sty Package: amstext 2000/06/29 v2.01 (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsgen.sty File: amsgen.sty 1999/11/30 v2.0 \@emptytoks=\toks21 \ex@=\dimen128 )) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsbsy.sty Package: amsbsy 1999/11/29 v1.2d \pmbraise@=\dimen129 ) (/usr/share/texlive/texmf-dist/tex/latex/amsmath/amsopn.sty Package: amsopn 1999/12/14 v2.01 operator names ) \inf@bad=\count119 LaTeX Info: Redefining \frac on input line 210. \uproot@=\count120 \leftroot@=\count121 LaTeX Info: Redefining \overline on input line 306. \classnum@=\count122 \DOTSCASE@=\count123 LaTeX Info: Redefining \ldots on input line 378. LaTeX Info: Redefining \dots on input line 381. LaTeX Info: Redefining \cdots on input line 466. \Mathstrutbox@=\box66 \strutbox@=\box67 \big@size=\dimen130 LaTeX Font Info: Redeclaring font encoding OML on input line 566. LaTeX Font Info: Redeclaring font encoding OMS on input line 567. \macc@depth=\count124 \c@MaxMatrixCols=\count125 \dotsspace@=\muskip11 \c@parentequation=\count126 \dspbrk@lvl=\count127 \tag@help=\toks22 \row@=\count128 \column@=\count129 \maxfields@=\count130 \andhelp@=\toks23 \eqnshift@=\dimen131 \alignsep@=\dimen132 \tagshift@=\dimen133 \tagwidth@=\dimen134 \totwidth@=\dimen135 \lineht@=\dimen136 \@envbody=\toks24 \multlinegap=\skip77 \multlinetaggap=\skip78 \mathdisplay@stack=\toks25 LaTeX Info: Redefining \[ on input line 2665. LaTeX Info: Redefining \] on input line 2666. ) (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amssymb.sty Package: amssymb 2013/01/14 v3.01 AMS font symbols (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/amsfonts.sty Package: amsfonts 2013/01/14 v3.01 Basic AMSFonts support \symAMSa=\mathgroup6 \symAMSb=\mathgroup7 LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' (Font) U/euf/m/n --> U/euf/b/n on input line 106. )) (/usr/share/texlive/texmf-dist/tex/latex/psnfss/pifont.sty Package: pifont 2005/04/12 PSNFSS-v9.2a Pi font support (SPQR) LaTeX Font Info: Try loading font information for U+pzd on input line 63. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/upzd.fd File: upzd.fd 2001/06/04 font definitions for U/pzd. ) LaTeX Font Info: Try loading font information for U+psy on input line 64. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/upsy.fd File: upsy.fd 2001/06/04 font definitions for U/psy. )) (/usr/share/texlive/texmf-dist/tex/latex/marvosym/marvosym.sty Package: marvosym 2011/07/20 v2.2 Martin Vogel's Symbols font definitions ) (/usr/share/texlive/texmf-dist/tex/latex/fourier/fourier-orns.sty Package: fourier-orns 2004/01/30 1.1 fourier-ornaments package ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) \Gin@req@height=\dimen137 \Gin@req@width=\dimen138 ) (/usr/share/texlive/texmf-dist/tex/latex/wasysym/wasysym.sty Package: wasysym 2003/10/30 v2.0 Wasy-2 symbol support package \symwasy=\mathgroup8 LaTeX Font Info: Overwriting symbol font `wasy' in version `bold' (Font) U/wasy/m/n --> U/wasy/b/n on input line 90. ) (/usr/share/texlive/texmf-dist/tex/latex/bbm-macros/bbm.sty Package: bbm 1999/03/15 V 1.2 provides fonts for set symbols - TH LaTeX Font Info: Overwriting math alphabet `\mathbbm' in version `bold' (Font) U/bbm/m/n --> U/bbm/bx/n on input line 33. LaTeX Font Info: Overwriting math alphabet `\mathbbmss' in version `bold' (Font) U/bbmss/m/n --> U/bbmss/bx/n on input line 35. ) (/usr/share/texlive/texmf-dist/tex/latex/skull/skull.sty Invalid UTF-8 byte or sequence at line 8 replaced by U+FFFD. Package: skull 2002/01/23 v0.1 (c) Henrik Christian Grove <[email protected]> \symSKULL=\mathgroup9 ) (/usr/share/texmf/tex/latex/tipa/tipa.sty Package: tipa 2002/08/08 TIPA version 1.1 (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty Package: fontenc 2005/09/27 v1.99g Standard LaTeX package (/usr/share/texmf/tex/latex/tipa/t3enc.def File: t3enc.def 2001/12/31 T3 encoding LaTeX Font Info: Try loading font information for T1+phv on input line 357. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1phv.fd File: t1phv.fd 2001/06/04 scalable font definitions for T1/phv. ) LaTeX Font Info: Font shape `T1/phv/m/n' will be (Font) scaled to size 10.07397pt on input line 357. ) (/usr/share/texlive/texmf-dist/tex/latex/base/t1enc.def File: t1enc.def 2005/09/27 v1.99g Standard LaTeX file LaTeX Font Info: Redeclaring font encoding T1 on input line 43. ))) (/usr/share/texlive/texmf-dist/tex/latex/fancyvrb/fancyvrb.sty Package: fancyvrb 2008/02/07 Style option: `fancyvrb' v2.7a, with DG/SPQR fixes, and firstline=lastline fix <2008/02/07> (tvz) \FV@CodeLineNo=\count131 \FV@InFile=\read2 \FV@TabBox=\box68 \c@FancyVerbLine=\count132 \FV@StepNumber=\count133 \FV@OutFile=\write3 ) (/usr/share/texlive/texmf-dist/tex/latex/bbding/bbding.sty Package: bbding 1999/04/15 v1.01 Dingbats symbols ) (/usr/share/texmf/tex/latex/xcolor/xcolor.sty Package: xcolor 2007/01/21 v2.11 LaTeX color extensions (UK) (/usr/share/texlive/texmf-dist/tex/latex/latexconfig/color.cfg File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive ) Package xcolor Info: Driver file: xetex.def on input line 225. (/usr/share/texlive/texmf-dist/tex/latex/colortbl/colortbl.sty Package: colortbl 2012/02/13 v1.0a Color table columns (DPC) \everycr=\toks26 \minrowclearance=\skip79 ) LaTeX Info: Redefining \color on input line 702. \rownum=\count134 Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1337. Package xcolor Info: Model `RGB' extended on input line 1353. Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1355. Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1356. Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1357. Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1358. Package xcolor Info: Model `Gray' substituted by `gray' on input line 1359. Package xcolor Info: Model `wave' substituted by `hsb' on input line 1360. ) (/usr/share/texlive/texmf-dist/tex/latex/graphics/lscape.sty Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC) )) (/usr/share/texlive/texmf-dist/tex/latex/amscls/amsthm.sty Package: amsthm 2004/08/06 v2.20 \thm@style=\toks27 \thm@bodyfont=\toks28 \thm@headfont=\toks29 \thm@notefont=\toks30 \thm@headpunct=\toks31 \thm@preskip=\skip80 \thm@postskip=\skip81 \thm@headsep=\skip82 \dth@everypar=\toks32 ) (../headers/defaultcolors.tex) (../headers/hyphenation.tex) (../headers/commands.tex \fnwidth=\skip83 \mylength=\skip84 \myhight=\skip85 \myshadingheight=\skip86 ) (../headers/title.tex) (../headers/options.tex LaTeX Font Info: Try loading font information for T1+ptm on input line 13. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/t1ptm.fd File: t1ptm.fd 2001/06/04 font definitions for T1/ptm. ) Package typearea Warning: Bad type area settings! (typearea) The detected line width is about 18% (typearea) larger than the heuristically detected line width. (typearea) You should e.g. decrease DIV, increase fontsize (typearea) or change papersize. Package typearea Info: These are the values describing the layout: (typearea) DIV = 13 (typearea) BCOR = 34.1433pt (typearea) \paperwidth = 597.50793pt (typearea) \textwidth = 433.35742pt (typearea) DIV departure = -18% (typearea) \evensidemargin = 14.40149pt (typearea) \oddsidemargin = 5.20905pt (typearea) \paperheight = 845.04694pt (typearea) \textheight = 650.20029pt (typearea) \topmargin = -44.6664pt (typearea) \headheight = 17.0pt (typearea) \headsep = 20.40001pt (typearea) \topskip = 11.0pt (typearea) \footskip = 47.60002pt (typearea) \baselineskip = 13.6pt (typearea) on input line 13. ) (../headers/formattings.tex Package hyperref Info: Option `breaklinks' set `true' on input line 17. Package hyperref Info: Option `colorlinks' set `false' on input line 17. Package hyperref Info: Option `bookmarksopen' set `true' on input line 17. Package hyperref Info: Option `bookmarksnumbered' set `true' on input line 17. Package hyperref Info: Option `frenchlinks' set `false' on input line 17. ) (../headers/unicodes.tex) (../headers/templates.tex \wbtemplengtha=\skip87 \wbtemplengthb=\skip88 \wbtemplengthc=\skip89 \wbtemplengthd=\skip90 \wbtemplengthe=\skip91 \wbtempcounta=\count135 \wbtempcountb=\count136 \wbtempcountc=\count137 \c@satz=\count138 \c@beweis=\count139 \c@beispiel=\count140 \c@mydef=\count141 ) (../headers/templates-dirk.tex) (../headers/templates-chemie.tex) (/usr/share/texmf/tex/latex/lm/lmodern.sty Package: lmodern 2009/10/30 v1.6 Latin Modern Fonts LaTeX Font Info: Overwriting symbol font `operators' in version `normal' (Font) OT1/ztmcm/m/n --> OT1/lmr/m/n on input line 22. LaTeX Font Info: Overwriting symbol font `letters' in version `normal' (Font) OML/ztmcm/m/it --> OML/lmm/m/it on input line 23. LaTeX Font Info: Overwriting symbol font `symbols' in version `normal' (Font) OMS/ztmcm/m/n --> OMS/lmsy/m/n on input line 24. LaTeX Font Info: Overwriting symbol font `largesymbols' in version `normal' (Font) OMX/ztmcm/m/n --> OMX/lmex/m/n on input line 25. LaTeX Font Info: Overwriting symbol font `operators' in version `bold' (Font) OT1/ztmcm/m/n --> OT1/lmr/bx/n on input line 26. LaTeX Font Info: Overwriting symbol font `letters' in version `bold' (Font) OML/ztmcm/m/it --> OML/lmm/b/it on input line 27. LaTeX Font Info: Overwriting symbol font `symbols' in version `bold' (Font) OMS/ztmcm/m/n --> OMS/lmsy/b/n on input line 28. LaTeX Font Info: Overwriting symbol font `largesymbols' in version `bold' (Font) OMX/ztmcm/m/n --> OMX/lmex/m/n on input line 29. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' (Font) OT1/ptm/bx/n --> OT1/lmr/bx/n on input line 31. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' (Font) OT1/cmss/m/n --> OT1/lmss/m/n on input line 32. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' (Font) OT1/ptm/m/it --> OT1/lmr/m/it on input line 33. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' (Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 34. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' (Font) OT1/ptm/bx/n --> OT1/lmr/bx/n on input line 35. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' (Font) OT1/cmss/bx/n --> OT1/lmss/bx/n on input line 36. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' (Font) OT1/ptm/m/it --> OT1/lmr/bx/it on input line 37. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' (Font) OT1/cmtt/m/n --> OT1/lmtt/m/n on input line 38. ) (/usr/share/texlive/texmf-dist/tex/latex/xltxtra/xltxtra.sty Package: xltxtra 2010/09/20 v0.5e Improvements for the "XeLaTeX" format (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.sty Package: fontspec 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTeX (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/expl3.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3names.sty (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3bootstrap.sty Package: l3bootstrap 2013/01/08 v4420 L3 Experimental bootstrap code ) Package: l3names 2012/12/07 v4346 L3 Namespace for primitives ) (/usr/share/texlive/texmf-dist/tex/latex/etex-pkg/etex.sty Package: etex 1998/03/26 v2.0 eTeX basic definition package (PEB) \et@xins=\count142 ) Package: expl3 2013/07/12 v4544 L3 Experimental code bundle wrapper (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3basics.sty Package: l3basics 2013/07/09 v4521 L3 Basic definitions ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3expan.sty Package: l3expan 2013/07/09 v4521 L3 Argument expansion ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3tl.sty Package: l3tl 2013/04/24 v4482 L3 Token lists ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3seq.sty Package: l3seq 2013/05/26 v4500 L3 Sequences and stacks ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3int.sty Package: l3int 2013/04/24 v4482 L3 Integers \c_max_int=\count143 \l_tmpa_int=\count144 \l_tmpb_int=\count145 \g_tmpa_int=\count146 \g_tmpb_int=\count147 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3quark.sty Package: l3quark 2013/07/09 v4521 L3 Quarks ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prg.sty Package: l3prg 2013/04/24 v4482 L3 Control structures \g__prg_map_int=\count148 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3clist.sty Package: l3clist 2013/05/26 v4500 L3 Comma separated lists ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3token.sty Package: l3token 2013/04/24 v4482 L3 Experimental token manipulation ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3prop.sty Package: l3prop 2013/01/09 v4423 L3 Property lists ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3msg.sty Package: l3msg 2013/01/08 v4412 L3 Messages ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3file.sty Package: l3file 2013/05/01 v4483 L3 File and I/O operations \l_iow_line_count_int=\count149 \l__iow_target_count_int=\count150 \l__iow_current_line_int=\count151 \l__iow_current_word_int=\count152 \l__iow_current_indentation_int=\count153 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3skip.sty Package: l3skip 2013/01/13 v4444 L3 Dimensions and skips \c_zero_dim=\dimen139 \c_max_dim=\dimen140 \l_tmpa_dim=\dimen141 \l_tmpb_dim=\dimen142 \g_tmpa_dim=\dimen143 \g_tmpb_dim=\dimen144 \c_zero_skip=\skip92 \c_max_skip=\skip93 \l_tmpa_skip=\skip94 \l_tmpb_skip=\skip95 \g_tmpa_skip=\skip96 \g_tmpb_skip=\skip97 \c_zero_muskip=\muskip12 \c_max_muskip=\muskip13 \l_tmpa_muskip=\muskip14 \l_tmpb_muskip=\muskip15 \g_tmpa_muskip=\muskip16 \g_tmpb_muskip=\muskip17 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3keys.sty Package: l3keys 2013/07/12 v4544 L3 Experimental key-value interfaces \g__keyval_level_int=\count154 \l_keys_choice_int=\count155 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3fp.sty Package: l3fp 2013/07/09 v4521 L3 Floating points \c__fp_leading_shift_int=\count156 \c__fp_middle_shift_int=\count157 \c__fp_trailing_shift_int=\count158 \c__fp_big_leading_shift_int=\count159 \c__fp_big_middle_shift_int=\count160 \c__fp_big_trailing_shift_int=\count161 \c__fp_Bigg_leading_shift_int=\count162 \c__fp_Bigg_middle_shift_int=\count163 \c__fp_Bigg_trailing_shift_int=\count164 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3box.sty Package: l3box 2013/04/24 v4482 L3 Experimental boxes \c_empty_box=\box69 \l_tmpa_box=\box70 \l_tmpb_box=\box71 \g_tmpa_box=\box72 \g_tmpb_box=\box73 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3coffins.sty Package: l3coffins 2012/09/09 v4212 L3 Coffin code layer \l__coffin_internal_box=\box74 \l__coffin_internal_dim=\dimen145 \l__coffin_offset_x_dim=\dimen146 \l__coffin_offset_y_dim=\dimen147 \l__coffin_x_dim=\dimen148 \l__coffin_y_dim=\dimen149 \l__coffin_x_prime_dim=\dimen150 \l__coffin_y_prime_dim=\dimen151 \c_empty_coffin=\box75 \l__coffin_aligned_coffin=\box76 \l__coffin_aligned_internal_coffin=\box77 \l_tmpa_coffin=\box78 \l_tmpb_coffin=\box79 \l__coffin_display_coffin=\box80 \l__coffin_display_coord_coffin=\box81 \l__coffin_display_pole_coffin=\box82 \l__coffin_display_offset_dim=\dimen152 \l__coffin_display_x_dim=\dimen153 \l__coffin_display_y_dim=\dimen154 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3color.sty Package: l3color 2012/08/29 v4156 L3 Experimental color support ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3luatex.sty Package: l3luatex 2012/08/03 v4049 L3 Experimental LuaTeX-specific functions \g__cctab_allocate_int=\count165 \g__cctab_stack_int=\count166 ) (/usr/share/texlive/texmf-dist/tex/latex/l3kernel/l3candidates.sty Package: l3candidates 2013/07/09 v4521 L3 Experimental additions to l3kernel \l__box_top_dim=\dimen155 \l__box_bottom_dim=\dimen156 \l__box_left_dim=\dimen157 \l__box_right_dim=\dimen158 \l__box_top_new_dim=\dimen159 \l__box_bottom_new_dim=\dimen160 \l__box_left_new_dim=\dimen161 \l__box_right_new_dim=\dimen162 \l__box_internal_box=\box83 \l__coffin_bounding_shift_dim=\dimen163 \l__coffin_left_corner_dim=\dimen164 \l__coffin_right_corner_dim=\dimen165 \l__coffin_bottom_corner_dim=\dimen166 \l__coffin_top_corner_dim=\dimen167 \l__coffin_scaled_total_height_dim=\dimen168 \l__coffin_scaled_width_dim=\dimen169 )) (/usr/share/texlive/texmf-dist/tex/latex/l3packages/xparse/xparse.sty Package: xparse 2013/07/12 v4544 L3 Experimental document command parser \l__xparse_current_arg_int=\count167 \l__xparse_m_args_int=\count168 \l__xparse_mandatory_args_int=\count169 \l__xparse_processor_int=\count170 \l__xparse_v_nesting_int=\count171 ) \l_fontspec_script_int=\count172 \l_fontspec_language_int=\count173 \l_fontspec_strnum_int=\count174 \l_fontspec_tmpa_dim=\dimen170 \l_fontspec_tmpb_dim=\dimen171 \l_fontspec_tmpc_dim=\dimen172 Variant \tl_gset:cV already defined; not changing it on line 69 (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-patches.sty Package: fontspec-patches 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLa TeX (/usr/share/texlive/texmf-dist/tex/latex/base/fixltx2e.sty Package: fixltx2e 2006/09/13 v1.1m fixes to LaTeX LaTeX Info: Redefining \em on input line 420. LaTeX Info: Redefining \textsubscript on input line 424. ) LaTeX Info: Redefining \em on input line 22. LaTeX Info: Redefining \emph on input line 30. LaTeX Info: Redefining \- on input line 33. ************************************************* * LaTeX warning: "xparse/redefine-command" * * Redefining document command \oldstylenums with arg. spec. 'm' on line 128. ************************************************* ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \liningnums with arg. spec. 'm' on line 132. ................................................. ) (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec-xetex.sty Package: fontspec-xetex 2013/05/20 v2.3c Font selection for XeLaTeX and LuaLaTe X (/usr/share/texlive/texmf-dist/tex/latex/base/fontenc.sty Package: fontenc 2005/09/27 v1.99g Standard LaTeX package (/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1enc.def File: eu1enc.def 2010/05/27 v0.1h Experimental Unicode font encodings ) LaTeX Font Info: Try loading font information for EU1+lmr on input line 100. (/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmr.fd File: eu1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern )) (/usr/share/texlive/texmf-dist/tex/xelatex/xunicode/xunicode.sty File: xunicode.sty 2011/09/09 v0.981 provides access to latin accents and many other characters in Unicode lower plane (/usr/share/texmf/tex/latex/tipa/t3enc.def File: t3enc.def 2001/12/31 T3 encoding LaTeX Font Info: Redeclaring font encoding T3 on input line 42. LaTeX Font Info: Try loading font information for EU1+lmss on input line 357 . (/usr/share/texlive/texmf-dist/tex/latex/euenc/eu1lmss.fd File: eu1lmss.fd 2009/10/30 v1.6 Font defs for Latin Modern )) \tipaTiiicode=\count175 \tipasavetokens=\toks33 \tipachecktokens=\toks34 ) ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \fontspec with arg. spec. 'O{}m' on line 41. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setmainfont with arg. spec. 'O{}m' on line 46. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setsansfont with arg. spec. 'O{}m' on line 51. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setmonofont with arg. spec. 'O{}m' on line 56. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setmathrm with arg. spec. 'O{}m' on line 65. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setboldmathrm with arg. spec. 'O{}m' on line 69. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setmathsf with arg. spec. 'O{}m' on line 73. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \setmathtt with arg. spec. 'O{}m' on line 77. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newfontfamily with arg. spec. 'mO{}m' on line 96. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newfontface with arg. spec. 'mO{}m' on line 100. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \defaultfontfeatures with arg. spec. 'om' on line . 108. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \addfontfeatures with arg. spec. 'm' on line 144. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newfontfeature with arg. spec. 'mm' on line 156. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newAATfeature with arg. spec. 'mmmm' on line 164. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newICUfeature with arg. spec. 'mmm' on line 172. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \aliasfontfeature with arg. spec. 'mm' on line . 201. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \aliasfontfeatureoption with arg. spec. 'mmm' on . line 203. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newfontscript with arg. spec. 'mm' on line 208. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \newfontlanguage with arg. spec. 'mm' on line 235. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \DeclareFontsExtensions with arg. spec. 'm' on . line 256. ................................................. Variant \prop_gput:cnV already defined; not changing it on line 582 Variant \prop_gput:cnx already defined; not changing it on line 583 \l_fontspec_tmp_int=\count176 LaTeX Info: Redefining \itshape on input line 2087. LaTeX Info: Redefining \slshape on input line 2092. LaTeX Info: Redefining \scshape on input line 2097. LaTeX Info: Redefining \upshape on input line 2102. (/usr/share/texlive/texmf-dist/tex/latex/fontspec/fontspec.cfg))) (/usr/share/texlive/texmf-dist/tex/latex/realscripts/realscripts.sty Package: realscripts 2013/03/18 v0.3c Access OpenType subscripts and superscrip ts ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \fakesubscript with arg. spec. 'm' on line 19. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \fakesuperscript with arg. spec. 'm' on line 22. ................................................. ************************************************* * LaTeX warning: "xparse/redefine-command" * * Redefining document command \textsubscript with arg. spec. 's' on line 25. ************************************************* ************************************************* * LaTeX warning: "xparse/redefine-command" * * Redefining document command \textsuperscript with arg. spec. 's' on line 28. ************************************************* ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \realsubscript with arg. spec. 'm' on line 45. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \realsuperscript with arg. spec. 'm' on line 60. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \textsubsuperscript with arg. spec. 'sO{l}mm' on . line 138. ................................................. ................................................. . LaTeX info: "xparse/define-command" . . Defining document command \textsupersubscript with arg. spec. 'sO{l}mm' on . line 143. ................................................. \subsupersep=\dimen173 ) (/usr/share/texlive/texmf-dist/tex/latex/metalogo/metalogo.sty Package: metalogo 2010/05/29 v0.12 Extended TeX logo macros \xl@everylogo=\toks35 \xl@@everylogo=\toks36 LaTeX Info: Redefining \TeX on input line 193. LaTeX Info: Redefining \LaTeX on input line 202. LaTeX Info: Redefining \LaTeXe on input line 219. ) \xxt@tempbox=\box84 ) \g__file_internal_ior=\read3 \g_fontspec_family_cmunbx.ttf_int=\count177 ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: . . * 'normal' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunrm.ttf]/ICU:script=latn;language=DFLT; " . . * 'small caps' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunrm.ttf]/ICU:script=latn;language=DFLT; +smcp;" . . * 'bold' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbx.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold small caps' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbx.ttf]/ICU:script=latn;language=DFLT; +smcp;" . . * 'italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunti.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbi.ttf]/ICU:script=latn;language=DFLT; " ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: . . * 'normal' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntt.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntb.ttf]/ICU:script=latn;language=DFLT; " . . * 'italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunit.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntx.ttf]/ICU:script=latn;language=DFLT; " ................................................. (./main.aux) \openout1 = `main.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 26. LaTeX Font Info: Try loading font information for TS1+cmr on input line 26. (/usr/share/texlive/texmf-dist/tex/latex/base/ts1cmr.fd File: ts1cmr.fd 1999/05/25 v2.5h Standard LaTeX font definitions ) LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for PU/pdf/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for T3/cmr/m/n on input line 26. LaTeX Font Info: Try loading font information for T3+cmr on input line 26. (/usr/share/texmf/tex/latex/tipa/t3cmr.fd File: t3cmr.fd 2001/12/31 TIPA font definitions ) LaTeX Font Info: ... okay on input line 26. LaTeX Font Info: Checking defaults for EU1/lmr/m/n on input line 26. LaTeX Font Info: ... okay on input line 26. \AtBeginShipoutBox=\box85 Package hyperref Info: Link coloring OFF on input line 26. (/usr/share/texlive/texmf-dist/tex/latex/hyperref/nameref.sty Package: nameref 2012/10/27 v2.43 Cross-referencing by name of section (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/gettitlestring.sty Package: gettitlestring 2010/12/03 v1.4 Cleanup title references (HO) ) \c@section@level=\count178 ) LaTeX Info: Redefining \ref on input line 26. LaTeX Info: Redefining \pageref on input line 26. LaTeX Info: Redefining \nameref on input line 26. (./main.out) (./main.out) \@outlinefile=\write4 \openout4 = `main.out'. Package tocstyle Info: prepare \l@part for redefinition on input line 26. Package tocstyle Info: prepare \l@chapter for redefinition on input line 26. Package tocstyle Info: prepare \l@section for redefinition on input line 26. LaTeX Font Info: Try loading font information for OT1+lmr on input line 26. (/usr/share/texmf/tex/latex/lm/ot1lmr.fd File: ot1lmr.fd 2009/10/30 v1.6 Font defs for Latin Modern ) LaTeX Font Info: Try loading font information for OML+lmm on input line 26. (/usr/share/texmf/tex/latex/lm/omllmm.fd File: omllmm.fd 2009/10/30 v1.6 Font defs for Latin Modern ) LaTeX Font Info: Try loading font information for OMS+lmsy on input line 26. (/usr/share/texmf/tex/latex/lm/omslmsy.fd File: omslmsy.fd 2009/10/30 v1.6 Font defs for Latin Modern ) LaTeX Font Info: Try loading font information for OMX+lmex on input line 26. (/usr/share/texmf/tex/latex/lm/omxlmex.fd File: omxlmex.fd 2009/10/30 v1.6 Font defs for Latin Modern ) LaTeX Font Info: External font `lmex10' loaded for size (Font) <10.95> on input line 26. LaTeX Font Info: External font `lmex10' loaded for size (Font) <8> on input line 26. LaTeX Font Info: External font `lmex10' loaded for size (Font) <6> on input line 26. LaTeX Font Info: Try loading font information for OT1+ptm on input line 26. (/usr/share/texlive/texmf-dist/tex/latex/psnfss/ot1ptm.fd File: ot1ptm.fd 2001/06/04 font definitions for OT1/ptm. ) LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10.95> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 26. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <8> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 26. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <6> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 26. LaTeX Font Info: Try loading font information for U+msa on input line 26. (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsa.fd File: umsa.fd 2013/01/14 v3.01 AMS symbols A ) LaTeX Font Info: Try loading font information for U+msb on input line 26. (/usr/share/texlive/texmf-dist/tex/latex/amsfonts/umsb.fd File: umsb.fd 2013/01/14 v3.01 AMS symbols B ) LaTeX Font Info: Try loading font information for U+wasy on input line 26. (/usr/share/texlive/texmf-dist/tex/latex/wasysym/uwasy.fd File: uwasy.fd 2003/10/30 v2.0 Wasy-2 symbol font definitions ) Package tocstyle Info: prepare \l@subsection for redefinition on input line 26. Package tocstyle Info: prepare \l@table for redefinition on input line 26. Package tocstyle Info: prepare \l@figure for redefinition on input line 26. ABD: EverySelectfont initializing macros LaTeX Info: Redefining \selectfont on input line 26. exclude: exclude: exclude: exclude: exclude: exclude: exclude: LaTeX Font Info: External font `lmex10' loaded for size (Font) <14.4> on input line 36. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <14.4> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 36. LaTeX Warning: No \author given. [1 ] LaTeX Font Info: External font `lmex10' loaded for size (Font) <10> on input line 36. LaTeX Font Info: External font `lmex10' loaded for size (Font) <7.4> on input line 36. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <10> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 36. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7.4> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 36. [2 ] (./main.toc number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. number indent by \l@... (toc, 0): 0.0pt text indent by \l@... (toc, 0): 16.42499pt number indent by parent (toc, 0): 0.0pt text indent calculated (toc, 0): 11.77124pt number indent calculated (toc, 0): 0.0pt number indent by \l@... (toc, 0): 0.0pt text indent by \l@... (toc, 0): 16.42499pt number indent by parent (toc, 0): 0.0pt text indent calculated (toc, 0): 11.77124pt number indent calculated (toc, 0): 0.0pt number indent by \l@... (toc, 0): 0.0pt text indent by \l@... (toc, 0): 16.42499pt number indent by parent (toc, 0): 0.0pt text indent calculated (toc, 0): 11.77124pt number indent calculated (toc, 0): 0.0pt number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt number indent by \l@... (toc, 1): 16.42499pt text indent by \l@... (toc, 1): 25.18501pt number indent by parent (toc, 1): 11.77124pt text indent calculated (toc, 1): 19.46909pt number indent calculated (toc, 1): 16.42499pt ) \tf@toc=\write5 \openout5 = `main.toc'. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmainfont' on input line 51. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmonofont' on input line 51. \g_fontspec_family_cmunrm.ttf_int=\count179 ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: . . * 'normal' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunrm.ttf]/ICU:script=latn;language=DFLT; " . . * 'small caps' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunrm.ttf]/ICU:script=latn;language=DFLT; +smcp;" . . * 'bold' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbx.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold small caps' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbx.ttf]/ICU:script=latn;language=DFLT; +smcp;" . . * 'italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunti.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbi.ttf]/ICU:script=latn;language=DFLT; " ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: . . * 'normal' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntt.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntb.ttf]/ICU:script=latn;language=DFLT; " . . * 'italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunit.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntx.ttf]/ICU:script=latn;language=DFLT; " ................................................. Underfull \hbox (badness 1215) in paragraph at lines 53--54 \EU1/cmunrm.ttf(0)/m/n/10.95 A computer system consists of different types of c omponents like hardware, soft- [] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. \g_fontspec_family_cmunti.ttf_int=\count180 ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: . . * 'normal' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunrm.ttf]/ICU:script=latn;language=DFLT; " . . * 'small caps' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunrm.ttf]/ICU:script=latn;language=DFLT; +smcp;" . . * 'bold' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbx.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold small caps' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbx.ttf]/ICU:script=latn;language=DFLT; +smcp;" . . * 'italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunti.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunbi.ttf]/ICU:script=latn;language=DFLT; " ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: . . * 'normal' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntt.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntb.ttf]/ICU:script=latn;language=DFLT; " . . * 'italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmunit.ttf]/ICU:script=latn;language=DFLT; " . . * 'bold italic' with NFSS spec.: . . <->"[/usr/share/fonts/truetype/cmu/cmuntx.ttf]/ICU:script=latn;language=DFLT; " ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [1 ] ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [2] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [3] ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. Underfull \hbox (badness 1371) in paragraph at lines 179--180 []\EU1/cmunti.ttf(0)/m/n/10.95 Layered operating system- separates system funct ionality into hierarchical lay- [] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [4] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [5] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [6] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmainfont' on input line 354. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmonofont' on input line 354. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [7] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [8] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [9] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [10] ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmainfont' on input line 512. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmonofont' on input line 512. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [11] [12] ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [13] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [14] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmainfont' on input line 714. Package hyperref Warning: Token not allowed in a PDF string (Unicode): (hyperref) removing `\setmonofont' on input line 714. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [15] LaTeX Font Info: Try loading font information for U+mvs on input line 744. (/usr/share/texlive/texmf-dist/tex/latex/marvosym/umvs.fd) ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [16] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [17] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [18] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [19] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [20] ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [21] ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(0)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunti.ttf(1)' created for font 'cmunti.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(0)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunbx.ttf(1)' created for font 'cmunbx.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(0)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.t tf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]. . . This font family consists of the following shapes: ................................................. ................................................. . fontspec info: "defining-font" . . Font family 'cmunrm.ttf(1)' created for font 'cmunrm.ttf' with options . [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.t tf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]. . . This font family consists of the following shapes: ................................................. [22] Chapter 1. LaTeX Font Info: External font `lmex10' loaded for size (Font) <9> on input line 1032. LaTeX Font Info: External font `lmex10' loaded for size (Font) <7> on input line 1032. LaTeX Font Info: External font `lmex10' loaded for size (Font) <5> on input line 1032. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <9> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 1032. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <7> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 1032. LaTeX Font Info: Font shape `OT1/ptm/bx/n' in size <5> not available (Font) Font shape `OT1/ptm/b/n' tried instead on input line 1032. [23 ] [24 ] (./main.lof) \tf@lof=\write6 \openout6 = `main.lof'. [25] [26] Underfull \vbox (badness 10000) detected at line 1062 [] [27] Class scrbook Warning: Using fallback calculation to setup font sizes (scrbook) for basic size `9pt' on input line 1063. Package typearea Warning: Bad type area settings! (typearea) The detected line width is about 71% (typearea) larger than the heuristically detected line width. (typearea) You should e.g. decrease DIV, increase fontsize (typearea) or change papersize. Package typearea Info: These are the values describing the layout: (typearea) DIV = 90 (typearea) BCOR = 34.1433pt (typearea) \paperwidth = 597.50793pt (typearea) \textwidth = 544.58585pt (typearea) DIV departure = -71% (typearea) \evensidemargin = -59.7508pt (typearea) \oddsidemargin = -31.8671pt (typearea) \paperheight = 845.04694pt (typearea) \textheight = 818.99794pt (typearea) \topmargin = -92.58049pt (typearea) \headheight = 13.49995pt (typearea) \headsep = 16.19995pt (typearea) \topskip = 9.0pt (typearea) \footskip = 37.7999pt (typearea) \baselineskip = 10.79997pt (typearea) on input line 1063. Package typearea Warning: Typearea changed! (typearea) You should do this only at preamble, because only (typearea) \begin{document} calculates output dimensions! (typearea) Trying to calculate new output dimensions, but (typearea) this is only a dirty hack on input line 1063. Package typearea Warning: Bad type area settings! (typearea) The detected line width is about 82% (typearea) larger than the heuristically detected line width. (typearea) You should e.g. decrease DIV, increase fontsize (typearea) or change papersize. Package typearea Info: These are the values describing the layout: (typearea) DIV = 90 (typearea) BCOR = 0.0pt (typearea) \paperwidth = 597.50793pt (typearea) \textwidth = 577.591pt (typearea) DIV departure = -82% (typearea) \evensidemargin = -58.99203pt (typearea) \oddsidemargin = -65.63101pt (typearea) \paperheight = 845.04694pt (typearea) \textheight = 818.99794pt (typearea) \topmargin = -92.58049pt (typearea) \headheight = 13.49995pt (typearea) \headsep = 16.19995pt (typearea) \topskip = 9.0pt (typearea) \footskip = 37.7999pt (typearea) \baselineskip = 10.79997pt (typearea) on input line 1063. Package typearea Warning: Typearea changed! (typearea) You should do this only at preamble, because only (typearea) \begin{document} calculates output dimensions! (typearea) Trying to calculate new output dimensions, but (typearea) this is only a dirty hack on input line 1063. [28 ] Chapter 2. [29] [30] [31] Package atveryend Info: Empty hook `BeforeClearDocument' on input line 1516. Package atveryend Info: Empty hook `AfterLastShipout' on input line 1516. (./main.aux) Package atveryend Info: Empty hook `AtVeryEndDocument' on input line 1516. Package atveryend Info: Empty hook `AtEndAfterFileList' on input line 1516. Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 1516. ) Here is how much of TeX's memory you used: 28197 strings out of 493934 522622 string characters out of 6150767 713558 words of memory out of 5000000 30938 multiletter control sequences out of 15000+600000 60132 words of font info for 159 fonts, out of 8000000 for 9000 1177 hyphenation exceptions out of 8191 51i,11n,57p,1732b,621s stack positions out of 5000i,500n,10000p,200000b,80000s Output written on main.pdf (33 pages).

main/texput.log

This is XeTeX, Version 3.1415926-2.5-0.9999.3 (TeX Live 2013/Debian) (format=xelatex 2013.11.8) 25 JAN 2014 22:10 entering extended mode restricted \write18 enabled. %&-line parsing enabled. **main. ! Emergency stop. <*> main. *** (job aborted, file error in nonstop mode) Here is how much of TeX's memory you used: 3 strings out of 493934 15 string characters out of 6150767 51977 words of memory out of 5000000 3412 multiletter control sequences out of 15000+600000 3640 words of font info for 14 fonts, out of 8000000 for 9000 1144 hyphenation exceptions out of 8191 0i,0n,0p,1b,6s stack positions out of 5000i,500n,10000p,200000b,80000s No pages of output.

headers/title.tex~

\publishers{en.wikibooks.org} \title{Security Architecture and Design/Print Version}

main/main.toc

\select@language {english} \contentsline {section}{\numberline {0.1}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Computer Systems Architecture}{1}{section.0.1} \contentsline {subsection}{\numberline {0.1.1}Central Processing Unit (CPU)}{1}{subsection.0.1.1} \contentsline {subsection}{\numberline {0.1.2}Storage}{2}{subsection.0.1.2} \contentsline {subsection}{\numberline {0.1.3}Operating Systems}{4}{subsection.0.1.3} \contentsline {subsection}{\numberline {0.1.4}Firmware}{6}{subsection.0.1.4} \contentsline {subsection}{\numberline {0.1.5}Virtual Machines}{7}{subsection.0.1.5} \contentsline {section}{\numberline {0.2}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Systems Security Architecture}{7}{section.0.2} \contentsline {subsection}{\numberline {0.2.1}Security Design Principles}{7}{subsection.0.2.1} \contentsline {subsection}{\numberline {0.2.2}Trusted Computing Base}{8}{subsection.0.2.2} \contentsline {subsection}{\numberline {0.2.3}Security Modes of Operation}{10}{subsection.0.2.3} \contentsline {section}{\numberline {0.3}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Models}{11}{section.0.3} \contentsline {subsection}{\numberline {0.3.1}Lattice Models}{11}{subsection.0.3.1} \contentsline {subsection}{\numberline {0.3.2}State Machine Models}{12}{subsection.0.3.2} \contentsline {subsection}{\numberline {0.3.3}Noninterference Models}{12}{subsection.0.3.3} \contentsline {subsection}{\numberline {0.3.4}Bell—LaPadula Confidentiality Model}{12}{subsection.0.3.4} \contentsline {subsection}{\numberline {0.3.5}Biba Integrity Model}{13}{subsection.0.3.5} \contentsline {subsection}{\numberline {0.3.6}Clark—Wilson Integrity Model}{13}{subsection.0.3.6} \contentsline {subsection}{\numberline {0.3.7}Access Control Matrix}{14}{subsection.0.3.7} \contentsline {subsection}{\numberline {0.3.8}Information Flow Models}{14}{subsection.0.3.8} \contentsline {subsection}{\numberline {0.3.9}Graham—Denning Model}{14}{subsection.0.3.9} \contentsline {subsection}{\numberline {0.3.10}Harrison—Ruzzo—Ullman Model}{15}{subsection.0.3.10} \contentsline {subsection}{\numberline {0.3.11}Brewer—Nash (Chinese Wall)}{15}{subsection.0.3.11} \contentsline {section}{\numberline {0.4}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Security Product Evaluation Methods and Criteria}{15}{section.0.4} \contentsline {subsection}{\numberline {0.4.1}Rainbow Series}{16}{subsection.0.4.1} \contentsline {subsubsection}{Orange Book or TCSEC}{16}{section*.2} \contentsline {subsubsection}{Red Book or TNI}{18}{section*.3} \contentsline {subsection}{\numberline {0.4.2}\bfseries \setmainfont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmunrm.ttf,BoldFont=cmunbx.ttf,ItalicFont=cmunti.ttf,BoldItalicFont=cmunbi.ttf]{cmunbx.ttf}\setmonofont [Path=/usr/share/fonts/truetype/cmu/,UprightFont=cmuntt.ttf,BoldFont=cmuntb.ttf,ItalicFont=cmunit.ttf,BoldItalicFont=cmuntx.ttf]{cmunbx.ttf}\bfseries Information Technology Security Evaluation Criteria (ITSEC)}{19}{subsection.0.4.2} \contentsline {subsection}{\numberline {0.4.3}Common Criteria}{20}{subsection.0.4.3} \contentsline {subsection}{\numberline {0.4.4}Certification and Accreditation}{22}{subsection.0.4.4} \contentsline {chapter}{\numberline {1}Contributors}{23}{chapter.1} \contentsline {chapter}{List of Figures}{25}{chapter*.4} \contentsline {chapter}{\numberline {2}Licenses}{29}{chapter.2} \contentsline {section}{\numberline {2.1}GNU GENERAL PUBLIC LICENSE}{29}{section.2.1} \contentsline {section}{\numberline {2.2}GNU Free Documentation License}{30}{section.2.2} \contentsline {section}{\numberline {2.3}GNU Lesser General Public License}{31}{section.2.3}