aspose_pdf_cloud 18.4.0 → 18.5.0

Sign up to get free protection for your applications and to get access to all the features.
Binary file
@@ -0,0 +1,12 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" height="400" width="600">
2
+ <g>
3
+ <polygon fill="blue" visibility="visible" stroke="green" stroke-width="5"
4
+ points="250, 75 279,161 369,161 297,215
5
+ 323,301 250,250 177,301 203,215
6
+ 131,161 221,161" />
7
+
8
+ <polygon fill="lime" visibility="hidden"
9
+ points="450,75 558,137.5 558,262.5
10
+ 450,325 342,262.6 342,137.5"/>
11
+ </g>
12
+ </svg>
Binary file
@@ -0,0 +1,305 @@
1
+ %% Introduction to latex facilities.
2
+ %% Sat 31 Dec 2005
3
+ %% Stephen Eglen.
4
+
5
+ %% Text following a percent sign (%) until the end of line is treated
6
+ %% as a comment.
7
+
8
+ \documentclass{article}
9
+
10
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
+ %% This section is called the preamble, where we can specify which
12
+ %% latex packages we required. Most (but not of all) of the packages
13
+ %% below should be fairly standard in most latex documents. The
14
+ %% exception is xspace and the new \latex command, which you probably
15
+ %% do not need.
16
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
17
+
18
+ %% Better math support:
19
+ \usepackage{amsmath}
20
+
21
+ %% Bibliography style:
22
+ \usepackage{mathptmx} % Use the Times font.
23
+ \usepackage{graphicx} % Needed for including graphics.
24
+ \usepackage{url} % Facility for activating URLs.
25
+
26
+ %% Set the paper size to be A4, with a 2cm margin
27
+ %% all around the page.
28
+ \usepackage[a4paper,margin=2cm]{geometry}
29
+
30
+ %% Natbib is a popular style for formatting references.
31
+ \usepackage{natbib}
32
+ %% bibpunct sets the punctuation used for formatting citations.
33
+ \bibpunct{(}{)}{;}{a}{,}{,}
34
+
35
+ %% textcomp provides extra control sequences for accessing text symbols:
36
+ \usepackage{textcomp}
37
+ \newcommand*{\micro}{\textmu}
38
+ %% Here, we define the \micro command to print a text "mu".
39
+ %% "\newcommand" returns an error if "\micro" is already defined.
40
+
41
+ %% This is an example of a new macro that I've created to save me
42
+ %% having to type \LaTeX each time. The xspace command provides space
43
+ %% after the word LaTeX where appropriate.
44
+ \usepackage{xspace}
45
+ \providecommand*{\latex}{\LaTeX\xspace}
46
+ %% "\providecommand" does nothing if "\latex" is already defined.
47
+
48
+
49
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50
+ %% Start of the document.
51
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
52
+
53
+ \begin{document}
54
+
55
+ \author{Stephen J. Eglen\\
56
+ Department of Applied Mathematics and Theoretical Physics\\
57
+ University of Cambridge\\
58
+ Wilberforce Road\\
59
+ Cambridge CB3 0WA U.K.}
60
+ \date{\today}
61
+ \title{A short example of how to use \latex for scientific reports}
62
+ \maketitle
63
+
64
+ \begin{abstract}
65
+ The purpose of this short document is to provide a brief overview of
66
+ the facilities that \latex offers for formatting scientific reports.
67
+ Furthermore, the source files for regenerating this report are
68
+ freely available so that users can easily start writing their own
69
+ reports using \latex.
70
+ \end{abstract}
71
+
72
+ \section{Introduction}
73
+
74
+ \latex is a typesetting program; given an input file with formatting
75
+ instructions (e.g intro.tex), the program will create your document in
76
+ one of several formats (DVI, Postscript or PDF). It is therefore not
77
+ a WYSIWYG word processor. \latex is known as a logical markup
78
+ language, similar for example to HTML, so that you describe a piece of
79
+ text as a ``section heading'' rather than saying that it should be
80
+ formatted in a certain way. It has excellent facilities for
81
+ typesetting mathematics, and handles large documents (such as theses)
82
+ well. The aim of this document is not to provide an overview of
83
+ \latex, since many other guides have already been written (see
84
+ Section~\ref{sec:summary}). Instead, it has been written primarily to
85
+ provide simple workable examples that you can cut and paste to help
86
+ you get started with \latex. The examples have been selected to be
87
+ those most likely to be useful when writing a scientific report. This
88
+ document is best read by comparing the source code with the resulting
89
+ output.
90
+
91
+ \section{Running \latex}
92
+
93
+ The files to accompany this paper are at:
94
+ \url{http://www.damtp.cam.ac.uk/user/eglen/texintro}. Get the
95
+ following files and put them into a new directory.
96
+
97
+ \begin{enumerate}
98
+ \item \url{intro.tex}: the main \latex document.
99
+ \item \url{example.bib}: a short bibliography.
100
+ \item \url{sigmoid.ps}: example postscript image.
101
+ \item \url{sigmoid.pdf}: example PDF image.
102
+ \end{enumerate}
103
+
104
+ Change directory to where you stored the files and type the
105
+ following (ignoring comments placed after \#\#):
106
+
107
+ \begin{verbatim}
108
+ latex intro ## Run latex 1st time.
109
+ bibtex intro ## Extract required references
110
+ latex intro ## Run latex 2nd to resolve references.
111
+ latex intro ## Probably need to run latex a 3rd time.
112
+ xdvi intro ## View the DVI (device independent) file.
113
+ dvips -o intro.ps intro ## Create a postscript file for printing.
114
+ \end{verbatim}
115
+
116
+ You will notice that you run latex several times here; this is so that
117
+ references can be resolved, and references can be extracted from your
118
+ bibtex file. After running latex, you will be told if you need to run
119
+ it again to resolve references. After a while, you will get the idea
120
+ of how many times you need to run latex to resolve all your
121
+ references.
122
+
123
+ If instead you would like to generate PDF files (see
124
+ Section~\ref{sec:graphics} for a discussion of file formats for
125
+ included images), you can try the following shorter sequence:
126
+
127
+ \begin{verbatim}
128
+ pdflatex intro
129
+ bibtex intro
130
+ pdflatex intro
131
+ pdflatex intro
132
+ xpdf intro.pdf ## View the resulting PDF
133
+ \end{verbatim}
134
+
135
+ Whether you prefer to generate DVI or PDF is up to you. The xdvi
136
+ viewer has some nice features, such as it can reload your document
137
+ easily and has a ``magnifying glass'' that is activated by the mouse.
138
+ On the other hand, xpdf will display the document more accurately as
139
+ it will be printed.
140
+
141
+ \section{Tables}
142
+
143
+ Tables are relatively straightforward to generate. Note that tables
144
+ and figures are not always placed exactly where you wish, as
145
+ they can \textit{float} to other parts of the document. Rather than
146
+ trying to battle with \latex as to where they are placed, concentrate
147
+ first on getting the right content and let \latex worry about the
148
+ positioning. Instead, use labels to your tables to refer to them.
149
+ See Table~\ref{tab:simple} and Table~\ref{tab:pars} for examples.
150
+
151
+ \begin{table}
152
+ \centering
153
+ \begin{tabular}{ccc}
154
+ year & min temp (\textdegree C) & max temp (\textdegree C)\\
155
+ \hline
156
+ 1970 & $-5$ & 35\\
157
+ 1975 & $-7$ & 29\\
158
+ 1980 & $-3$ & 30\\
159
+ 1985 & $-2$ & 32\\
160
+ \end{tabular}
161
+ \caption{Fictional minimal and maximal temperatures recorded in
162
+ Cambridge over several years.}
163
+ \label{tab:simple}
164
+ \end{table}
165
+ %% Why are the negative numbers above enclosed in math mode?
166
+ %% Hint: consider the difference between "-" in text and in math.
167
+
168
+ \begin{table}[htbp]
169
+ \centering
170
+ \begin{tabular}{lccc}\\ \hline
171
+ & \multicolumn{1}{c}{$\phi$ (\micro m)}
172
+ & \multicolumn{1}{c}{$\alpha$}
173
+ & $\delta_{12}$ (\micro m)\\ \hline
174
+ W81S1\\
175
+ $h_{11}(u)$ & 67.94 & 7.81\\
176
+ $h_{22}(u)$ & 66.27 & 5.40\\
177
+ $h_{12}(u)$ & & &18\\
178
+ \hline
179
+ M623\\
180
+ $h_{11}(u)$ &112.79 & 3.05\\
181
+ $h_{22}(u)$ & 65.46 & 8.11\\
182
+ $h_{12}(u)$ & & &20\\
183
+ \hline
184
+ \end{tabular}
185
+ \caption{Summary of parameter estimates for the univariate
186
+ functions $h_{11}(u)$, $h_{22}(u)$ and the bivariate function
187
+ $h_{12}(u)$. For the univariate fits, $\alpha$ and $\phi$ are
188
+ least-square estimates (assuming $\delta$ was fixed at 15 \micro m).
189
+ The final column gives the
190
+ maximum likelihood estimate of $\delta_{12}$ assuming that the
191
+ interaction between types is simple inhibition.
192
+ \label{tab:pars}}
193
+ \end{table}
194
+
195
+
196
+ \section{Bibliography management}
197
+
198
+ Scientific reports normally require a section where your references
199
+ are listed. Bibtex is an excellent system for maintaining references,
200
+ especially for large documents. Each reference needs a unique key;
201
+ you can then refer to the reference in your \latex document by using
202
+ this key within a cite command.
203
+
204
+ Take care when formatting your references, especially when it comes to
205
+ writing authors names and the case of letters in journal titles. In
206
+ our examples, the files are found in \url{example.bib}. As an example
207
+ of a citation, see \citep{ihaka1996} or \citep{ihaka1996,venables1999}.
208
+
209
+ Bibtex is flexible enough to format your references in a wide number
210
+ of different styles to suit your needs. In this file I have used the
211
+ ``natbib'' package, which is suitable for the natural sciences.
212
+ Depending on the type of cite command you get (and the package that
213
+ you use for citations), you can get different styles of citation. See
214
+ Table~\ref{tab:cite} for some examples.
215
+
216
+ \begin{table}
217
+ \centering
218
+ \begin{tabular}{ll}
219
+ \hline
220
+ command & result\\ \hline
221
+ \verb+\citep{ihaka1996}+ & \citep{ihaka1996}\\
222
+ \verb+\citet{ihaka1996}+ & \citet{ihaka1996}\\
223
+ \verb+\citep[see][p. 300]{ihaka1996}+ &
224
+ \citep[see][p. 300]{ihaka1996}
225
+ \\
226
+ \verb+\citeauthor{ihaka1996}+ & \citeauthor{ihaka1996}
227
+ \\
228
+ \verb+\citeyear{ihaka1996}+ & \citeyear{ihaka1996}
229
+ \\
230
+ \hline
231
+ \end{tabular}
232
+ \caption{Examples of different citation commands available in the
233
+ natbib package.}
234
+ \label{tab:cite}
235
+ \end{table}
236
+
237
+
238
+ \section{Graphics}
239
+ \label{sec:graphics}
240
+
241
+ \latex can include images in one of several format, depending on
242
+ whether you use latex (postscript format required) or pdflatex (either
243
+ jpeg, png or pdf required). Figures can be included either at their
244
+ natural size, or you can specify e.g. the figure width.
245
+ Figure~\ref{fig:example} shows an example image which intentionally
246
+ looks slightly different depending on whether you compile the document
247
+ with latex or pdflatex. Note that in this example the suffix of the
248
+ image file is not included so that this document compiles under both
249
+ latex and pdflatex.
250
+
251
+ \begin{figure}
252
+ \centering
253
+ \includegraphics[width=6cm]{sigmoid}
254
+ \caption{Example of a sigmoidal curve generated by the R programming
255
+ environment. The title above the curve indicates whether you have
256
+ included the postscript or the pdf version of the figure.}
257
+ \label{fig:example}
258
+ \end{figure}
259
+
260
+ \section{Mathematics}
261
+
262
+ \latex can format mathematics with ease, either in line, such as
263
+ $x \times y$, or on separate lines, such as:
264
+ \[ x^2 +y^2 = z^2 \]
265
+
266
+ If you are writing several lines of equations, you can use statements
267
+ like the following:
268
+
269
+ \begin{align}
270
+ b(t) & = s(t) - \int_{0}^{T} a(t') \cdot i(T-t') dt'
271
+ \\
272
+ a(t) & = \int_{0}^{T} b(t) \cdot e(T-t') dt' \label{eq:am}
273
+ \\
274
+ g(t) & = b(t) \ast e(t) \nonumber
275
+ \end{align}
276
+
277
+ By using labels on certain equations, we can refer to equations by
278
+ number, such as equation~(\ref{eq:am}).
279
+
280
+ \section{Summary}
281
+ \label{sec:summary}
282
+ This short guide should give you a flavour of what can be done with
283
+ \latex. It is by no means complete, or supposed to be
284
+ self-explanatory. It is, however, hopefully enough to get you
285
+ started! Try experimenting by editing the source file and then
286
+ recompiling this document. As mentioned earlier, there are many
287
+ guides for latex. Two that I can recommend are
288
+ \url{http://www.andy-roberts.net/misc/latex/index.html} and
289
+ `` The (Not So) Short Introduction to LaTeX2e''
290
+ (\url{http://ctan.tug.org/tex-archive/info/lshort/english/lshort.pdf}).
291
+
292
+
293
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
294
+ %% Finally we specify the format required for our references and the
295
+ %% name of the bibtex file where our references should be taken from.
296
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
297
+
298
+ \bibliographystyle{plainnat}
299
+ \bibliography{example}
300
+
301
+ \end{document}
302
+
303
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
304
+ %% The end.
305
+ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -0,0 +1,246 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
3
+ <fo:layout-master-set>
4
+ <fo:simple-page-master master-name="mainPage">
5
+ <fo:region-body margin-top="5cm" margin-bottom="2.5cm" margin-left="1.25cm" margin-right="1.25cm" />
6
+ <fo:region-before extent="5cm" />
7
+ <fo:region-after extent="2cm" />
8
+ <fo:region-start extent="1.25cm" />
9
+ <fo:region-end extent="1.25cm" />
10
+ </fo:simple-page-master>
11
+ <fo:simple-page-master master-name="NewsPageLayout">
12
+ <fo:region-body margin-top="2.75cm" margin-bottom="2cm" margin-left="2cm" margin-right="2cm" />
13
+ <fo:region-before extent="2.75cm" />
14
+ <fo:region-after extent="2cm" />
15
+ <fo:region-start extent="2cm" />
16
+ <fo:region-end extent="2cm" />
17
+ </fo:simple-page-master>
18
+ </fo:layout-master-set>
19
+ <fo:page-sequence id="ArticlePage" master-reference="NewsPageLayout" xmlns:fo="http://www.w3.org/1999/XSL/Format">
20
+ <!--fo:static-content flow-name="xsl-region-before" /-->
21
+ <fo:static-content flow-name="xsl-region-after">
22
+ <fo:block>
23
+ <fo:table>
24
+ <fo:table-column column-width="2cm" background-position-horizontal="center" background-position-vertical="center" />
25
+ <fo:table-column column-width="51cm" background-position-horizontal="left" background-position-vertical="bottom" />
26
+ <fo:table-body>
27
+ <fo:table-row>
28
+ <fo:table-cell number-columns-spanned="2">
29
+ <fo:block>
30
+ <fo:inline > </fo:inline>
31
+ </fo:block>
32
+ </fo:table-cell>
33
+ </fo:table-row>
34
+ <fo:table-row>
35
+ <fo:table-cell display-align="center">
36
+ <fo:block>
37
+ <fo:table>
38
+ <fo:table-column column-width="2cm" />
39
+ <fo:table-body>
40
+ <fo:table-row>
41
+ <fo:table-cell>
42
+ <fo:block />
43
+ </fo:table-cell>
44
+ </fo:table-row>
45
+ <fo:table-row>
46
+ <fo:table-cell>
47
+ <fo:block>
48
+ <fo:inline > </fo:inline>
49
+ </fo:block>
50
+ </fo:table-cell>
51
+ </fo:table-row>
52
+ </fo:table-body>
53
+ </fo:table>
54
+ </fo:block>
55
+ </fo:table-cell>
56
+ <fo:table-cell>
57
+ <fo:block>
58
+
59
+ </fo:block>
60
+ <fo:block>
61
+ <fo:inline text-align="left" font-size="6pt" color="#000000">Copyright (c) 2010, Alle Rechte vorbehalten. Inhalte dürfen ohne die Genehmigung des Herausgebers nicht kopiert oder weitergegeben werden. </fo:inline>
62
+ </fo:block>
63
+ </fo:table-cell>
64
+ </fo:table-row>
65
+ </fo:table-body>
66
+ </fo:table>
67
+ </fo:block>
68
+ <fo:block text-align="center" padding-top="3pt" font-size="7pt">
69
+ <fo:page-number />
70
+ </fo:block>
71
+ </fo:static-content>
72
+ <fo:flow flow-name="xsl-region-body">
73
+ <fo:table>
74
+ <fo:table-column />
75
+ <fo:table-body>
76
+ <fo:table-row>
77
+ <fo:table-cell>
78
+ <fo:block />
79
+ </fo:table-cell>
80
+ </fo:table-row>
81
+ </fo:table-body>
82
+ </fo:table>
83
+ <fo:block>
84
+ <fo:block font-size="18pt" font-family="sans-serif" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
85
+ </fo:block>
86
+ <fo:block>
87
+ <fo:block>
88
+ <fo:inline text-align="left" font-size="10pt" font-family="Arial" color="Black" font-weight="bold">Andritz erhält Auftrag für Glüh- und Beizlinie aus Taiwan</fo:inline>
89
+ </fo:block>
90
+ <fo:block padding-before="5pt" padding-after="3pt" space-after.optimum="6pt" />
91
+ </fo:block>
92
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black">Staff Reporters </fo:block>
93
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black" />
94
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black">09 December 2010</fo:block>
95
+ <fo:block padding-before="5pt" padding-after="3pt" space-after.optimum="6pt" />
96
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black"> Stahl Monitor</fo:block>
97
+ <fo:block padding-before="5pt" padding-after="3pt" space-after.optimum="6pt" />
98
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black">Nachrichten</fo:block>
99
+ <fo:block padding-before="5pt" padding-after="3pt" space-after.optimum="6pt" />
100
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black" />
101
+ <fo:block>
102
+ <fo:block font-size="18pt" font-family="sans-serif" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
103
+ </fo:block>
104
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black">GRAZ --Der Grazer Technologiekonzern Andritz hat einen Auftrag für 70 Mio EUR an Land gezogen. An die taiwanische Walsin Lihwa Corporation liefert der Konzern nach Angaben vom Donnerstag eine Glüh- und Beizlinie für Edelstahlwarm- und -kaltband mit einer Jahreskapazität von 350.000 Tonnen. Die Inbetriebnahme sei für Ende 2012 geplant.</fo:block>
105
+ <fo:block>
106
+ <fo:block font-size="18pt" font-family="sans-serif" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
107
+ </fo:block>
108
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black" />
109
+ <fo:block font-size="18pt" font-family="sans-serif" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
110
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black" />
111
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" font-weight="normal" color="black">0020101209e6c900001</fo:block>
112
+ <fo:block>
113
+ <fo:block font-size="14pt" font-family="sans-serif" font-weight="bold" line-height="16pt" padding-before="6pt" space-after.optimum="10pt" border-after-color="black" border-after-style="solid" border-after-width="1pt" />
114
+ </fo:block>
115
+ <fo:block font-size="18pt" font-family="sans-serif" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
116
+ </fo:flow>
117
+ </fo:page-sequence>
118
+ <fo:page-sequence id="InteractiveChart" master-reference="mainPage" xmlns:fo="http://www.w3.org/1999/XSL/Format">
119
+ <fo:static-content flow-name="xsl-region-before">
120
+ <fo:block font-size="18pt" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
121
+ <fo:table>
122
+ <fo:table-column />
123
+ <fo:table-body>
124
+ <fo:table-row>
125
+ <fo:table-cell text-align="left">
126
+ <fo:block padding-before="15pt">
127
+ <fo:inline>
128
+
129
+ </fo:inline>
130
+ </fo:block>
131
+ </fo:table-cell>
132
+ </fo:table-row>
133
+ </fo:table-body>
134
+ </fo:table>
135
+ <fo:block font-size="18pt" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
136
+ <fo:block>
137
+ <fo:table>
138
+ <fo:table-column column-width="3.5cm" />
139
+ <fo:table-column column-width=".35cm" />
140
+ <fo:table-column column-width="4cm" />
141
+ <fo:table-body>
142
+ <fo:table-row>
143
+ <fo:table-cell>
144
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" color="#b8860b" line-height="10pt" font-weight="Bold">
145
+ <fo:inline color="#b8860b">Materialbezeichnung</fo:inline>
146
+ </fo:block>
147
+ </fo:table-cell>
148
+ <fo:table-cell>
149
+ <fo:block>
150
+ <fo:inline></fo:inline>
151
+ </fo:block>
152
+ </fo:table-cell>
153
+ <fo:table-cell>
154
+ <fo:block font-size="9pt" text-align="left" color="#333333">
155
+ <fo:inline>Platin</fo:inline>
156
+ </fo:block>
157
+ </fo:table-cell>
158
+ </fo:table-row>
159
+ <fo:table-row>
160
+ <fo:table-cell>
161
+ <fo:block text-align="left" font-size="9pt" font-family="Arial" color="#b8860b" line-height="10pt" font-weight="Bold">
162
+ <fo:inline color="#b8860b">Art</fo:inline>
163
+ </fo:block>
164
+ </fo:table-cell>
165
+ <fo:table-cell>
166
+ <fo:block>
167
+ <fo:inline></fo:inline>
168
+ </fo:block>
169
+ </fo:table-cell>
170
+ <fo:table-cell>
171
+ <fo:block font-size="9pt" text-align="left" color="#333333">
172
+ <fo:inline>Platin Fortlaufend</fo:inline>
173
+ </fo:block>
174
+ </fo:table-cell>
175
+ </fo:table-row>
176
+ <fo:table-row>
177
+ <fo:table-cell text-align="center" number-columns-spanned="3">
178
+ <fo:block font-size="19pt" font-family="sans-serif" font-weight="bold" line-height="6pt" padding-before="4pt" space-after.optimum="3pt" border-after-color="#666666" border-after-style="solid" border-after-width="0.5pt" />
179
+ <fo:block line-height="4pt" font-size="7pt" color="#333">
180
+ <fo:inline>US-Dollar (USD)</fo:inline>
181
+ <fo:inline font-size="7pt" font-family="sans-serif"> | </fo:inline>
182
+ <fo:inline> Feinunze</fo:inline>
183
+ </fo:block>
184
+ <fo:block font-size="19pt" font-family="sans-serif" font-weight="bold" line-height="4pt" padding-before="3pt" space-after.optimum="3pt" border-after-color="#666666" border-after-style="solid" border-after-width="0.5pt" />
185
+ </fo:table-cell>
186
+ </fo:table-row>
187
+ </fo:table-body>
188
+ </fo:table>
189
+ </fo:block>
190
+ </fo:static-content>
191
+ <fo:static-content flow-name="xsl-region-after">
192
+ <fo:block font-size="8pt" text-align="center" color="#333">
193
+ Seite <fo:page-number /><fo:inline> | </fo:inline><fo:inline>Exportiert am: </fo:inline><fo:inline>10/12/10</fo:inline>
194
+ </fo:block>
195
+ <fo:block font-size="18pt" font-weight="bold" padding-before="5pt" border-after-width="0.5pt" />
196
+ <fo:block>
197
+ <fo:table>
198
+ <fo:table-column column-width="3cm" />
199
+ <fo:table-column column-width="0.35cm" />
200
+ <fo:table-column column-width="65cm" />
201
+ <fo:table-body>
202
+ <fo:table-row>
203
+ <fo:table-cell number-columns-spanned="3">
204
+ <fo:block>
205
+ <fo:inline></fo:inline>
206
+ </fo:block>
207
+ </fo:table-cell >
208
+ </fo:table-row>
209
+ <fo:table-row>
210
+ <fo:table-cell display-align="top">
211
+ <fo:block>
212
+
213
+ </fo:block>
214
+ </fo:table-cell>
215
+ <fo:table-cell>
216
+ <fo:block />
217
+ </fo:table-cell>
218
+ <fo:table-cell font-weight="normal">
219
+ <fo:block line-height="10pt">
220
+ <fo:inline text-align="left" font-size="8pt" color="#000000"> Copyright 2010 Alle Rechte vorbehalten. Inhalte dürfen ohne die Genehmigung des </fo:inline>
221
+ </fo:block>
222
+ <fo:block line-height="10pt">
223
+ <fo:inline text-align="left" font-size="8pt" color="#000000"> Herausgebers nicht kopiert oder weitergegeben werden. </fo:inline>
224
+ </fo:block>
225
+ </fo:table-cell>
226
+ </fo:table-row>
227
+ </fo:table-body>
228
+ </fo:table>
229
+ </fo:block>
230
+ </fo:static-content>
231
+ <fo:flow flow-name="xsl-region-body">
232
+ <fo:block text-align="Left" color="#005596">
233
+ <fo:block>
234
+ <fo:inline text-align="left" font-size="10pt" font-family="Arial" font-weight="bold" color="#b8860b">Historische Preise</fo:inline>
235
+ </fo:block>
236
+ <fo:block padding-before="5pt" padding-after="3pt" space-after.optimum="6pt" />
237
+ </fo:block>
238
+ <fo:block>
239
+
240
+ </fo:block>
241
+ <fo:block>
242
+ <fo:block font-size="18pt" font-family="sans-serif" font-weight="bold" padding-before="20pt" border-after-width="0.5pt" />
243
+ </fo:block>
244
+ </fo:flow>
245
+ </fo:page-sequence>
246
+ </fo:root>