File: refcard.dbk

package info (click to toggle)
refcard 13.1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,284 kB
  • sloc: python: 189; makefile: 108; sh: 6
file content (1013 lines) | stat: -rw-r--r-- 43,024 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<article lang="en-GB">
  <title>Debian Reference Card</title>
  <subtitle>The 101 most important things when using Debian</subtitle>
  <articleinfo>
    <corpauthor>
      <ulink
       url="https://www.debian.org/">
	<inlinemediaobject>
	  <imageobject>
	    <imagedata
	     fileref="openlogo-nd-25.png"
	     format="PNG" align="center"/>
	  </imageobject>
	  <imageobject>
	    <imagedata
	      fileref="openlogo-nd.eps"
	      format="EPS" align="center"/>
	  </imageobject>
	  <textobject><phrase>Debian</phrase></textobject>
	</inlinemediaobject>
      </ulink>
    </corpauthor>
    <author>
      <firstname>W.</firstname>
      <othername>Martin</othername>
      <surname>Borgert</surname>
      <affiliation>
	<orgname>Debian</orgname>
      </affiliation>
      <email>debacle@debian.org</email>
    </author>
    <copyright>
      <year>2004</year>
      <year>2005</year>
      <year>2008</year>
      <year>2010</year>
      <holder>W. Martin Borgert</holder>
    </copyright>
    <copyright>
      <year>2016</year>
      <year>2019</year>
      <year>2023</year>
      <holder>Holger Wansing</holder>
    </copyright>
    <editor>
      <firstname>W.</firstname>
      <othername>Martin</othername>
      <surname>Borgert</surname>
    </editor>
    <editor>
      <firstname>Holger</firstname>
      <surname>Wansing</surname>
    </editor>
    <legalnotice>
      <para>This document may be used under the terms of the GNU General
      Public License version 3 or higher. The license text can be found at <ulink
      url="https://www.gnu.org/copyleft/gpl.html">https://www.gnu.org/copyleft/gpl.html</ulink>
      and
      <filename>/usr/share/common-licenses/GPL-3</filename>.</para>
    </legalnotice>
    <revhistory>
	<revision>
	<revnumber>13 -- Debian 13 'Trixie' -- </revnumber>
	<date>2025-11-17</date>
	<revremark>Update refcard for Trixie, incl. translations.</revremark>
      </revision>
	<revision>
	<revnumber>12 -- Debian 12 'Bookworm' -- </revnumber>
	<date>2023-03-22</date>
	<revremark>Update for Bookworm, incl. translations.</revremark>
      </revision>
      <revision>
	<revnumber>11 -- Debian 11 'Bullseye' -- </revnumber>
	<date>2021-03-14</date>
	<revremark>Updated refcard for Bullseye; updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>10 -- Debian 10 'Buster' -- </revnumber>
	<date>2020-01-19</date>
	<revremark>Update refcard for Buster; source repository moved
	from svn (Alioth) to git (Salsa); remove dependency to xmlroff
	(unfortunately ar, he and ml cannot be built now anymore);
	remove dependency to dia (added a static refcard.png file to the
	repository instead); remove dependency to pdfjoin;
	updated translations; new translation for Korean.</revremark>
      </revision>
      <revision>
	<revnumber>9.0 - Debian 9 'Stretch' -- </revnumber>
	<date>2016-07-09</date>
	<revremark>Change versioning scheme; updated content matching
        Stretch; drop Apache/Samba/m-a/make-kpkg content;
        translation updates, added Serbian translation.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.9</revnumber>
	<date>2013-10-10</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.8</revnumber>
	<date>2012-07-10</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.7</revnumber>
	<date>2010-12-13</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.6</revnumber>
	<date>2010-12-09</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.5</revnumber>
	<date>2010-04-30</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.4</revnumber>
	<date>2008-11-05</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.3</revnumber>
	<date>2008-10-05</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.2</revnumber>
	<date>2008-09-18</date>
	<revremark>New and updated translations.</revremark>
      </revision>
      <revision>
	<revnumber>5.0.1</revnumber>
	<date>2008-08-01</date>
	<revremark>Use dblatex as alternative renderer.</revremark>
      </revision>
      <revision>
	<revnumber>5.0-0.1</revnumber>
	<date>2008-07-13</date>
	<revremark>Removed some obsolete entries, added one for the
	wiki.</revremark>
      </revision>
      <revision>
	<revnumber>3.2-0.1</revnumber>
	<date>2008-01-25</date>
	<revremark>Changed the layout engine from db2latex-xsl to
	xmlroff for the sake of RTL languages. Changed the translation
	mechanism to po4a to make translators live easier. Packaging.
	License changed to GPL 3.</revremark>
      </revision>
      <revision>
	<revnumber>3.1-0.2</revnumber>
	<date>2005-09-03</date>
	<revremark>Enabled more translations. Added international
	titles to web page. Using texlive instead of tetex, not sure
	which one I will use in the future. Two new keywords to
	translate: <emphasis>Version</emphasis> and <emphasis>Made
	by</emphasis>!</revremark>
      </revision>
      <revision>
	<revnumber>3.1-0.1</revnumber>
	<date>2005-08-23</date>
	<revremark>Changed all files to UTF-8 encoding. Use subversion
	instead of CVS.</revremark>
      </revision>
      <revision>
	<revnumber>3.1</revnumber>
	<date>2005-06-19</date>
	<revremark>Bumped version number to Debian release number to
	confuse everybody. Added folding advice. Commented out
	unimportant entries, where necessary.</revremark>
      </revision>
      <revision>
	<revnumber>1.0.5</revnumber>
	<date>2005-05-23</date>
	<revremark>Added CVS checkout commands to refcard web page,
	thanks to Geert Stappers (stappers AT
	stappers.nl).</revremark>
      </revision>
      <revision>
	<revnumber>1.0.4</revnumber>
	<date>2004-09-14</date>
	<revremark>Polish translation added.</revremark>
      </revision>
      <revision>
	<revnumber>1.0.3</revnumber>
	<date>2004-09-02</date>
	<revremark>Finnish and Hungarian translations
	added.</revremark>
      </revision>
      <revision>
	<revnumber>1.0.2</revnumber>
	<date>2004-08-27</date>
	<revremark>Ukrainian translation added.</revremark>
      </revision>
      <revision>
	<revnumber>1.0.1</revnumber>
	<date>2004-08-22</date>
	<revremark>Some new translations available (Catalan, Danish)
	or under construction (Finnish, Greek, Hungarian, Slovak,
	Turkish, Ukrainian). Once again, Michael Wiedmann (mw AT
	miwie.in-berlin.de) found a lot of important tricks to make
	things work. Thanks!</revremark>
      </revision>
      <revision>
	<revnumber>1.0</revnumber>
	<date>2004-06-14</date>
	<revremark>Split translatable contents from boilerplate,
	easing life of translators and me.</revremark>
      </revision>
      <revision>
	<revnumber>0.9</revnumber>
	<date>2004-04-29</date>
	<revremark>Not yet released, but preliminary translations for
	French and Portuguese are here!</revremark>
      </revision>
      <revision>
	<revnumber>0.8</revnumber>
	<date>2004-04-27</date>
	<revremark>Not yet released, but preliminary translations into
	Dutch and Spanish are here!</revremark>
      </revision>
      <revision>
	<revnumber>0.7</revnumber>
	<date>2004-04-18</date>
	<revremark>More changes and additions!</revremark>
      </revision>
      <revision>
	<revnumber>0.6</revnumber>
	<date>2004-04-17</date>
	<revremark>Got a German translation from Alexander Schmehl
	(alexander AT schmehl.info). Because my original version
	changed in the mean time, I had to rework it a little bit.
	Finally added <emphasis>auto-apt</emphasis>.</revremark>
      </revision>
      <revision>
	<revnumber>0.5</revnumber>
	<date>2004-04-16</date>
	<revremark>More minor changes. Restructured some sections, to
	make the card more comprehensive.</revremark>
      </revision>
      <revision>
	<revnumber>0.4</revnumber>
	<date>2004-04-16</date>
	<revremark>Minor changes.</revremark>
      </revision>
      <revision>
	<revnumber>0.3</revnumber>
	<date>2004-04-15</date>
	<revremark>Many changes. Added a fold mark between pages two
	and three, hopefully at the right position. The basic idea is
	taken from leaflet.cls by Jürgen Schlegelmilch (schlegel AT
	informatik.uni-rostock.de).</revremark>
      </revision>
      <revision>
	<revnumber>0.2</revnumber>
	<date>2004-04-12</date>
	<revremark>Some more commands, files, hints. Fixes in the XSL
	lead to better PDF.</revremark>
      </revision>
      <revision>
	<revnumber>0.1</revnumber>
	<date>2004-04-10</date>
	<revremark>Initial version, based on the <emphasis>APT and
	Dpkg Quick Reference Sheet</emphasis> by Matthew Danish
	(mdanish AT andrew.cmu.edu). Some layout ideas are taken from
	the <emphasis>BSD leaflet</emphasis> by Oliver Fromme (olli AT
	fromme.com), and other public sources.</revremark>
      </revision>
    </revhistory>
    <keywordset>
      <keyword>APT</keyword>
      <keyword>Debian</keyword>
      <keyword>dpkg</keyword>
      <keyword>reference card</keyword>
      <keyword>basic commands</keyword>
    </keywordset>
    <abstract>
      <para>The idea of this reference card is to provide new users of
      Debian GNU/Linux with the most important commands.  Basic (or
      better) knowledge of computers, files, directories and the
      command line is required.  Some acronyms related to Debian
      GNU/Linux can be found <link linkend="acronyms">here</link>.</para>
    </abstract>
  </articleinfo>
  <section id="availability">
    <title>Availability</title>
    <para>The source code of this card is available via the <ulink
    url="https://salsa.debian.org/">Debian Salsa service</ulink> in
    DocBook/XML format.  You may access the repository via the <ulink
    url="https://salsa.debian.org/ddp-team/refcard">web
    interface</ulink>.  Or check out the latest version using this
    command:</para>

    <programlisting>git clone https://salsa.debian.org/ddp-team/refcard.git</programlisting>

    <para>The actual reference card in English, for printing in
    international paper format is <ulink
    url="refcard-en-a4.pdf">here</ulink>. For other languages and US
    letter size, see below.</para>
    <informaltable frame="none" colsep="1" rowsep="1">
      <tgroup cols="4">
	<colspec align="left"/>
	<colspec align="left"/>
	<colspec align="left" colwidth="45%"/>
	<colspec align="left"/>
	<colspec align="left"/>
	<thead>
	  <row>
	    <entry>Language</entry>
	    <entry>Print</entry>
	    <entry>Title</entry>
	    <entry>Last Translator</entry>
	    <entry>Status</entry>
	  </row>
	</thead>
	<tbody>
	  <row valign="top">
	    <entry>Bulgarian (bg)</entry>
	    <entry><ulink url="refcard-bg-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-bg.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-bg.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='bg']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='bg']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Catalan (ca)</entry>
	    <entry><ulink url="refcard-ca-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-ca.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-ca.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='ca']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='ca']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Czech (cs)</entry>
	    <entry><ulink url="refcard-cs-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-cs.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-cs.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='cs']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='cs']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Danish (da)</entry>
	    <entry><ulink url="refcard-da-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-da.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-da.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='da']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='da']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>German (de)</entry>
	    <entry><ulink url="refcard-de-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-de.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-de.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='de']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='de']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Greek (el)</entry>
	    <entry><ulink url="refcard-el-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-el.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-el.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='el']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='el']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>English (en)</entry>
	    <entry><ulink url="refcard-en-a4.pdf">A4</ulink>
	      <ulink url="refcard-en-lt.pdf">Lt</ulink></entry>
	    <entry><xi:include href="entries-en.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-en.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry>n/a</entry>
	    <entry>n/a</entry>
	  </row>
	  <row valign="top">
	    <entry>Spanish (es)</entry>
	    <entry><ulink url="refcard-es-a4.pdf">A4</ulink>
	      <ulink url="refcard-es-lt.pdf">Lt</ulink></entry>
	    <entry><xi:include href="entries-es.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-es.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='es']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='es']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Basque (eu)</entry>
	    <entry><ulink url="refcard-eu-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-eu.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-eu.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='eu']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='eu']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Finnish (fi)</entry>
	    <entry><ulink url="refcard-fi-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-fi.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-fi.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='fi']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='fi']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>French (fr)</entry>
	    <entry><ulink url="refcard-fr-a4.pdf">A4</ulink>
	      <ulink url="refcard-fr-lt.pdf">Lt</ulink></entry>
	    <entry><xi:include href="entries-fr.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-fr.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='fr']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='fr']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Galician (gl)</entry>
	    <entry><ulink url="refcard-gl-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-gl.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-gl.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='gl']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='gl']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Hindi (hi)</entry>
	    <entry><ulink
	    url="refcard-hi-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-hi.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-hi.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='hi']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='hi']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Hungarian (hu)</entry>
	    <entry><ulink url="refcard-hu-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-hu.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-hu.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='hu']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='hu']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Bahasa Indonesia (id)</entry>
	    <entry><ulink url="refcard-id-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-id.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-id.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='id']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='id']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Italian (it)</entry>
	    <entry><ulink url="refcard-it-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-it.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-it.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='it']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='it']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Japanese (ja)</entry>
	    <entry><ulink url="refcard-ja-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-ja.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-ja.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='ja']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='ja']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Lithuanian (lt)</entry>
	    <entry><ulink url="refcard-lt-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-lt.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-lt.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='lt']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='lt']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Malay (ms)</entry>
	    <entry><ulink url="refcard-ms-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-ms.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-ms.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='ms']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='ms']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Norwegian Bokmål (nb)</entry>
	    <entry><ulink url="refcard-nb-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-nb.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-nb.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='nb']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='nb']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Dutch (nl)</entry>
	    <entry><ulink url="refcard-nl-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-nl.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-nl.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='nl']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='nl']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Polish (pl)</entry>
	    <entry><ulink url="refcard-pl-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-pl.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-pl.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='pl']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='pl']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Portugese, as spoken in Brazil (pt_BR)</entry>
	    <entry><ulink url="refcard-pt_BR-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-pt_BR.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-pt_BR.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='pt_BR']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='pt_BR']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Portugese, as spoken in Portugal (pt)</entry>
	    <entry><ulink url="refcard-pt-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-pt.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-pt.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='pt']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='pt']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Romanian (ro)</entry>
	    <entry><ulink url="refcard-ro-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-ro.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-ro.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='ro']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='ro']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Russian (ru)</entry>
	    <entry><ulink url="refcard-ru-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-ru.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-ru.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='ru']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='ru']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Serbian (sr)</entry>
	    <entry><ulink url="refcard-sr-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-sr.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-sr.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='sr']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='sr']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Slovak (sk)</entry>
	    <entry><ulink url="refcard-sk-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-sk.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-sk.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='sk']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='sk']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Swedish (sv)</entry>
	    <entry><ulink url="refcard-sv-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-sv.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-sv.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='sv']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='sv']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Turkish (tr)</entry>
	    <entry><ulink url="refcard-tr-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-tr.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-tr.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='tr']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='tr']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Ukrainian (uk)</entry>
	    <entry><ulink url="refcard-uk-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-uk.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-uk.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='uk']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='uk']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Vietnamese (vi)</entry>
	    <entry><ulink url="refcard-vi-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-vi.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-vi.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='vi']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='vi']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Chinese, as spoken in China (zh_CN)</entry>
	    <entry><ulink url="refcard-zh_CN-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-zh_CN.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-zh_CN.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='zh_CN']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='zh_CN']/child::text()[1])"/></entry>
	  </row>
	  <row valign="top">
	    <entry>Traditional Chinese (zh_TW)</entry>
	    <entry><ulink url="refcard-zh_TW-a4.pdf">A4</ulink></entry>
	    <entry><xi:include href="entries-zh_TW.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/title/child::text()[1])"/> -
	    <xi:include href="entries-zh_TW.dbk"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/article/subtitle/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/t[@l='zh_TW']/child::text()[1])"/></entry>
	    <entry><xi:include href="statistics.xml"
	    xmlns:xi="http://www.w3.org/2003/XInclude"
	    xpointer="xpointer(/statistics/s[@l='zh_TW']/child::text()[1])"/></entry>
	  </row>
	</tbody>
      </tgroup>
    </informaltable>
    <para>
    </para>
  </section>
  <section id="usage">
    <title>Print, Fold, and Enjoy</title>

    <warning>
      <simpara>The reference card has been designed for printers
      that are able to print whole pages, without large margins!  On
      my own private printer (HP Inkjet) or other so-called consumer
      printers you cannot print the card!</simpara>
    </warning>

    <informalfigure>
      <mediaobject>
	<imageobject>
	  <imagedata fileref="refcard.png" format="PNG"/>
	</imageobject>
	<textobject><phrase>Folding</phrase></textobject>
      </mediaobject>
    </informalfigure>

    <para>First, the paper side with the title and the legal notice
    (copyleft) are on the back.  Fold the right third of the paper to
    the small mark at the upper margin between the left and middle
    third.  Now fold the left third over the right one.  The title
    page should be in the front, the legal notice on the back.  If
    not, try again.</para>

    <para>Of course, you may alter the reference card to your needs and
    create a customised refcard.  You need to install the build
    dependencies with <command>apt-get build-dep refcard</command>;
    these are mostly:
    <literal>docbook-xsl</literal>,
    <literal>texlive-extra-utils</literal>,
    <literal>pdftk</literal>,
    <literal>po4a</literal>,
    <literal>dblatex</literal>,
    <literal>poppler-utils</literal>, and
    <literal>xsltproc</literal>.</para>

    <!-- para>If you like to have a sponsors advertisement on the back
    (between the last entries and the copyleft notice), e.g. for the
    German version, just call: <command>make refcard-de-a4.pdf
    AD=ad-example.tex</command>.  The file could be sth. like:</para>

    <programlisting linenumbering="numbered" format="linespecific"
    id="ad-example"><xi:include
    xmlns:xi="http://www.w3.org/2003/XInclude" href="ad-example.tex"
    parse="text"/></programlisting -->
  </section>
  <section id="help">
    <title>Help!</title>
    <para>If you like to translate the reference card into your
    language, please contact me first, so that duplicated work is
    prevented.</para>

    <para>If you are going to translate the refcard, make sure to</para>

    <orderedlist>
      <listitem>
	<para>use the file <filename>po4a/entries.pot</filename> as
	template;</para>
      </listitem>
      <listitem>
	<para>check out the latest version from the git
	repository;</para>
      </listitem>
      <listitem>
	<para>do not forget to translate the legal notice;</para>
      </listitem>
      <listitem>
	<para>use <literal>UTF-8</literal> as encoding.</para>
      </listitem>
    </orderedlist>

    <para>Use whatever editor you like, but it must work with UTF-8.
    A nice editor for translations is <literal>poedit</literal>.
    If you happen to use Emacs (<literal>emacs24</literal>),
    try <literal>gettext-el</literal>.</para>

    <warning>
      <simpara>Because other languages might be more verbose than
      English (and German <emphasis>is</emphasis> more verbose), the
      translation might not fit on one sheet!  Translators need to
      re-phrase things!  The translation does not need to be 100%
      exact, it&apos;s more important, that everything fits on the
      card!</simpara>

      <simpara>The reference card has been designed for international
      paper format (ISO A4) - the US letter format has less space.
      This applies to English, French, and Spanish.</simpara>
    </warning>
  </section>
  <section id="acronyms">
    <title>Acronyms related to Debian</title>

    <simplelist>
      <member><ulink
      url="http://www.riverland.net.au/~clytie/viet/netacrvn.html">English
      and Vietnamese explanations</ulink></member>
    </simplelist>
  </section>
  <section id="thanks">
    <title>Thanks</title>
    <para><personname><firstname>Michael</firstname>
    <surname>Wiedmann</surname></personname> helped a lot with the
    db2latex-xsl toolchain.</para>

    <para>The following people helped by correcting my so-called
    English, by adding important commands, by advertising the card, by
    giving valuable hints, or just by motivating me:
    <personname><firstname>Adrian</firstname>
    <othername>Dagurashibanipal</othername>
    <surname>von Bidder</surname></personname>,
    <personname><firstname>Andreas</firstname>
    <surname>Tille</surname></personname>,
    <personname><firstname>Chris</firstname>
    <surname>Walker</surname></personname>,
    <personname><firstname>Eduard</firstname>
    <surname>Bloch</surname></personname>,
    <personname><firstname>Holger</firstname>
    <surname>Blaschka</surname></personname>,
    <personname><firstname>Oliver</firstname>
    <surname>Kurth</surname></personname>,
    <personname><firstname>Philip</firstname>
    <surname>Miller</surname></personname>,
    <personname><firstname>Rahmat</firstname>
    <othername>M.</othername>
    <surname>Samik-Ibrahim</surname></personname>,
    <personname><firstname>Ralph</firstname>
    <surname>Aichinger</surname></personname>,
    <personname><firstname>Ralph</firstname>
    <surname>Katz</surname></personname>,
    <personname><firstname>Rob</firstname>
    <surname>Bradford</surname></personname>,
    <personname><firstname>Frank</firstname>
    <surname>Küster</surname></personname>,
    <personname><firstname>Wouter</firstname>
    <surname>Verhelst</surname></personname>,
    <personname><firstname>Justin B</firstname>
    <surname>Rye</surname></personname> for corrections and useful ideas.</para>
  </section>
</article>