forked from seap-udea/Relatividad-Zuluaga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mybook.conf
108 lines (96 loc) · 3.81 KB
/
mybook.conf
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
#######################################################################
# /$$ /$$ /$$$$$$$ /$$ #
# | $$$ /$$$ | $$__ $$ | $$ #
# | $$$$ /$$$$ /$$ /$$| $$ \ $$ /$$$$$$ /$$$$$$ | $$ /$$ #
# | $$ $$/$$ $$| $$ | $$| $$$$$$$ /$$__ $$ /$$__ $$| $$ /$$/ #
# | $$ $$$| $$| $$ | $$| $$__ $$| $$ \ $$| $$ \ $$| $$$$$$/ #
# | $$\ $ | $$| $$ | $$| $$ \ $$| $$ | $$| $$ | $$| $$_ $$ #
# | $$ \/ | $$| $$$$$$$| $$$$$$$/| $$$$$$/| $$$$$$/| $$ \ $$ #
# |__/ |__/ \____ $$|_______/ \______/ \______/ |__/ \__/ #
# /$$ | $$ #
# | $$$$$$/ #
# \______/ #
#######################################################################
# (c) Jorge I. Zuluaga (2019) #
#######################################################################
#############################################################
#MINIMUM MAKEFILE VARIABLES
#############################################################
#Operating system
SYSTEM="macos"
#Python command
PYTHON="python3"
#Python package associated to book
PACK="package"
#Directory where the notebooks are located
SRC_DIR="."
#############################################################
#BEHAVIOR
#############################################################
#Verbosity
VERBOSE=1
#Produce debugging information in in the table of contents
DEBUG=1
#Execute class notebooks
NB_EXECUTE=0
#Hide solutions
SHOW_SOLUTIONS=0
#Annotate index
ANNOTATE=1
#Levels of sectioning
LEVELS=4
#############################################################
#BASIC CONFIGURATION
#############################################################
#File with book structure
BOOK="mybook.py"
#Problems directory
PROBLEMS="problems/"
#URL of the book
BOOK_URL="http://github.com/seap-udea/Relatividad-Zuluaga"
#Book information
TITLE="Relatividad y Gravitación"
SUBTITLE="Teoría, algoritmos y problemas"
AUTHOR_NAME="Jorge I. Zuluaga"
AUTHOR_TITLE="Profesor titular de Astronomía y Física"
AUTHOR_AFFILIATION="Instituto de Física, Facultad de Ciencias Exactas y Naturales"
AUTHOR_INSTITUTION="Universidad de Antioquia"
#Title of bibliography file
BIB_HEADER="Referencias"
#Licensing
LICENSE="CC-BY-NC-ND-4.0"
LICENSE_URL="https://creativecommons.org/licenses/by-nc-nd/4.0/"
#############################################################
#BOOK FILES
#############################################################
#Notebook with the header of the book
HEAD="Encabezado.ipynb"
#Notebook with the tests for
TESTS="Pruebas.ipynb"
#Notebook with the tests for
INSTALL="Instalacion.ipynb"
#Test command
TEST_CMD="jupyter nbconvert --to notebook --execute test.ipynb"
#Objects required by notebooks
WORKING_OBJECTS="""package,figures,log,export.py"""
#############################################################
#PUBLICATION OPTIONS
#############################################################
#Directory to publish
PUBLISH_DIR="../../../Relatividad-Zuluaga/"
BOOK_PACKAGES="""numpy,scipy,matplotlib,pandas"""
#############################################################
#GIT INFORMATION
#############################################################
GIT_USER="seap-udea"
GIT_REPO="Relatividad-Zuluaga"
#############################################################
#IF YOU CHANGE THIS VARIABLES PLEASE EDIT IN *.tplx:
# \documentclass{mybook}, \bibliographystyle{mybook}
#############################################################
#Name of book (output files will have this name)
BOOKNAME="mybook"
#File with bibliography style (required for make bib)
BIB_STYLE="mybook"
#File with latex styles (required for make bib)
CLS_FILE="mybook.cls"