[PDF] A Simple PDF File - Africa University



Previous PDF Next PDF







2021 Form W-4

Form W-4 (Rev December 2020) Department of the Treasury Internal Revenue Service Employee’s Withholding Certificate Complete Form W-4 so that your employer can withhold the correct federal income tax from your pay



A Simple PDF File - Africa University

A Simple PDF File This is a small demonstration pdf file - just for use in the Virtual Mechanics tutorials More text And more text And more text And more text And more text And more text And more text And more text And more text And more text And more text Boring, zzzzz And more text And more text And more text And more text



The Adventures of Huckleberry Finn

CHAPTER ONE 1 HUCKLEBERRY FINN Scene: The Mississippi Valley Time: Forty to fifty years ago Y ou don’t know about me, without you have read a book by the name of The Adventures of Tom Sawyer; but that ain’t no matter



2021 Publication 926

irs • • • • • •

[PDF] pdf aristote politique

[PDF] pdf chimie analytique

[PDF] pdf citations d'amour

[PDF] pdf citations et proverbes

[PDF] pdf citations litteraires

[PDF] pdf dictionnaire français arabe

[PDF] pdf fiche methode comment apprendre un cours

[PDF] pdf géographie

[PDF] pdf outils de développement communautaire

[PDF] pdf philosophie et religion

[PDF] pdf physique chimie terminale s

[PDF] pdf physique chimie terminale s hachette

[PDF] pdf poeme d amour

[PDF] pdf poeme d'amour

[PDF] pdf présentation d'une agence de communication

Sample PDF Document

Robert Maron

Grzegorz Grudzi

´nski

February 20, 1999

2

Contents1 Template51.1 How to compile a.texfile to a.pdffile. . . . . . . . . . . . .51.1.1 Tools. . . . . . . . . . . . . . . . . . . . . . . . . . . .51.1.2 How to use the tools. . . . . . . . . . . . . . . . . . . .51.2 How to write a document. . . . . . . . . . . . . . . . . . . . . .61.2.1 The main document. . . . . . . . . . . . . . . . . . . . .61.2.2 Chapters. . . . . . . . . . . . . . . . . . . . . . . . . .61.2.3 Spell-checking. . . . . . . . . . . . . . . . . . . . . . .61.3 LATEX and pdfLATEX capabilities. . . . . . . . . . . . . . . . . . .71.3.1 Overview. . . . . . . . . . . . . . . . . . . . . . . . . .71.3.2 LATEX. . . . . . . . . . . . . . . . . . . . . . . . . . . .71.3.3 pdfLATEX. . . . . . . . . . . . . . . . . . . . . . . . . .71.3.4 Examples. . . . . . . . . . . . . . . . . . . . . . . . . .73

4CONTENTS

Chapter 1

Template

1.1 How to compile a.texfile to a.pdffile

1.1.1 Tools

To process the files you (may) need:pdflatex(for example fromtetexpackage0.9-6, which you can

get fromRed Hat 5.2);acroread(a PDF viewer, available fromhttp://www.adobe.com/);ghostscript5.10(forexamplefromRedHatContrib)andghostview

orgv(from RedHat Linux);efaxpackage could be useful, if you plan to fax documents.

1.1.2 How to use the tools

Follow these steps:1.put all source.texfiles in one directory, then chdir to the directory (or put some of them in the L

ATEXsearch path - if you know how to do this);2.run"pdflatex file.tex"onthemainfileofthedocumentthreetimes

(three - to prepare valid table of contents);3.to see or print the result useacroread(unfortunately some versions of

acroreadmay produce PostScript which is too complex), or5

6CHAPTER 1. TEMPLATE4.runghostscript: "gv file.pdf" to display or:

"gs -dNOPAUSE -sDEVICE=pswrite -q -dBATCH -sOutputFile=file.ps file.pdf"

to produce a PostScript file;5.run "fax send phone-number file.ps" as root to send a fax, or - if you

know how to do this - modify thefaxscript to be able to fax.pdffiles directly (you have to insert "|%PDF*" somewhere...).

1.2 How to write a document

1.2.1 The main document

Choose the name of the document, saydocument. Copytemplate.texto document.tex, then edit it, change the title, the authors and set proper in- clude(s) for all the chapters.

1.2.2 Chapters

Each chapter should be included in the main document as a separate file. You can choose any name for the file, but we suggest adding a suffix to the name of the main file. For our example we use the file namedocument_chapter1.tex. First, copytemplate_chapter.textodocument_chapter1.tex and add the line\include{document_chapter1} in thedocument.tex, then editdocument_chapter1.tex, change the chapter title and edit the body of the chapter appropriately.

1.2.3 Spell-checking

Douse a spell-checker, please!

You may also want to check grammar, style and so on. Actually you should do it (if you have enough spare time). But youmustcheck spelling! You can use theispellpackage for this, from withinemacs, or from the command line:ispell -t document_chapter1.tex

1.3. LATEX AND PDFLATEX CAPABILITIES71.3 LATEX and pdfLATEX capabilities

1.3.1 Overview

First you edit your source.texfile. In LATEX you compile it using thelatex command to a.dvifile (which stands for device-independent). The.dvifile can be converted to any device-dependent format you like using an appropriate driver, for exampledvips. When producing.pdffiles you should usepdflatex, which produces di- rectly.pdffiles out of.texsources. Note that in the.texfile you may need to use some PDF specific packages. For viewing.texfiles use your favourite text editor, for viewing.dvifiles under X Window System usexdvicommand,.psfiles can be viewed withgv (orghostview) and.pdffiles withacroread,gvorxpdf.

1.3.2 L

ATEX

A lot of examples can be found in this document.

You should also printdoc/latex/general/latex2e.dvianddoc/latex/general/lshort2e.dvi from yourtetexdistribution (usually in/usr/share/texmfor/usr/lib/texmf/texmf).

1.3.3 pdfL

ATEX Consultdoc/pdftex/manual.pdffrom yourtetexdistribution for more details. Very useful informations can be found in thehyperrefandgraphics package manuals:doc/latex/hyperref/manual.pdfanddoc/latex/graphics/grfguide.dvi.

1.3.4 Examples

ReferencesMIMUW

8CHAPTER 1. TEMPLATEHyperlinks

This is a target.And this is a link.Dashes, etc.

There are three kinds of horizontal dash:- (use inside words; for example "home-page", "X-rated")- (use this one between numbers; for example "pages 2-22")- (use this one as a sentence separator - like here)

There are other ways to do this, see the documentation forinputencpack- age.

Reserved characters

Some characters have some special meaning, thus cannot be entered in the usual way.$ & % # _ { }n˜ ˆ

1.3. LATEX AND PDFLATEX CAPABILITIES9Math12,12n, ...i1,i2n, ...12,2n23, ...,,

, ...!,),,6=,2,?, ...p2, ...2 + 2, ... For more examples and symbols see chapter 3 oflshort2e.dvi.

FontsRomanEmphasisMedium weight - the defaultBoldfaceUprightSlantedSans serifSMALL CAPSTypewriterand sizes:-tiny-scriptsize-footnotesize-small-normalsize

10CHAPTER 1. TEMPLATE-large-Large-LARGE-huge-Huge

quotesdbs_dbs8.pdfusesText_14