diff --git a/Redaction/Configuration.xba b/Redaction/Configuration.xba index d06346e..62c8f70 100644 --- a/Redaction/Configuration.xba +++ b/Redaction/Configuration.xba @@ -13,6 +13,7 @@ Public Const template_name_pa = "Философская антрополо Public Const template_name_pcr = "Проблемы цивилизационного развития" Public Const template_name_eifn = "Эпистемология и философия науки" Public Const template_name_et = "Этическая мысль" +Public Const template_name_ephe = "Электронная философская энциклопедия" Public Const template_name_iph_big = "Большой формат издания" Public Const template_manual = "custom_selected_template" Public Const articles_path = "/templates/articles/" @@ -336,6 +337,7 @@ Function getTemplateNames() As Variant AddToArray(names, template_name_pcr) AddToArray(names, template_name_eifn) AddToArray(names, template_name_et) + AddToArray(names, template_name_ephe) AddToArray(names, template_name_iph_big) getTemplateNames = names End Function @@ -385,6 +387,9 @@ Function getTemplateFile(templateName As String) As String Case template_name_hpe getTemplateFile = extensionPath() & articles_path & "статья_ифе.ott" Exit Function + Case template_name_ephe + getTemplateFile = extensionPath() & articles_path & "статья_эфэ.ott" + Exit Function Case template_name_iph_big getTemplateFile = extensionPath() & "/templates/books/большой_формат_для_архива.ott" Exit Function diff --git a/templates/articles/статья_эфэ.ott b/templates/articles/статья_эфэ.ott new file mode 100644 index 0000000..cf7c755 Binary files /dev/null and b/templates/articles/статья_эфэ.ott differ