-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_quarto.yml
108 lines (103 loc) · 3.24 KB
/
_quarto.yml
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
project:
type: website
render:
- 404.qmd
- index.qmd
- introduction.qmd
- general/*.qmd
- part-01/*.qmd
- part-02/*.qmd
- part-03/*.qmd
website:
title: "Optimization with Julia"
repo-url: https://github.com/beyondsimulations/Optimization-with-Julia
site-url: https://beyondsimulations.github.io/Optimization-with-Julia
bread-crumbs: true
sidebar:
style: floating
logo: https://images.beyondsimulations.com/logo/midjourney_square_left.png
collapse-level: 2
search: true
contents:
- text: "Welcome"
href: index.qmd
- text: "Introduction"
href: introduction.qmd
- section: "I. First Steps"
contents:
- text: "01 - Variables"
href: part-01/tutorial-01-01-variables.qmd
- text: "02 - Vectors"
href: part-01/tutorial-01-02-vectors.qmd
- text: "03 - Comparisons"
href: part-01/tutorial-01-03-comparisons.qmd
- text: "04 - Loops"
href: part-01/tutorial-01-04-loops.qmd
- text: "05 - Dictionaries"
href: part-01/tutorial-01-05-dicts.qmd
- section: "II. Data"
contents:
- text: "01 - Functions"
href: part-02/tutorial-02-01-functions.qmd
- text: "02 - Packages"
href: part-02/tutorial-02-02-handling.qmd
- text: "03 - DataFrames"
href: part-02/tutorial-02-03-DataFrames.qmd
- text: "04 - Input and Output"
href: part-02/tutorial-02-04-IO.qmd
- text: "05 - Plotting"
href: part-02/tutorial-02-05-Plotting.qmd
- section: "III. Optimization"
contents:
- text: "01 - JuMP"
href: part-03/tutorial-03-01-jump.qmd
- text: "02 - Bounds"
href: part-03/tutorial-03-02-bounds.qmd
- text: "03 - Constraints"
href: part-03/tutorial-03-03-constraints.qmd
- text: "04 - Advanced"
href: part-03/tutorial-03-04-advanced.qmd
- text: "05 - Transport"
href: part-03/tutorial-03-05-transport.qmd
- section: "Cheatsheets"
contents:
- text: "Julia"
href: general/cheatsheet-julia.qmd
- text: "JuMP"
href: general/cheatsheet-jump.qmd
- text: "Literature"
href: general/literature.qmd
page-footer:
center: "Mathematical Optimization with Julia, Tobias Vlćek</br>CC BY-NC-SA 4.0"
right:
- icon: github
href: https://github.com/beyondsimulations/Optimization-with-Julia
- icon: linkedin
href: https://linkedin.com/in/tobiasvlcek
format:
html:
theme: [litera, styles.scss]
toc: true
highlight-style: arrow
linkcolor: "#a60000"
code-copy: true
code-link: true
toc-location: right
code-overflow: wrap
code-block-bg: true
code-block-border-left: "#AD1F00"
include-in-header:
- general/header.html
pdf:
documentclass: report
geometry:
- margin=1in
fontfamily: roboto
fontfamilyoptions: sfdefault
colorlinks: true
include-in-header:
text: |
\usepackage{fvextra}
\DefineVerbatimEnvironment{Highlighting}{Verbatim}{breaklines,commandchars=\\\{\}}
execute:
freeze: auto