aboutsummaryrefslogtreecommitdiff
path: root/reproduce/software/config/software_acknowledge_context.sh
blob: f1454c0ab58066c7e06921f5fa6ab00f1c104696 (plain)
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
#!/usr/bin/env sh

# Surrounding text for software acknowledgement and citation. The list of
# names, versions and citations of the software are written by an automatic
# script. However, through this file, users have the option to specify the
# text surrounding those lists.
#
# We recommend to leave these values untouched at first, after building
# your PDF, you can see how they surround the list of software you used in
# your project to make a smoothly readable English text. Afterwards, please
# feel free to modify them as you wish.
#
# Copyright (C) 2021 Boud Roukema <boud@cosmo.torun.pl>
# Copyright (C) 2021 Mohammad Akhlaghi <mohammad@akhlaghi.org>
#
# This script 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.
#
# This script 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.
#
# A copy of the GNU General Public License is available at
# <http://www.gnu.org/licenses/>.

# WARNING:
# In contrast to most configure files in maneage, this configure file is
# technically a shell script, to be called by 'configure.sh', so the
# variables defined here must follow 'shell' syntax, not 'make' syntax.

# These variables will be exported to the 'configure.sh' script - so
# descriptive, unique names should be used, to reduce the chance of
# conflicts between identically named variables.

# COMMENT:
# Sentences have a tendancy to become very long. To avoid making the
# variable values too long (and thus making this file hard to read), one
# method is to break the sentence into smaller components and build the
# full sentence gradually, similar to what we have done with 'str' in the
# examples below. Each time, the value of 'str' is re-written by appending
# its previous value with the rest of the sentence.

# COMMENT:
# As of 2020-06-10, the general issue of how to best cite software within
# maneage, especially a full list of software in the Acknowledgments
# section, remains wide open. See
# https://savannah.nongnu.org/task/index.php?15318 for some technical
# aspects of software citation.





# Add your definitions of the LaTeX text here.
#
# To override a default but generate no text, use a string of non-zero
# length such as "{}" that will have only minor effects in LaTeX.

# An introduction to the software acknowledgement.
thank_software_introduce=

# The text to be used before listing C/C++ programs and libraries.
thank_progs_libs=

# The text to be used before listing Python modules.
thank_python=

# The text to be used before listing LaTeX packages.
thank_latex=

# Concluding remarks.
thank_software_conclude=





# Defaults
# --------
#
# These are the default values which are only written into the variable if
# you don't specify a value above
if [ "x$thank_software_introduce" = "x" ]; then
    thank_software_introduce=""
fi

if [ "x$thank_progs_libs" = "x" ]; then
    str="This research was done with the following free software"
    str="$str programs and libraries:"
    thank_progs_libs="$str"
fi

if [ "x$thank_python" = "x" ]; then
    thank_python="Within Python, the following modules were used:"
fi

if [ "x$thank_latex" = "x" ]; then
    str="The \LaTeX{} source of the paper was compiled to make the"
    str="$str PDF using the following packages:"
    thank_latex="$str"
fi

if [ "x${thank_software_conclude}" = "x" ]; then
    str="We are very grateful to all their creators for freely "
    str="$str providing this necessary infrastructure. This research "
    str="$str (and many other projects) would not be possible without "
    str="$str them."
    thank_software_conclude="$str"
fi