Fixed page numbering, danke Janis <3, started working on the remaining issues

This commit is contained in:
Marius Drechsler 2024-08-26 18:06:07 +02:00
parent 2be84b715f
commit b8a0ee46f5
20 changed files with 519 additions and 169 deletions

View file

@ -5,8 +5,8 @@
plot.plot(size: (10,4),
x-tick-step: none,
x-ticks: ((1, [1]), (2, [2]), (3, [3]), (4, [4]), (5, [5]), (6, [6])),
y-label: $(x_"1" (m)) / (x_"100" (m))$,
x-label: $m$,
y-label: $frac(op("BER")(1, 2^M),op("BER")(100, 2^M))$,
x-label: $2^M$,
y-tick-step: 500,
axis-style: "left",
x-min: 0,

View file

@ -25,15 +25,15 @@
)
plot.plot(
y-label: $"Bit error rate"$,
x-label: "Operating configuration",
y-label: "Bit error rate",
x-label: "Enrollment, reconstruction temperature",
x-tick-step: none,
x-ticks: conf,
y-format: formatter,
y-tick-step: 0.5,
axis-style: "scientific-auto",
size: (16,6),
plot.add(errorrate, axes: ("x", "y"), style: (stroke: (paint: red))),
plot.add(errorrate, axes: ("x", "y"), style: (stroke: (paint: red)), label: $op("BER")(100, 2^2)$),
plot.add-hline(1)
)

View file

@ -3,6 +3,8 @@
#let line_style = (stroke: (paint: black, thickness: 2pt))
#let dashed = (stroke: (dash: "dashed"))
#canvas({
import draw: *
set-style(axes: (shared-zero: false))
plot.plot(size: (8,6),
x-tick-step: 0.25,
y-label: $cal(E)(2, 2, tilde(x))$,

View file

@ -3,6 +3,8 @@
#let line_style = (stroke: (paint: black, thickness: 2pt))
#let dashed = (stroke: (dash: "dashed"))
#canvas({
import draw: *
set-style(axes: (shared-zero: false))
plot.plot(size: (8,6),
x-tick-step: 0.25,
y-label: $cal(E)(3, 2, tilde(x))$,

View file

@ -1,8 +1,10 @@
#import "@preview/cetz:0.2.2": canvas, plot
#import "@preview/cetz:0.2.2": canvas, plot, draw, palette
#let line_style = (stroke: (paint: black, thickness: 2pt))
#let dashed = (stroke: (dash: "dashed"))
#canvas({
import draw: *
set-style(axes: (shared-zero: false))
plot.plot(size: (8,6),
x-tick-step: 0.25,
y-label: $cal(Q)(2, 1, tilde(x))$,
@ -10,11 +12,12 @@
y-tick-step: none,
y-ticks: ((0.25, [00]), (0.5, [01]), (0.75, [10]), (1, [11])),
axis-style: "left",
x-min: 0,
//x-min: 0,
x-max: 1,
y-min: 0,
y-max: 1,{
plot.add(((0,0.25), (0.25,0.25), (0.5,0.5), (0.75,0.75), (1, 1)), line: "vh", style: line_style)
//plot.add(((0,0), (0,0)), style: (stroke: none))
plot.add-hline(0.25, 0.5, 0.75, 1, style: dashed)
plot.add-vline(0.25, 0.5, 0.75, 1, style: dashed)
})