mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-15 07:16:48 +00:00
1aa4987b2f
Compilation of our Seminar example file fails on updated TL20. The maintainer of "Seminar" is not planning to fix the core issue and states the following (in a private email with permission to quote): it is a problem with the new hook management of the current latex.ltx seminar is a quite old package and there is no reason to use it with a new LaTeX format. It won't be fixed, so the usual way is to use the package latexrealease to get the old hook management. This commit adds a note to the example files explaining the workaround of exporting to a .tex file and prepending the following line: \RequirePackage[2020-02-02]{latexrelease} We now invert the relevant tests. |
||
---|---|---|
.. | ||
ar | ||
Articles | ||
Books | ||
ca | ||
cs | ||
Curricula_Vitae | ||
da | ||
de | ||
el | ||
es | ||
eu | ||
External_Material | ||
fa | ||
fr | ||
gl | ||
Graphics_and_Insets | ||
Handouts | ||
he | ||
hu | ||
id | ||
it | ||
ja | ||
ko | ||
Letters | ||
Modules | ||
nb | ||
nl | ||
pl | ||
Posters | ||
Presentations | ||
pt_BR | ||
pt_PT | ||
ro | ||
ru | ||
Scripts | ||
sk | ||
sl | ||
sr | ||
sv | ||
uk | ||
biblioExample.bib | ||
CMakeLists.txt | ||
Example_%28LyXified%29.lyx | ||
Example_%28raw%29.lyx | ||
Localization_Test.lyx | ||
README.new_examples | ||
Welcome.lyx |
DIRECTORY STRUCTURE & FILE NAMING ================================== The examples directory has the following structure examples/[language/]category/[subcategory] Please use the layout category (with identical spelling to assure translation) as category subdirectory (e.g., "Letters"). See \DeclareCategory entry of the layout which corresponds to your example. Note the handling of special characters below. If your example consists of one file only, and if there are no further examples relating to your layout yet, use the layout name, as defined in \DeclareLaTeXClass, as file name. In any case, use a verbose, transparent name (do not use insider acronyms as file names). Note the handling of special characters below. If your example consists of multiple files, use an additional subdirectory. Use the layout name, as defined in \DeclareLaTeXClass, as subcategory subfolder name. Give the files verbose, transparent names that clarify the function of the respective file in the examples bundle. Note the handling of special characters below. The optional language subdirectory that immediately follows examples/ uses the language code (e.g., 'de' for German). Use this if you provide a translation of an existing English example. The language subdirectory expands to the same subfolders than the English version and uses the same [English) filename (e.g., examples/Letters/myletter.lyx > examples/fr/Letters/myletter.lyx). NB: SPECIAL CHARACTERS IN FILE AND DIRECTORY NAMES: =================================================== The following characters in file and directory names must be substituted, since they break LyX building with autotools: * Blanks by '_' (e.g., My_Layout.lyx) * Parentheses by %28 and %29 (e.g., My_Layout_%28v._1%29.lyx) * Apersands by %26 (e.g., Journal_of_This_%26_That.lyx) The substitution characters will be replaced again for LyX for translation and GUI display. THINGS TO CHECK BEFORE COMMITTING: ================================== New files must be added to Makefile.am. If you add a new (sub)folder, you must also create a new category in Makefile.am (cf. dehandoutexamplesdir and dist_phdthesistemplates_DATA as example). Please make sure before you commit (in a text editor) that the example that the file has the correct \origin specification. It should begin with /systemlyxdir/ and then point towards the subdirectory your file is in, e.g. \origin /systemlyxdir/templates/es/Presentations/ This is particularly important if your file includes other files (such as graphics, bibliographies, children).