]> git.lyx.org Git - lyx.git/blob - lib/examples/Modules/Multilingual_Captions.lyx
DocBook: start implementing LilyPond.
[lyx.git] / lib / examples / Modules / Multilingual_Captions.lyx
1 #LyX 2.4 created this file. For more info see https://www.lyx.org/
2 \lyxformat 600
3 \begin_document
4 \begin_header
5 \save_transient_properties true
6 \origin /systemlyxdir/examples/Modules/
7 \textclass scrartcl
8 \begin_preamble
9 % if pdflatex is used
10 \usepackage{ifpdf}
11 \ifpdf
12
13 % set fonts for nicer pdf view
14 \IfFileExists{lmodern.sty}
15  {\usepackage{lmodern}}{}
16
17 \fi % end if pdflatex is used
18
19 % use this when you only need the document language captions in the list of figures/tables
20 %\PassOptionsToPackage{list=off}{bicaption}
21
22 % all this is only necessary if you want to have a different list of floats for each language
23 \usepackage{newfloat}
24 % Define a new floating environment type "figureGer"
25 \DeclareFloatingEnvironment[fileext=lof2]{figureGer}
26 [Abbildung][Abbildungsverzeichnis]
27 % Define the new floating environment type "tableEng"
28 \DeclareFloatingEnvironment[fileext=lot2]{tableGer}
29 [Tabelle][Tabellenverzeichnis]
30 % inform bicaption about the new float types
31 \PassOptionsToPackage{listtype+=Ger}{bicaption}
32 % Added by lyx2lyx
33 \setlength{\parskip}{\medskipamount}
34 \setlength{\parindent}{0pt}
35 \end_preamble
36 \options liststotoc
37 \use_default_options true
38 \begin_modules
39 bicaption
40 \end_modules
41 \maintain_unincluded_children no
42 \language english
43 \language_package default
44 \inputencoding utf8
45 \fontencoding auto
46 \font_roman "default" "default"
47 \font_sans "default" "default"
48 \font_typewriter "default" "default"
49 \font_math "auto" "auto"
50 \font_default_family default
51 \use_non_tex_fonts false
52 \font_sc false
53 \font_sans_osf false
54 \font_typewriter_osf false
55 \font_roman_osf false
56 \font_sf_scale 100 100
57 \font_tt_scale 100 100
58 \use_microtype false
59 \use_dash_ligatures false
60 \graphics default
61 \default_output_format default
62 \output_sync 0
63 \bibtex_command default
64 \index_command default
65 \float_placement h
66 \paperfontsize 12
67 \spacing single
68 \use_hyperref true
69 \pdf_bookmarks true
70 \pdf_bookmarksnumbered false
71 \pdf_bookmarksopen false
72 \pdf_bookmarksopenlevel 1
73 \pdf_breaklinks false
74 \pdf_pdfborder false
75 \pdf_colorlinks true
76 \pdf_backref false
77 \pdf_pdfusetitle true
78 \pdf_quoted_options "linkcolor=black, citecolor=black, urlcolor=blue, filecolor=blue, pdfpagelayout=OneColumn, pdfnewwindow=true, pdfstartview=XYZ, plainpages=false"
79 \papersize default
80 \use_geometry false
81 \use_package amsmath 1
82 \use_package amssymb 1
83 \use_package cancel 1
84 \use_package esint 1
85 \use_package mathdots 1
86 \use_package mathtools 1
87 \use_package mhchem 1
88 \use_package stackrel 1
89 \use_package stmaryrd 1
90 \use_package undertilde 1
91 \cite_engine basic
92 \cite_engine_type default
93 \biblio_style plain
94 \use_bibtopic false
95 \use_indices false
96 \paperorientation portrait
97 \suppress_date true
98 \justification true
99 \use_refstyle 1
100 \use_minted 0
101 \notefontcolor #0000ff
102 \use_lineno 0
103 \index Index
104 \shortcut idx
105 \color #008000
106 \end_index
107 \secnumdepth 3
108 \tocdepth 3
109 \paragraph_separation indent
110 \paragraph_indentation default
111 \is_math_indent 0
112 \math_numbering_side default
113 \quotes_style english
114 \dynamic_quotes 0
115 \papercolumns 1
116 \papersides 1
117 \paperpagestyle default
118 \tracking_changes false
119 \postpone_fragile_content false
120 \output_changes false
121 \html_math_output 0
122 \html_css_as_file 0
123 \html_be_strict false
124 \end_header
125
126 \begin_body
127
128 \begin_layout Title
129 Typesetting Multilingual Captions
130 \end_layout
131
132 \begin_layout Author
133 Uwe Stöhr
134 \end_layout
135
136 \begin_layout Standard
137 \begin_inset FloatList figure
138
139 \end_inset
140
141
142 \end_layout
143
144 \begin_layout Section
145 Introduction
146 \end_layout
147
148 \begin_layout Standard
149 The module 
150 \family sans
151 Multilingual
152 \begin_inset space ~
153 \end_inset
154
155 captions
156 \family default
157  allows to typeset captions in two languages.
158  It requires the \SpecialChar LaTeX
159  package 
160 \series bold
161 bicaption
162 \series default
163  which is part of the \SpecialChar LaTeX
164  package 
165 \series bold
166 caption
167 \series default
168 .
169  So if 
170 \series bold
171 caption
172 \series default
173  is installed, 
174 \series bold
175 bicaption
176 \series default
177  should be installed too.
178 \end_layout
179
180 \begin_layout Standard
181 The first language is the document language, the second one has to be specified
182  using the style 
183 \family sans
184 Caption
185 \begin_inset space ~
186 \end_inset
187
188 setup
189 \family default
190 .
191  This style has an optional argument to define to which language the setup
192  should apply.
193  To change the setup of all captions in the first language, use 
194 \series bold
195 bi-first
196 \series default
197  as optional argument, for the second language use 
198 \series bold
199 bi-second
200 \series default
201 , for both languages use 
202 \series bold
203 bi-both
204 \series default
205 .
206 \end_layout
207
208 \begin_layout Standard
209 \begin_inset Note Greyedout
210 status open
211
212 \begin_layout Plain Layout
213
214 \series bold
215 Note
216 \series default
217 : If no optional argument is used for 
218 \family sans
219 Caption setup
220 \family default
221 , the setup will affect all captions in the document, not only the multilingual
222  ones.
223 \end_layout
224
225 \end_inset
226
227
228 \end_layout
229
230 \begin_layout Standard
231 This document is in English.
232  To set German as the second language one uses the command
233 \end_layout
234
235 \begin_layout Standard
236
237 \series bold
238 lang=ngerman
239 \end_layout
240
241 \begin_layout Standard
242 in a 
243 \family sans
244 Caption setup
245 \family default
246  style.
247  For other languages, replace 
248 \series bold
249 ngerman
250 \series default
251  by the babel name of the language.
252  The list of babel names is given in Table
253 \begin_inset space ~
254 \end_inset
255
256
257 \begin_inset CommandInset ref
258 LatexCommand ref
259 reference "tab:List-of-babel"
260
261 \end_inset
262
263 .
264  The caption labels are automatically translated.
265 \end_layout
266
267 \begin_layout Standard
268 To add a multilingual caption to a float, press the right mouse button on
269  the caption that is automatically added when inserting a new float and
270  select 
271 \family sans
272 Caption
273 \begin_inset space ~
274 \end_inset
275
276 (Bicaption
277 \family default
278 ) from the context menu.
279  If no caption is inserted, you can insert the multilingual caption via
280  
281 \family sans
282 Insert\SpecialChar menuseparator
283 Caption\SpecialChar menuseparator
284 Bicaption
285 \family default
286 .
287  The caption text in the document language must be inserted in the inset
288  which is inserted in the caption via 
289 \family sans
290 Insert\SpecialChar menuseparator
291 Main Language Text
292 \family default
293 .
294  The caption text in the second language is inserted as normal text in the
295  caption.
296 \end_layout
297
298 \begin_layout Standard
299 Short Titles for both languages (for the List of Tables\SpecialChar breakableslash
300 Figures) can be inserted
301  via 
302 \family sans
303 Insert\SpecialChar menuseparator
304 Main Language Short Title
305 \family default
306  and 
307 \family sans
308 Insert\SpecialChar menuseparator
309 Second Language Short Title.
310 \end_layout
311
312 \begin_layout Standard
313 Figure
314 \begin_inset space ~
315 \end_inset
316
317
318 \begin_inset CommandInset ref
319 LatexCommand ref
320 reference "fig:example-figure"
321
322 \end_inset
323
324  is an example of a figure float with a multilingual caption.
325 \end_layout
326
327 \begin_layout Caption setup
328 \begin_inset Argument 1
329 status open
330
331 \begin_layout Plain Layout
332
333 bi-second
334 \end_layout
335
336 \end_inset
337
338 lang=ngerman
339 \begin_inset Note Note
340 status collapsed
341
342 \begin_layout Plain Layout
343 specify the second language
344 \end_layout
345
346 \end_inset
347
348
349 \end_layout
350
351 \begin_layout Standard
352 \begin_inset Float figure
353 wide false
354 sideways false
355 status open
356
357 \begin_layout Plain Layout
358 \noindent
359 \align center
360 \begin_inset Box Boxed
361 position "t"
362 hor_pos "c"
363 has_inner_box 0
364 inner_pos "t"
365 use_parbox 0
366 use_makebox 0
367 width "50col%"
368 special "none"
369 height "1in"
370 height_special "totalheight"
371 thickness "0.4pt"
372 separation "3pt"
373 shadowsize "4pt"
374 framecolor "black"
375 backgroundcolor "none"
376 status open
377
378 \begin_layout Plain Layout
379 A figure.
380 \end_layout
381
382 \end_inset
383
384
385 \end_layout
386
387 \begin_layout Plain Layout
388 \begin_inset Caption Bicaption
389
390 \begin_layout Plain Layout
391 \begin_inset Argument 1
392 status open
393
394 \begin_layout Plain Layout
395 English short title
396 \end_layout
397
398 \end_inset
399
400
401 \begin_inset Argument 2
402 status open
403
404 \begin_layout Plain Layout
405 English Title
406 \end_layout
407
408 \end_inset
409
410
411 \begin_inset Argument 3
412 status open
413
414 \begin_layout Plain Layout
415 German short title
416 \end_layout
417
418 \end_inset
419
420 German Title
421 \begin_inset CommandInset label
422 LatexCommand label
423 name "fig:example-figure"
424
425 \end_inset
426
427
428 \end_layout
429
430 \end_inset
431
432
433 \end_layout
434
435 \end_inset
436
437
438 \end_layout
439
440 \begin_layout Standard
441 \begin_inset Note Greyedout
442 status open
443
444 \begin_layout Plain Layout
445
446 \series bold
447 Note
448 \series default
449 : Multilingual captions cannot be used for longtables.
450 \end_layout
451
452 \end_inset
453
454
455 \end_layout
456
457 \begin_layout Section
458 Caption Customization
459 \end_layout
460
461 \begin_layout Standard
462 The layout of the captions can also be changed using the 
463 \family sans
464 Caption setup
465 \family default
466  style.
467  For example to typeset the caption text sans-serif italic, use the command
468 \end_layout
469
470 \begin_layout Standard
471
472 \series bold
473 textfont={sf,it}
474 \end_layout
475
476 \begin_layout Standard
477 to make the label bold use
478 \end_layout
479
480 \begin_layout Standard
481
482 \series bold
483 labelfont=bf
484 \end_layout
485
486 \begin_layout Standard
487 To set the font for the text and the label use the command 
488 \series bold
489 font=
490 \series default
491 .
492  For more information about possible customizations, see the documentation
493  of the \SpecialChar LaTeX
494  package 
495 \series bold
496 caption
497 \series default
498
499 \begin_inset CommandInset citation
500 LatexCommand cite
501 key "caption"
502 literal "true"
503
504 \end_inset
505
506 , because the customization options of the package 
507 \series bold
508 bicaption
509 \series default
510  are the same as for 
511 \series bold
512 caption
513 \series default
514 .
515 \end_layout
516
517 \begin_layout Standard
518 Figure
519 \begin_inset space ~
520 \end_inset
521
522
523 \begin_inset CommandInset ref
524 LatexCommand ref
525 reference "fig:example-figure-custom"
526
527 \end_inset
528
529  is an example of a figure float with a customized multilingual caption.
530 \end_layout
531
532 \begin_layout Caption setup
533 \begin_inset Note Note
534 status open
535
536 \begin_layout Plain Layout
537
538 \series bold
539 Note
540 \series default
541 : This setup does not have an effect in this file as described in the note
542  of section
543 \begin_inset space ~
544 \end_inset
545
546
547 \begin_inset CommandInset ref
548 LatexCommand ref
549 reference "sec:Float-List-Customization"
550
551 \end_inset
552
553 .
554 \end_layout
555
556 \end_inset
557
558
559 \begin_inset Argument 1
560 status open
561
562 \begin_layout Plain Layout
563
564 bi-both
565 \end_layout
566
567 \end_inset
568
569 labelfont=bf, labelsep=newline
570 \begin_inset Note Note
571 status collapsed
572
573 \begin_layout Plain Layout
574 The label font should be bold, the label separator is a line break instead
575  of a colon.
576 \end_layout
577
578 \end_inset
579
580
581 \end_layout
582
583 \begin_layout Caption setup
584 \begin_inset Argument 1
585 status open
586
587 \begin_layout Plain Layout
588
589 bi-first
590 \end_layout
591
592 \end_inset
593
594 labelfont=bf, labelsep=newline
595 \begin_inset Note Note
596 status collapsed
597
598 \begin_layout Plain Layout
599 The first language label font should be bold.
600 \end_layout
601
602 \end_inset
603
604
605 \end_layout
606
607 \begin_layout Caption setup
608 \begin_inset Argument 1
609 status open
610
611 \begin_layout Plain Layout
612
613 bi-second
614 \end_layout
615
616 \end_inset
617
618 labelfont=bf, textfont={sf,it}, labelsep=newline
619 \begin_inset Note Note
620 status collapsed
621
622 \begin_layout Plain Layout
623 The second language caption text should be sans-serif, italic.
624 \end_layout
625
626 \end_inset
627
628
629 \end_layout
630
631 \begin_layout Standard
632 \begin_inset Float figure
633 wide false
634 sideways false
635 status open
636
637 \begin_layout Plain Layout
638 \noindent
639 \align center
640 \begin_inset Box Boxed
641 position "t"
642 hor_pos "c"
643 has_inner_box 0
644 inner_pos "t"
645 use_parbox 0
646 use_makebox 0
647 width "50col%"
648 special "none"
649 height "1in"
650 height_special "totalheight"
651 thickness "0.4pt"
652 separation "3pt"
653 shadowsize "4pt"
654 framecolor "black"
655 backgroundcolor "none"
656 status open
657
658 \begin_layout Plain Layout
659 A figure.
660 \end_layout
661
662 \end_inset
663
664
665 \end_layout
666
667 \begin_layout Plain Layout
668 \begin_inset Caption Bicaption
669
670 \begin_layout Plain Layout
671 \begin_inset Argument 2
672 status open
673
674 \begin_layout Plain Layout
675 Customized caption format
676 \end_layout
677
678 \end_inset
679
680
681 \lang ngerman
682 Angepasstes Beschriftungsformat
683 \lang english
684
685 \begin_inset CommandInset label
686 LatexCommand label
687 name "fig:example-figure-custom"
688
689 \end_inset
690
691
692 \end_layout
693
694 \end_inset
695
696
697 \end_layout
698
699 \end_inset
700
701
702 \end_layout
703
704 \begin_layout Section
705 \begin_inset CommandInset label
706 LatexCommand label
707 name "sec:Float-List-Customization"
708
709 \end_inset
710
711 Float List Customization
712 \end_layout
713
714 \begin_layout Standard
715 By default the list of figures/tables contain both languages.
716  You can turn off the second language by adding this line to the document
717  preamble:
718 \end_layout
719
720 \begin_layout Standard
721
722 \series bold
723
724 \backslash
725 PassOptionsToPackage{list=off}{bicaption}
726 \end_layout
727
728 \begin_layout Standard
729 It is also possible to have two different lists, one for the document language,
730  one for the second language.
731  This is the case in this file.
732  To split the list one needs to add these lines to the \SpecialChar LaTeX
733  preamble:
734 \end_layout
735
736 \begin_layout Standard
737
738 \series bold
739
740 \backslash
741 usepackage{newfloat}
742 \begin_inset Newline newline
743 \end_inset
744
745
746 \backslash
747 DeclareFloatingEnvironment[fileext=lof2]{figureGer}
748 \begin_inset Newline newline
749 \end_inset
750
751 [Abbildung][Abbildungsverzeichnis]
752 \begin_inset Newline newline
753 \end_inset
754
755
756 \backslash
757 DeclareFloatingEnvironment[fileext=lot2]{tableGer}
758 \begin_inset Newline newline
759 \end_inset
760
761 [Tabelle][Tabellenverzeichnis]
762 \begin_inset Newline newline
763 \end_inset
764
765  
766 \backslash
767 PassOptionsToPackage{listtype+=Ger}{bicaption}
768 \end_layout
769
770 \begin_layout Standard
771 This defines two new float type named 
772 \emph on
773 figureGer
774 \emph default
775  and 
776 \emph on
777 tableGer
778 \emph default
779 .
780  A list for 
781 \emph on
782 figureGer
783 \emph default
784  can be inserted by using the command
785 \end_layout
786
787 \begin_layout Standard
788
789 \series bold
790
791 \backslash
792 listoffigureGeres
793 \end_layout
794
795 \begin_layout Standard
796 as \SpecialChar TeX
797  code.
798  Here is the German list of figures:
799 \end_layout
800
801 \begin_layout Standard
802 \begin_inset ERT
803 status open
804
805 \begin_layout Plain Layout
806
807
808 \backslash
809 listoffigureGeres
810 \end_layout
811
812 \end_inset
813
814
815 \end_layout
816
817 \begin_layout Standard
818 \begin_inset VSpace bigskip
819 \end_inset
820
821
822 \end_layout
823
824 \begin_layout Standard
825 \begin_inset Note Greyedout
826 status open
827
828 \begin_layout Plain Layout
829
830 \series bold
831 Note
832 \series default
833 : If you are using this feature, the 
834 \family sans
835 Caption setup
836 \family default
837  style option 
838 \series bold
839 bi-both
840 \series default
841  does no longer have any effect.
842  You then need to define everything explicitly for each language using the
843  options 
844 \series bold
845 bi-first
846 \series default
847  and 
848 \series bold
849 bi-second
850 \series default
851 .
852 \end_layout
853
854 \end_inset
855
856
857 \end_layout
858
859 \begin_layout Standard
860 For more information what can be done with the \SpecialChar LaTeX
861  package 
862 \series bold
863 bicaption
864 \series default
865 , have a look at its documentation, 
866 \begin_inset CommandInset citation
867 LatexCommand cite
868 key "bicaption"
869 literal "true"
870
871 \end_inset
872
873 .
874 \end_layout
875
876 \begin_layout Standard
877 \begin_inset Newpage newpage
878 \end_inset
879
880
881 \end_layout
882
883 \begin_layout Standard
884 \begin_inset Tabular
885 <lyxtabular version="3" rows="48" columns="2">
886 <features booktabs="true" islongtable="true" headBottomDL="true" lastFootEmpty="true" longtabularalignment="center">
887 <column alignment="center" valignment="top" width="0pt">
888 <column alignment="center" valignment="middle" width="35col%">
889 <row endfirsthead="true" caption="true">
890 <cell multicolumn="1" alignment="center" valignment="top" usebox="none">
891 \begin_inset Text
892
893 \begin_layout Plain Layout
894 \begin_inset Caption Standard
895
896 \begin_layout Plain Layout
897 \begin_inset CommandInset label
898 LatexCommand label
899 name "tab:List-of-babel"
900
901 \end_inset
902
903 List of babel names
904 \end_layout
905
906 \end_inset
907
908
909 \end_layout
910
911 \end_inset
912 </cell>
913 <cell multicolumn="2" alignment="center" valignment="top" topline="true" usebox="none">
914 \begin_inset Text
915
916 \begin_layout Plain Layout
917
918 \end_layout
919
920 \end_inset
921 </cell>
922 </row>
923 <row endfirsthead="true">
924 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
925 \begin_inset Text
926
927 \begin_layout Plain Layout
928 language
929 \end_layout
930
931 \end_inset
932 </cell>
933 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
934 \begin_inset Text
935
936 \begin_layout Plain Layout
937 babel name(s)
938 \end_layout
939
940 \end_inset
941 </cell>
942 </row>
943 <row endhead="true">
944 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
945 \begin_inset Text
946
947 \begin_layout Plain Layout
948 language
949 \end_layout
950
951 \end_inset
952 </cell>
953 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
954 \begin_inset Text
955
956 \begin_layout Plain Layout
957 babel name(s)
958 \end_layout
959
960 \end_inset
961 </cell>
962 </row>
963 <row endfoot="true">
964 <cell alignment="center" valignment="top" usebox="none">
965 \begin_inset Text
966
967 \begin_layout Plain Layout
968
969 \end_layout
970
971 \end_inset
972 </cell>
973 <cell alignment="center" valignment="top" usebox="none">
974 \begin_inset Text
975
976 \begin_layout Plain Layout
977
978 \family sans
979 \size small
980 continued on next page
981 \end_layout
982
983 \end_inset
984 </cell>
985 </row>
986 <row>
987 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
988 \begin_inset Text
989
990 \begin_layout Plain Layout
991 Afrikaans
992 \end_layout
993
994 \end_inset
995 </cell>
996 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
997 \begin_inset Text
998
999 \begin_layout Plain Layout
1000 afrikaans
1001 \end_layout
1002
1003 \end_inset
1004 </cell>
1005 </row>
1006 <row>
1007 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1008 \begin_inset Text
1009
1010 \begin_layout Plain Layout
1011 Basque
1012 \end_layout
1013
1014 \end_inset
1015 </cell>
1016 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1017 \begin_inset Text
1018
1019 \begin_layout Plain Layout
1020 basque
1021 \end_layout
1022
1023 \end_inset
1024 </cell>
1025 </row>
1026 <row>
1027 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1028 \begin_inset Text
1029
1030 \begin_layout Plain Layout
1031 Breton
1032 \end_layout
1033
1034 \end_inset
1035 </cell>
1036 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1037 \begin_inset Text
1038
1039 \begin_layout Plain Layout
1040 breton
1041 \end_layout
1042
1043 \end_inset
1044 </cell>
1045 </row>
1046 <row>
1047 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1048 \begin_inset Text
1049
1050 \begin_layout Plain Layout
1051 Bulgarian
1052 \end_layout
1053
1054 \end_inset
1055 </cell>
1056 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1057 \begin_inset Text
1058
1059 \begin_layout Plain Layout
1060 bulgarian
1061 \end_layout
1062
1063 \end_inset
1064 </cell>
1065 </row>
1066 <row>
1067 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1068 \begin_inset Text
1069
1070 \begin_layout Plain Layout
1071 Catalan
1072 \end_layout
1073
1074 \end_inset
1075 </cell>
1076 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1077 \begin_inset Text
1078
1079 \begin_layout Plain Layout
1080 catalan
1081 \end_layout
1082
1083 \end_inset
1084 </cell>
1085 </row>
1086 <row>
1087 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1088 \begin_inset Text
1089
1090 \begin_layout Plain Layout
1091 Croatian
1092 \end_layout
1093
1094 \end_inset
1095 </cell>
1096 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1097 \begin_inset Text
1098
1099 \begin_layout Plain Layout
1100 croatian
1101 \end_layout
1102
1103 \end_inset
1104 </cell>
1105 </row>
1106 <row>
1107 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1108 \begin_inset Text
1109
1110 \begin_layout Plain Layout
1111 Czech
1112 \end_layout
1113
1114 \end_inset
1115 </cell>
1116 <cell alignment="center" valignment="top" topline="true" usebox="none">
1117 \begin_inset Text
1118
1119 \begin_layout Plain Layout
1120 czech
1121 \end_layout
1122
1123 \end_inset
1124 </cell>
1125 </row>
1126 <row>
1127 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1128 \begin_inset Text
1129
1130 \begin_layout Plain Layout
1131 Danish
1132 \end_layout
1133
1134 \end_inset
1135 </cell>
1136 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1137 \begin_inset Text
1138
1139 \begin_layout Plain Layout
1140 danish
1141 \end_layout
1142
1143 \end_inset
1144 </cell>
1145 </row>
1146 <row>
1147 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1148 \begin_inset Text
1149
1150 \begin_layout Plain Layout
1151 Dutch
1152 \end_layout
1153
1154 \end_inset
1155 </cell>
1156 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1157 \begin_inset Text
1158
1159 \begin_layout Plain Layout
1160 dutch
1161 \end_layout
1162
1163 \end_inset
1164 </cell>
1165 </row>
1166 <row>
1167 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1168 \begin_inset Text
1169
1170 \begin_layout Plain Layout
1171 English
1172 \end_layout
1173
1174 \end_inset
1175 </cell>
1176 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1177 \begin_inset Text
1178
1179 \begin_layout Plain Layout
1180 english, american, australian, british, canadian, newzealand 
1181 \end_layout
1182
1183 \end_inset
1184 </cell>
1185 </row>
1186 <row>
1187 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1188 \begin_inset Text
1189
1190 \begin_layout Plain Layout
1191 Esperanto
1192 \end_layout
1193
1194 \end_inset
1195 </cell>
1196 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1197 \begin_inset Text
1198
1199 \begin_layout Plain Layout
1200 esperanto
1201 \end_layout
1202
1203 \end_inset
1204 </cell>
1205 </row>
1206 <row>
1207 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1208 \begin_inset Text
1209
1210 \begin_layout Plain Layout
1211 Estonian
1212 \end_layout
1213
1214 \end_inset
1215 </cell>
1216 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1217 \begin_inset Text
1218
1219 \begin_layout Plain Layout
1220 estonian
1221 \end_layout
1222
1223 \end_inset
1224 </cell>
1225 </row>
1226 <row>
1227 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1228 \begin_inset Text
1229
1230 \begin_layout Plain Layout
1231 Finnish
1232 \end_layout
1233
1234 \end_inset
1235 </cell>
1236 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1237 \begin_inset Text
1238
1239 \begin_layout Plain Layout
1240 finnish
1241 \end_layout
1242
1243 \end_inset
1244 </cell>
1245 </row>
1246 <row>
1247 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1248 \begin_inset Text
1249
1250 \begin_layout Plain Layout
1251 French
1252 \end_layout
1253
1254 \end_inset
1255 </cell>
1256 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1257 \begin_inset Text
1258
1259 \begin_layout Plain Layout
1260 french, canadien, acadian
1261 \end_layout
1262
1263 \end_inset
1264 </cell>
1265 </row>
1266 <row>
1267 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1268 \begin_inset Text
1269
1270 \begin_layout Plain Layout
1271 Galician
1272 \end_layout
1273
1274 \end_inset
1275 </cell>
1276 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1277 \begin_inset Text
1278
1279 \begin_layout Plain Layout
1280 galician
1281 \end_layout
1282
1283 \end_inset
1284 </cell>
1285 </row>
1286 <row>
1287 <cell alignment="center" valignment="top" topline="true" usebox="none">
1288 \begin_inset Text
1289
1290 \begin_layout Plain Layout
1291 Georgian
1292 \end_layout
1293
1294 \end_inset
1295 </cell>
1296 <cell alignment="center" valignment="top" topline="true" usebox="none">
1297 \begin_inset Text
1298
1299 \begin_layout Plain Layout
1300 georgian
1301 \end_layout
1302
1303 \end_inset
1304 </cell>
1305 </row>
1306 <row>
1307 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1308 \begin_inset Text
1309
1310 \begin_layout Plain Layout
1311 German
1312 \end_layout
1313
1314 \end_inset
1315 </cell>
1316 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1317 \begin_inset Text
1318
1319 \begin_layout Plain Layout
1320 ngerman, naustrian 
1321 \end_layout
1322
1323 \end_inset
1324 </cell>
1325 </row>
1326 <row>
1327 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1328 \begin_inset Text
1329
1330 \begin_layout Plain Layout
1331 Greek
1332 \end_layout
1333
1334 \end_inset
1335 </cell>
1336 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1337 \begin_inset Text
1338
1339 \begin_layout Plain Layout
1340 greek, polutonikogreek 
1341 \end_layout
1342
1343 \end_inset
1344 </cell>
1345 </row>
1346 <row>
1347 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1348 \begin_inset Text
1349
1350 \begin_layout Plain Layout
1351 Hebrew
1352 \end_layout
1353
1354 \end_inset
1355 </cell>
1356 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1357 \begin_inset Text
1358
1359 \begin_layout Plain Layout
1360 hebrew
1361 \end_layout
1362
1363 \end_inset
1364 </cell>
1365 </row>
1366 <row>
1367 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1368 \begin_inset Text
1369
1370 \begin_layout Plain Layout
1371 Hungarian
1372 \end_layout
1373
1374 \end_inset
1375 </cell>
1376 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1377 \begin_inset Text
1378
1379 \begin_layout Plain Layout
1380 magyar, hungarian
1381 \end_layout
1382
1383 \end_inset
1384 </cell>
1385 </row>
1386 <row>
1387 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1388 \begin_inset Text
1389
1390 \begin_layout Plain Layout
1391 Icelandic
1392 \end_layout
1393
1394 \end_inset
1395 </cell>
1396 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1397 \begin_inset Text
1398
1399 \begin_layout Plain Layout
1400 icelandic
1401 \end_layout
1402
1403 \end_inset
1404 </cell>
1405 </row>
1406 <row>
1407 <cell alignment="center" valignment="top" topline="true" usebox="none">
1408 \begin_inset Text
1409
1410 \begin_layout Plain Layout
1411 Indonesian
1412 \end_layout
1413
1414 \end_inset
1415 </cell>
1416 <cell alignment="center" valignment="top" topline="true" usebox="none">
1417 \begin_inset Text
1418
1419 \begin_layout Plain Layout
1420 bahasa
1421 \end_layout
1422
1423 \end_inset
1424 </cell>
1425 </row>
1426 <row>
1427 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1428 \begin_inset Text
1429
1430 \begin_layout Plain Layout
1431 Interlingua
1432 \end_layout
1433
1434 \end_inset
1435 </cell>
1436 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1437 \begin_inset Text
1438
1439 \begin_layout Plain Layout
1440 interlingua
1441 \end_layout
1442
1443 \end_inset
1444 </cell>
1445 </row>
1446 <row>
1447 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1448 \begin_inset Text
1449
1450 \begin_layout Plain Layout
1451 Irish Gaelic
1452 \end_layout
1453
1454 \end_inset
1455 </cell>
1456 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1457 \begin_inset Text
1458
1459 \begin_layout Plain Layout
1460 irish
1461 \end_layout
1462
1463 \end_inset
1464 </cell>
1465 </row>
1466 <row>
1467 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1468 \begin_inset Text
1469
1470 \begin_layout Plain Layout
1471 Italian
1472 \end_layout
1473
1474 \end_inset
1475 </cell>
1476 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1477 \begin_inset Text
1478
1479 \begin_layout Plain Layout
1480 italian
1481 \end_layout
1482
1483 \end_inset
1484 </cell>
1485 </row>
1486 <row>
1487 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1488 \begin_inset Text
1489
1490 \begin_layout Plain Layout
1491 Latin
1492 \end_layout
1493
1494 \end_inset
1495 </cell>
1496 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1497 \begin_inset Text
1498
1499 \begin_layout Plain Layout
1500 latin
1501 \end_layout
1502
1503 \end_inset
1504 </cell>
1505 </row>
1506 <row>
1507 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1508 \begin_inset Text
1509
1510 \begin_layout Plain Layout
1511 Lower Sorbian
1512 \end_layout
1513
1514 \end_inset
1515 </cell>
1516 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1517 \begin_inset Text
1518
1519 \begin_layout Plain Layout
1520 lowersorbian
1521 \end_layout
1522
1523 \end_inset
1524 </cell>
1525 </row>
1526 <row>
1527 <cell alignment="center" valignment="top" topline="true" usebox="none">
1528 \begin_inset Text
1529
1530 \begin_layout Plain Layout
1531 Malay
1532 \end_layout
1533
1534 \end_inset
1535 </cell>
1536 <cell alignment="center" valignment="top" topline="true" usebox="none">
1537 \begin_inset Text
1538
1539 \begin_layout Plain Layout
1540 bahasam
1541 \end_layout
1542
1543 \end_inset
1544 </cell>
1545 </row>
1546 <row>
1547 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1548 \begin_inset Text
1549
1550 \begin_layout Plain Layout
1551 North Sami
1552 \end_layout
1553
1554 \end_inset
1555 </cell>
1556 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1557 \begin_inset Text
1558
1559 \begin_layout Plain Layout
1560 samin
1561 \end_layout
1562
1563 \end_inset
1564 </cell>
1565 </row>
1566 <row>
1567 <cell alignment="center" valignment="top" topline="true" leftline="true" usebox="none">
1568 \begin_inset Text
1569
1570 \begin_layout Plain Layout
1571 Norwegian
1572 \end_layout
1573
1574 \end_inset
1575 </cell>
1576 <cell alignment="center" valignment="top" topline="true" leftline="true" rightline="true" usebox="none">
1577 \begin_inset Text
1578
1579 \begin_layout Plain Layout
1580 norsk, nynorsk 
1581 \end_layout
1582
1583 \end_inset
1584 </cell>
1585 </row>
1586 <row>
1587 <cell alignment="center" valignment="top" topline="true" usebox="none">
1588 \begin_inset Text
1589
1590 \begin_layout Plain Layout
1591 Polish
1592 \end_layout
1593
1594 \end_inset
1595 </cell>
1596 <cell alignment="center" valignment="top" topline="true" usebox="none">
1597 \begin_inset Text
1598
1599 \begin_layout Plain Layout
1600 polish
1601 \end_layout
1602
1603 \end_inset
1604 </cell>
1605 </row>
1606 <row>
1607 <cell alignment="center" valignment="top" topline="true" usebox="none">
1608 \begin_inset Text
1609
1610 \begin_layout Plain Layout
1611 Portuguese
1612 \end_layout
1613
1614 \end_inset
1615 </cell>
1616 <cell alignment="center" valignment="top" topline="true" usebox="none">
1617 \begin_inset Text
1618
1619 \begin_layout Plain Layout
1620 portuguese, brazilian 
1621 \end_layout
1622
1623 \end_inset
1624 </cell>
1625 </row>
1626 <row>
1627 <cell alignment="center" valignment="top" topline="true" usebox="none">
1628 \begin_inset Text
1629
1630 \begin_layout Plain Layout
1631 Romanian
1632 \end_layout
1633
1634 \end_inset
1635 </cell>
1636 <cell alignment="center" valignment="top" topline="true" usebox="none">
1637 \begin_inset Text
1638
1639 \begin_layout Plain Layout
1640 romanian
1641 \end_layout
1642
1643 \end_inset
1644 </cell>
1645 </row>
1646 <row>
1647 <cell alignment="center" valignment="top" topline="true" usebox="none">
1648 \begin_inset Text
1649
1650 \begin_layout Plain Layout
1651 Russian
1652 \end_layout
1653
1654 \end_inset
1655 </cell>
1656 <cell alignment="center" valignment="top" topline="true" usebox="none">
1657 \begin_inset Text
1658
1659 \begin_layout Plain Layout
1660 russian
1661 \end_layout
1662
1663 \end_inset
1664 </cell>
1665 </row>
1666 <row>
1667 <cell alignment="center" valignment="top" topline="true" usebox="none">
1668 \begin_inset Text
1669
1670 \begin_layout Plain Layout
1671 Scottish Gaelic
1672 \end_layout
1673
1674 \end_inset
1675 </cell>
1676 <cell alignment="center" valignment="top" topline="true" usebox="none">
1677 \begin_inset Text
1678
1679 \begin_layout Plain Layout
1680 scottish
1681 \end_layout
1682
1683 \end_inset
1684 </cell>
1685 </row>
1686 <row>
1687 <cell alignment="center" valignment="top" topline="true" usebox="none">
1688 \begin_inset Text
1689
1690 \begin_layout Plain Layout
1691 Serbian
1692 \end_layout
1693
1694 \end_inset
1695 </cell>
1696 <cell alignment="center" valignment="top" topline="true" usebox="none">
1697 \begin_inset Text
1698
1699 \begin_layout Plain Layout
1700 serbian
1701 \end_layout
1702
1703 \end_inset
1704 </cell>
1705 </row>
1706 <row>
1707 <cell alignment="center" valignment="top" topline="true" usebox="none">
1708 \begin_inset Text
1709
1710 \begin_layout Plain Layout
1711 Slovakian
1712 \end_layout
1713
1714 \end_inset
1715 </cell>
1716 <cell alignment="center" valignment="top" topline="true" usebox="none">
1717 \begin_inset Text
1718
1719 \begin_layout Plain Layout
1720 slovak
1721 \end_layout
1722
1723 \end_inset
1724 </cell>
1725 </row>
1726 <row>
1727 <cell alignment="center" valignment="top" topline="true" usebox="none">
1728 \begin_inset Text
1729
1730 \begin_layout Plain Layout
1731 Slovenian
1732 \end_layout
1733
1734 \end_inset
1735 </cell>
1736 <cell alignment="center" valignment="top" topline="true" usebox="none">
1737 \begin_inset Text
1738
1739 \begin_layout Plain Layout
1740 slovene
1741 \end_layout
1742
1743 \end_inset
1744 </cell>
1745 </row>
1746 <row>
1747 <cell alignment="center" valignment="top" topline="true" usebox="none">
1748 \begin_inset Text
1749
1750 \begin_layout Plain Layout
1751 Spanish
1752 \end_layout
1753
1754 \end_inset
1755 </cell>
1756 <cell alignment="center" valignment="top" topline="true" usebox="none">
1757 \begin_inset Text
1758
1759 \begin_layout Plain Layout
1760 spanish
1761 \end_layout
1762
1763 \end_inset
1764 </cell>
1765 </row>
1766 <row>
1767 <cell alignment="center" valignment="top" topline="true" usebox="none">
1768 \begin_inset Text
1769
1770 \begin_layout Plain Layout
1771 Swedish
1772 \end_layout
1773
1774 \end_inset
1775 </cell>
1776 <cell alignment="center" valignment="top" topline="true" usebox="none">
1777 \begin_inset Text
1778
1779 \begin_layout Plain Layout
1780 swedish
1781 \end_layout
1782
1783 \end_inset
1784 </cell>
1785 </row>
1786 <row>
1787 <cell alignment="center" valignment="top" topline="true" usebox="none">
1788 \begin_inset Text
1789
1790 \begin_layout Plain Layout
1791 Turkish
1792 \end_layout
1793
1794 \end_inset
1795 </cell>
1796 <cell alignment="center" valignment="top" topline="true" usebox="none">
1797 \begin_inset Text
1798
1799 \begin_layout Plain Layout
1800 turkish
1801 \end_layout
1802
1803 \end_inset
1804 </cell>
1805 </row>
1806 <row>
1807 <cell alignment="center" valignment="top" topline="true" usebox="none">
1808 \begin_inset Text
1809
1810 \begin_layout Plain Layout
1811 Ukrainian
1812 \end_layout
1813
1814 \end_inset
1815 </cell>
1816 <cell alignment="center" valignment="top" topline="true" usebox="none">
1817 \begin_inset Text
1818
1819 \begin_layout Plain Layout
1820 ukrainian
1821 \end_layout
1822
1823 \end_inset
1824 </cell>
1825 </row>
1826 <row>
1827 <cell alignment="center" valignment="top" topline="true" usebox="none">
1828 \begin_inset Text
1829
1830 \begin_layout Plain Layout
1831 Upper Sorbian
1832 \end_layout
1833
1834 \end_inset
1835 </cell>
1836 <cell alignment="center" valignment="top" topline="true" usebox="none">
1837 \begin_inset Text
1838
1839 \begin_layout Plain Layout
1840 uppersorbian
1841 \end_layout
1842
1843 \end_inset
1844 </cell>
1845 </row>
1846 <row>
1847 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
1848 \begin_inset Text
1849
1850 \begin_layout Plain Layout
1851 Welsh
1852 \end_layout
1853
1854 \end_inset
1855 </cell>
1856 <cell alignment="center" valignment="top" topline="true" bottomline="true" usebox="none">
1857 \begin_inset Text
1858
1859 \begin_layout Plain Layout
1860 welsh
1861 \end_layout
1862
1863 \end_inset
1864 </cell>
1865 </row>
1866 </lyxtabular>
1867
1868 \end_inset
1869
1870
1871 \end_layout
1872
1873 \begin_layout Bibliography
1874 \begin_inset CommandInset bibitem
1875 LatexCommand bibitem
1876 key "bicaption"
1877 literal "true"
1878
1879 \end_inset
1880
1881 Documentation of the \SpecialChar LaTeX
1882  package 
1883 \series bold
1884
1885 \begin_inset CommandInset href
1886 LatexCommand href
1887 name "bicaption"
1888 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/bicaption.pdf"
1889 literal "false"
1890
1891 \end_inset
1892
1893
1894 \end_layout
1895
1896 \begin_layout Bibliography
1897 \begin_inset CommandInset bibitem
1898 LatexCommand bibitem
1899 key "caption"
1900 literal "true"
1901
1902 \end_inset
1903
1904 Documentation of the \SpecialChar LaTeX
1905  package 
1906 \series bold
1907
1908 \begin_inset CommandInset href
1909 LatexCommand href
1910 name "caption"
1911 target "ftp://tug.ctan.org/pub/tex-archive/macros/latex/contrib/caption/caption-eng.pdf"
1912 literal "false"
1913
1914 \end_inset
1915
1916
1917 \end_layout
1918
1919 \end_body
1920 \end_document