40 lines
2.4 KiB
XML
40 lines
2.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
||
<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
|
||
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="ApZotGlobalOptions" script:language="StarBasic">REM ***** BASIC *****
|
||
|
||
'************************************************************************
|
||
'* Copyright 2021 by Bastien Dumont (bastien.dumont@posteo.net)
|
||
'*
|
||
'* This file is part of the ApresZotero library.
|
||
'*
|
||
'* ApresZotero is free software: you can redistribute it and/or modify
|
||
'* it under the terms of the GNU General Public License as published by
|
||
'* the Free Software Foundation, either version 3 of the License, or
|
||
'* (at your option) any later version.
|
||
'*
|
||
'* ApresZotero is distributed in the hope that it will be useful,
|
||
'* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
'* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
'* GNU General Public License for more details.
|
||
'*
|
||
'* You should have received a copy of the GNU General Public License
|
||
'* along with ApresZotero. If not, see <https://www.gnu.org/licenses/>.
|
||
'*
|
||
'************************************************************************
|
||
|
||
Public Const nExponentCharSizePercentage As Integer = 33
|
||
Public Const nExponentCharHeightPercentage As Integer = 58
|
||
Public Const nBigZoomFactor As Integer = 350
|
||
Public Const nMaxArray As Integer = 1002
|
||
Public Const sSeparatorForListOfAbbreviations As String = "|"
|
||
Public Const sReplacementSeparatorForListOfAbbreviations As String = " : "
|
||
Public Const sAbbrevRefSeparator As String = " : "
|
||
Public Const sAbbrevRefSuffix As String = "."
|
||
Public Const sFirstCitationPrefix As String = ", cité n. "
|
||
Public Const nDefaultCharHeight As Integer = 12
|
||
Public Const sGreekTextRegex As String = "[ΑΖΕΡΤΨΥΙΟΠΘΣΔΦΓΗϞΚΛΜΩΞΧϐΒΝαζερτψυιοπθσδφγηϟκλμωξχϐβνϡϠ]*[αζερτψυιοπθσδφγηϟκλμωξχϐβνϡϠ] ?[,;:!.·]?"
|
||
Public Const GreekFont As String = "IFAO-Grec Unicode"
|
||
Public Const sBibliographyStyleName As String = "Bibliography 1"
|
||
Public Const sRectoVersoRegex As String = "[0-9]+[rv](-v)?"
|
||
Public Const sNumberOrIssueRegex As String = " nos? " ' last character is a non-breakable space
|
||
</script:module> |