updating for new version of score

legacy
Michael Winter 5 years ago
parent b463842914
commit 374d67df52

@ -1,10 +1,8 @@
a history of the domino problemo
note that this code produces files in two subfolders
the supercollider code makes png files in a subfolder called "visualization"
the klayout code reads the above files and outputs gds files in a subfolder called "gds"
these are included in the attachment for the code release here:
https://gitea.unboundedpress.org/mwinter/a_history_of_the_domino_problem/releases
essential details of the contents of this repository are outlined in the score/documentation at: https://www.unboundedpress.org/scores/a_history_of_the_domino_problem_score.pdf
more extensive readme coming soon...
note that all large files are within the attachment for the code release here at: https://gitea.unboundedpress.org/mwinter/a_history_of_the_domino_problem/releases
as more extensive documentation of the interface is written it will be posted here in this README.

@ -1,171 +0,0 @@
// Include the AccelStepper library:
#include <AccelStepper.h>
// Define stepper motor connections and motor interface type. Motor interface type must be set to 1 when using a driver:
// Set stepper 1 pins
#define m1LimitNegPin 2
#define m1LimitPosPin 3
#define m1DirPin 4
#define m1StepPin 5
#define m1PowerPin 6
// Set stepper 2 pins
#define m2LimitNegPin 9
#define m2LimitPosPin 10
#define m2DirPin 11
#define m2StepPin 12
#define m2PowerPin 13
#define motorInterfaceType 1
// Create a new instance of the AccelStepper class:
AccelStepper m1Stepper = AccelStepper(motorInterfaceType, m1StepPin, m1DirPin);
AccelStepper m2Stepper = AccelStepper(motorInterfaceType, m2StepPin, m2DirPin);
unsigned long previousMillis = 0;
unsigned long currentMillis = 0;
void setup() {
pinMode(m1PowerPin, OUTPUT);
pinMode(m1LimitNegPin, INPUT);
pinMode(m1LimitPosPin, INPUT);
pinMode(m2PowerPin, OUTPUT);
pinMode(m2LimitNegPin, INPUT);
pinMode(m2LimitPosPin, INPUT);
Serial.begin(115200);
// Set the maximum speed in steps per second:
m1Stepper.setMaxSpeed(200);
m1Stepper.setAcceleration(100);
m1Stepper.setCurrentPosition(0);
m2Stepper.setMaxSpeed(200);
m2Stepper.setAcceleration(100);
m2Stepper.setCurrentPosition(0);
}
int integerValue=0;
bool negativeNumber = false; // track if number is negative
char incomingByte;
void loop() {
currentMillis = millis();
int m1EorNeg = digitalRead(m1LimitNegPin);
int m1EorPos = digitalRead(m1LimitPosPin);
int m2EorNeg = digitalRead(m2LimitNegPin);
int m2EorPos = digitalRead(m2LimitPosPin);
if (currentMillis - previousMillis >= 1000 == true ) {
Serial.println("------Stepper 1------");
Serial.print("m1EorPos:");
Serial.println(m1EorNeg);
Serial.print("m1EorNeg: ");
Serial.println(m1EorPos);
Serial.print("m1CurPos: ");
Serial.println(m1Stepper.currentPosition() * -1);
Serial.print("m1TarPos: ");
Serial.println(m1Stepper.targetPosition() * -1);
Serial.println("");
Serial.println("------Stepper 2------");
Serial.print("m2EorPos: ");
Serial.println(m2EorNeg);
Serial.print("m2EorNeg: ");
Serial.println(m2EorPos);
Serial.print("m2CurPos: ");
Serial.println(m2Stepper.currentPosition() * -1);
Serial.print("m2TarPos: ");
Serial.println(m2Stepper.targetPosition() * -1);
Serial.println("");
previousMillis = currentMillis;
}
// limit switch logic for stepper 1
if ((m1EorNeg < m1EorPos) && (m1Stepper.targetPosition() > m1Stepper.currentPosition())) {
m1Stepper.setSpeed(0);
m1Stepper.moveTo(m1Stepper.currentPosition());
digitalWrite(m1PowerPin, HIGH);
} else if ((m1EorNeg > m1EorPos) && (m1Stepper.targetPosition() < m1Stepper.currentPosition())) {
m1Stepper.setSpeed(0);
m1Stepper.moveTo(m1Stepper.currentPosition());
digitalWrite(m1PowerPin, HIGH);
} else if (m1Stepper.targetPosition() == m1Stepper.currentPosition()) {
digitalWrite(m1PowerPin, HIGH);
} else {
digitalWrite(m1PowerPin, LOW);
m1Stepper.run();
}
// limit switch logic for stepper 2
if ((m2EorNeg < m2EorPos) && (m2Stepper.targetPosition() > m2Stepper.currentPosition())) {
m2Stepper.setSpeed(0);
m2Stepper.moveTo(m2Stepper.currentPosition());
digitalWrite(m2PowerPin, HIGH);
} else if ((m2EorNeg > m2EorPos) && (m2Stepper.targetPosition() < m2Stepper.currentPosition())) {
m2Stepper.setSpeed(0);
m2Stepper.moveTo(m1Stepper.currentPosition());
digitalWrite(m2PowerPin, HIGH);
} else if (m2Stepper.targetPosition() == m2Stepper.currentPosition()) {
digitalWrite(m2PowerPin, HIGH);
} else {
digitalWrite(m2PowerPin, LOW);
m2Stepper.run();
}
if (Serial.available() > 0) { // something came across serial
integerValue = 0; // throw away previous integerValue
negativeNumber = false; // reset for negative
while(1) { // force into a loop until 'n' is received
incomingByte = Serial.read();
if (incomingByte == ' ') break; // exit the while(1), we're done receiving
if (incomingByte == -1) continue; // if no characters are in the buffer read() returns -1
if (incomingByte == '-') {
negativeNumber = true;
continue;
}
integerValue *= 10; // shift left 1 decimal place
integerValue = ((incomingByte - 48) + integerValue); // convert ASCII to integer, add, and shift left 1 decimal place
}
if (negativeNumber)
integerValue = -integerValue;
integerValue = -integerValue; // this makes up for the fact that things are backwards
m1Stepper.moveTo(integerValue);
integerValue = 0; // throw away previous integerValue
negativeNumber = false; // reset for negative
while(1) { // force into a loop until 'n' is received
incomingByte = Serial.read();
if (incomingByte == '\n') break; // exit the while(1), we're done receiving
if (incomingByte == -1) continue; // if no characters are in the buffer read() returns -1
if (incomingByte == '-') {
negativeNumber = true;
continue;
}
integerValue *= 10; // shift left 1 decimal place
integerValue = ((incomingByte - 48) + integerValue); // convert ASCII to integer, add, and shift left 1 decimal place
}
if (negativeNumber)
integerValue = -integerValue;
integerValue = -integerValue; // this makes up for the fact that things are backwards
m2Stepper.moveTo(integerValue);
}
//delay(100);
}

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018/Arch Linux) (preloaded format=pdflatex 2019.4.22) 6 JUL 2019 23:47
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:31
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -255,12 +255,7 @@ Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
))))
(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
)
@ -297,29 +292,29 @@ Package pdftex.def Info: ammann_pitches.pdf used on input line 42.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf used on input
line 58.
line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf used on input
line 58.
line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
<../../score/lilypond/ammann/ammann.pdf, id=5, page=1, 597.51233pt x 845.0471pt
>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
(Font) size <24.88> substituted on input line 58.
(Font) size <24.88> substituted on input line 59.
[1
@ -327,17 +322,17 @@ LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page1 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[2 <../../score/lilypond/ammann/ammann.pdf>]
@ -346,17 +341,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page2 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page2 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page2 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[3 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=58, page=3, 597.51233pt x 845.0471p
@ -364,17 +359,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page3 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page3 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page3 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[4 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=62, page=4, 597.51233pt x 845.0471p
@ -382,17 +377,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page4 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page4 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page4 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[5 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=66, page=5, 597.51233pt x 845.0471p
@ -400,17 +395,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page5 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page5 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page5 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[6 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=70, page=6, 597.51233pt x 845.0471p
@ -418,17 +413,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page6 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page6 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page6 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[7 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=75, page=7, 597.51233pt x 845.0471p
@ -436,17 +431,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page7 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page7 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page7 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[8 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=79, page=8, 597.51233pt x 845.0471p
@ -454,17 +449,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page8 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page8 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page8 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[9 <../../score/lilypond/ammann/ammann.pdf>]
@ -473,17 +468,17 @@ t>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page9 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page9 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page9 used on
input line 58.
input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[10 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=87, page=10, 597.51233pt x 845.0471
@ -491,17 +486,17 @@ pt>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page10 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page10 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page10 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[11 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=91, page=11, 597.51233pt x 845.0471
@ -509,17 +504,17 @@ pt>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page11 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page11 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page11 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[12 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=95, page=12, 597.51233pt x 845.0471
@ -527,17 +522,17 @@ pt>
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page12 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page12 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page12 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[13 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=100, page=13, 597.51233pt x 845.047
@ -545,17 +540,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page13 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page13 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page13 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[14 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=104, page=14, 597.51233pt x 845.047
@ -563,17 +558,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page14 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page14 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page14 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[15 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=108, page=15, 597.51233pt x 845.047
@ -581,17 +576,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page15 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page15 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page15 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[16 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=112, page=16, 597.51233pt x 845.047
@ -599,17 +594,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page16 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page16 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page16 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[17 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=116, page=17, 597.51233pt x 845.047
@ -617,17 +612,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page17 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page17 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page17 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[18 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=120, page=18, 597.51233pt x 845.047
@ -635,17 +630,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page18 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page18 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page18 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[19 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=125, page=19, 597.51233pt x 845.047
@ -653,17 +648,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page19 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page19 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page19 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[20 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=129, page=20, 597.51233pt x 845.047
@ -671,17 +666,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page20 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page20 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page20 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[21 <../../score/lilypond/ammann/ammann.pdf>]
@ -690,17 +685,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page21 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page21 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page21 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[22 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=137, page=22, 597.51233pt x 845.047
@ -708,17 +703,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page22 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page22 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page22 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[23 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=141, page=23, 597.51233pt x 845.047
@ -726,17 +721,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page23 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page23 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page23 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[24 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=145, page=24, 597.51233pt x 845.047
@ -744,17 +739,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page24 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page24 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page24 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[25 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=150, page=25, 597.51233pt x 845.047
@ -762,17 +757,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 25>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page25 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 25>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page25 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 25>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page25 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[26 <../../score/lilypond/ammann/ammann.pdf>]
@ -781,17 +776,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 26>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page26 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 26>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page26 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 26>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page26 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[27 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=158, page=27, 597.51233pt x 845.047
@ -799,17 +794,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 27>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page27 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 27>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page27 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 27>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page27 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[28 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=162, page=28, 597.51233pt x 845.047
@ -817,17 +812,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 28>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page28 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 28>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page28 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 28>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page28 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[29 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=166, page=29, 597.51233pt x 845.047
@ -835,17 +830,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 29>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page29 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 29>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page29 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 29>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page29 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[30 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=170, page=30, 597.51233pt x 845.047
@ -853,17 +848,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 30>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page30 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 30>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page30 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 30>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page30 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[31 <../../score/lilypond/ammann/ammann.pdf>]
@ -872,17 +867,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 31>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page31 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 31>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page31 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 31>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page31 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[32 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=179, page=32, 597.51233pt x 845.047
@ -890,17 +885,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 32>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page32 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 32>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page32 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 32>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page32 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[33 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=183, page=33, 597.51233pt x 845.047
@ -908,17 +903,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 33>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page33 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 33>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page33 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 33>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page33 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[34 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=187, page=34, 597.51233pt x 845.047
@ -926,17 +921,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 34>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page34 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 34>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page34 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 34>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page34 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[35 <../../score/lilypond/ammann/ammann.pdf>]
<../../score/lilypond/ammann/ammann.pdf, id=191, page=35, 597.51233pt x 845.047
@ -944,17 +939,17 @@ n input line 58.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 35>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page35 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 35>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page35 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/ammann/ammann.pdf Graphic file (type pdf)
<use ../../score/lilypond/ammann/ammann.pdf, page 35>
Package pdftex.def Info: ../../score/lilypond/ammann/ammann.pdf , page35 used o
n input line 58.
n input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[36 <../../score/lilypond/ammann/ammann.pdf>] (./ammann_score.aux)
@ -964,10 +959,10 @@ LaTeX Font Warning: Size substitutions with differences
)
Here is how much of TeX's memory you used:
6279 strings out of 492616
115618 string characters out of 6135177
188846 words of memory out of 5000000
10112 multiletter control sequences out of 15000+600000
6276 strings out of 492623
115586 string characters out of 6135670
188854 words of memory out of 5000000
10110 multiletter control sequences out of 15000+600000
5940 words of font info for 21 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
41i,18n,51p,1011b,514s stack positions out of 5000i,500n,10000p,200000b,80000s
@ -986,7 +981,7 @@ c/tex-gyre/qcsb.pfb): glyph `uni2193' undefined
></usr/share/texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfb></usr/share/texmf
-dist/fonts/type1/public/tex-gyre/qcsr.pfb></usr/share/texmf-dist/fonts/type1/p
ublic/tex-gyre/qcsri.pfb>
Output written on ammann_score.pdf (36 pages, 1302418 bytes).
Output written on ammann_score.pdf (36 pages, 1302449 bytes).
PDF statistics:
218 PDF objects out of 1000 (max. 8388607)
125 compressed objects within 2 object streams

Binary file not shown.

@ -52,7 +52,8 @@ The pitches of the piece are derived from a rational tuning systems based on the
\begin{flushright}
michael winter\\
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)\\
version generated: \today
\end{flushright}
\includepdf[pages={-}]{../../score/lilypond/ammann/ammann.pdf}

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018/Arch Linux) (preloaded format=pdflatex 2019.4.22) 6 JUL 2019 23:47
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:31
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -255,12 +255,7 @@ Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
))))
(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
)
@ -299,13 +294,13 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf us
ed on input line 60.
ed on input line 61.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf us
ed on input line 60.
ed on input line 61.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=5, page=1, 597.51233pt
x 845.0471pt>
@ -313,18 +308,18 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age1 used on input line 60.
age1 used on input line 61.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age1 used on input line 60.
age1 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
(Font) size <24.88> substituted on input line 60.
(Font) size <24.88> substituted on input line 61.
[1
@ -333,19 +328,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age1 used on input line 60.
age1 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age1 used on input line 60.
age1 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age1 used on input line 60.
age1 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[2 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
@ -355,19 +350,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age2 used on input line 60.
age2 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age2 used on input line 60.
age2 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age2 used on input line 60.
age2 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[3 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=57, page=3, 597.51233pt
@ -376,19 +371,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age3 used on input line 60.
age3 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age3 used on input line 60.
age3 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age3 used on input line 60.
age3 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[4 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=61, page=4, 597.51233pt
@ -397,19 +392,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age4 used on input line 60.
age4 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age4 used on input line 60.
age4 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age4 used on input line 60.
age4 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[5 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=65, page=5, 597.51233pt
@ -418,19 +413,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age5 used on input line 60.
age5 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age5 used on input line 60.
age5 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age5 used on input line 60.
age5 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[6 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=69, page=6, 597.51233pt
@ -439,19 +434,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age6 used on input line 60.
age6 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age6 used on input line 60.
age6 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age6 used on input line 60.
age6 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[7 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=74, page=7, 597.51233pt
@ -460,19 +455,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age7 used on input line 60.
age7 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age7 used on input line 60.
age7 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age7 used on input line 60.
age7 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[8 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=78, page=8, 597.51233pt
@ -481,19 +476,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age8 used on input line 60.
age8 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age8 used on input line 60.
age8 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age8 used on input line 60.
age8 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[9 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=82, page=9, 597.51233pt
@ -502,19 +497,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age9 used on input line 60.
age9 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age9 used on input line 60.
age9 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age9 used on input line 60.
age9 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[10 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=86, page=10, 597.51233p
@ -523,19 +518,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age10 used on input line 60.
age10 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age10 used on input line 60.
age10 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age10 used on input line 60.
age10 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[11 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=90, page=11, 597.51233p
@ -544,19 +539,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age11 used on input line 60.
age11 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age11 used on input line 60.
age11 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age11 used on input line 60.
age11 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[12 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=94, page=12, 597.51233p
@ -565,19 +560,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age12 used on input line 60.
age12 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age12 used on input line 60.
age12 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age12 used on input line 60.
age12 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[13 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
@ -587,19 +582,19 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age13 used on input line 60.
age13 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age13 used on input line 60.
age13 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age13 used on input line 60.
age13 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[14 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=103, page=14, 597.51233
@ -608,32 +603,53 @@ File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age14 used on input line 60.
age14 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age14 used on input line 60.
age14 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age14 used on input line 60.
age14 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[15 <../../score/lilypond/berger_knuth/berger_knuth.pdf>] (./berger_score.aux)
[15 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
<../../score/lilypond/berger_knuth/berger_knuth.pdf, id=107, page=15, 597.51233
pt x 845.0471pt>
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age15 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age15 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/berger_knuth/berger_knuth.pdf Graphic file (type pdf
)
<use ../../score/lilypond/berger_knuth/berger_knuth.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/berger_knuth/berger_knuth.pdf , p
age15 used on input line 61.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[16 <../../score/lilypond/berger_knuth/berger_knuth.pdf>]
(./berger_score.aux)
LaTeX Font Warning: Size substitutions with differences
(Font) up to 117.38377pt have occurred.
)
Here is how much of TeX's memory you used:
6216 strings out of 492616
112639 string characters out of 6135177
188846 words of memory out of 5000000
10049 multiletter control sequences out of 15000+600000
6216 strings out of 492623
112812 string characters out of 6135670
188854 words of memory out of 5000000
10050 multiletter control sequences out of 15000+600000
5940 words of font info for 21 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
41i,18n,51p,841b,514s stack positions out of 5000i,500n,10000p,200000b,80000s
@ -645,10 +661,10 @@ mti8.pfb></usr/share/texmf-dist/fonts/type1/public/tex-gyre/qcsb.pfb></usr/shar
e/texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfb></usr/share/texmf-dist/fonts
/type1/public/tex-gyre/qcsr.pfb></usr/share/texmf-dist/fonts/type1/public/tex-g
yre/qcsri.pfb>
Output written on berger_score.pdf (15 pages, 584491 bytes).
Output written on berger_score.pdf (16 pages, 588782 bytes).
PDF statistics:
129 PDF objects out of 1000 (max. 8388607)
80 compressed objects within 1 object stream
133 PDF objects out of 1000 (max. 8388607)
82 compressed objects within 1 object stream
0 named destinations out of 1000 (max. 500000)
91 words of extra memory for PDF output out of 10000 (max. 10000000)
96 words of extra memory for PDF output out of 10000 (max. 10000000)

Binary file not shown.

@ -54,7 +54,8 @@ The pitches of the piece are derived from a rational tuning system. The notes in
\begin{flushright}
michael winter\\
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)\\
version generated: \today
\end{flushright}
\includepdf[pages={-}]{../../score/lilypond/berger\string_knuth/berger\string_knuth.pdf}

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 26 NOV 2019 19:28
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 19:48
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -500,27 +500,36 @@ Package: xkeyval 2014/12/03 v2.7a package option processing (HA)
\XKV@depth=\count124
File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA)
)))
(/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
Package: enumitem 2019/02/04 v3.8 Customized lists
\labelindent=\skip52
\enit@outerparindent=\dimen157
\enit@toks=\toks27
\enit@inbox=\box59
\enit@count@id=\count125
\enitdp@description=\count126
)
(./hdp_documentation.aux)
\openout1 = `hdp_documentation.aux'.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 71.
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 71.
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 71.
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 71.
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 71.
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 71.
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 71.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 71.
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 72.
LaTeX Font Info: ... okay on input line 72.
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 72.
LaTeX Font Info: Try loading font information for TS1+cmr on input line 72.
(/usr/share/texmf-dist/tex/latex/base/ts1cmr.fd
File: ts1cmr.fd 2014/09/29 v2.5h Standard LaTeX font definitions
)
LaTeX Font Info: ... okay on input line 71.
LaTeX Font Info: ... okay on input line 72.
*geometry* driver: auto-detecting
*geometry* detected driver: pdftex
@ -556,20 +565,20 @@ LaTeX Font Info: ... okay on input line 71.
* \@reversemarginfalse
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
\AtBeginShipoutBox=\box59
\AtBeginShipoutBox=\box60
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
[Loading MPS to PDF converter (version 2006.09.02).]
\scratchcounter=\count125
\scratchdimen=\dimen157
\scratchbox=\box60
\nofMPsegments=\count126
\nofMParguments=\count127
\everyMPshowfont=\toks27
\MPscratchCnt=\count128
\MPscratchDim=\dimen158
\MPnumerator=\count129
\makeMPintoPDFobject=\count130
\everyMPtoPDFconversion=\toks28
\scratchcounter=\count127
\scratchdimen=\dimen158
\scratchbox=\box61
\nofMPsegments=\count128
\nofMParguments=\count129
\everyMPshowfont=\toks28
\MPscratchCnt=\count130
\MPscratchDim=\dimen159
\MPnumerator=\count131
\makeMPintoPDFobject=\count132
\everyMPtoPDFconversion=\toks29
) (/usr/share/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty
Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf
@ -619,8 +628,8 @@ Package: lscape 2000/10/22 v3.01 Landscape Pages (DPC)
)
Package pdflscape Info: Auto-detected driver: pdftex on input line 81.
)
\c@lstlisting=\count131
LaTeX Font Info: Try loading font information for U+wasy on input line 83.
\c@lstlisting=\count133
LaTeX Font Info: Try loading font information for U+wasy on input line 84.
(/usr/share/texmf-dist/tex/latex/wasysym/uwasy.fd
File: uwasy.fd 2003/10/30 v2.0 Wasy-2 symbol font definitions
@ -628,76 +637,96 @@ File: uwasy.fd 2003/10/30 v2.0 Wasy-2 symbol font definitions
<selects/maquina.png, id=1, 915.42pt x 686.565pt>
File: selects/maquina.png Graphic file (type png)
<use selects/maquina.png>
Package pdftex.def Info: selects/maquina.png used on input line 86.
Package pdftex.def Info: selects/maquina.png used on input line 87.
(pdftex.def) Requested size: 243.20457pt x 182.39981pt.
<selects/discos.png, id=2, 4047.12pt x 3035.34pt>
File: selects/discos.png Graphic file (type png)
<use selects/discos.png>
Package pdftex.def Info: selects/discos.png used on input line 89.
Package pdftex.def Info: selects/discos.png used on input line 90.
(pdftex.def) Requested size: 243.20457pt x 182.39043pt.
Overfull \hbox (5.41216pt too wide) in paragraph at lines 83--91
Overfull \hbox (5.41216pt too wide) in paragraph at lines 84--92
[]
[]
[1
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./selects/maquina.png> <./
selects/discos.png>] (./hdp_documentation.bbl) [2]
<selects/berger.jpg, id=16, 456.7464pt x 454.5783pt>
selects/discos.png>]
<selects/oraclesannotated.jpg, id=12, 1248.8256pt x 832.5504pt>
File: selects/oraclesannotated.jpg Graphic file (type jpg)
<use selects/oraclesannotated.jpg>
Package pdftex.def Info: selects/oraclesannotated.jpg used on input line 123.
(pdftex.def) Requested size: 347.4297pt x 231.61348pt.
[2 <./selects/oraclesannotated.jpg>]
<selects/maquinalit.jpg, id=18, 1248.8256pt x 832.5504pt>
File: selects/maquinalit.jpg Graphic file (type jpg)
<use selects/maquinalit.jpg>
Package pdftex.def Info: selects/maquinalit.jpg used on input line 141.
(pdftex.def) Requested size: 347.4297pt x 231.61348pt.
[3 <./selects/maquinalit.jpg>] (./hdp_documentation.bbl)
Underfull \hbox (badness 10000) in paragraph at lines 218--222
[]
[4]
<selects/berger.jpg, id=28, 456.7464pt x 454.5783pt>
File: selects/berger.jpg Graphic file (type jpg)
<use selects/berger.jpg>
Package pdftex.def Info: selects/berger.jpg used on input line 165.
Package pdftex.def Info: selects/berger.jpg used on input line 234.
(pdftex.def) Requested size: 496.33032pt x 493.99615pt.
[3 <./selects/berger.jpg>]
<selects/robinson.jpg, id=20, 453.8556pt x 455.0601pt>
[5 <./selects/berger.jpg>]
<selects/robinson.jpg, id=32, 453.8556pt x 455.0601pt>
File: selects/robinson.jpg Graphic file (type jpg)
<use selects/robinson.jpg>
Package pdftex.def Info: selects/robinson.jpg used on input line 172.
Package pdftex.def Info: selects/robinson.jpg used on input line 241.
(pdftex.def) Requested size: 496.33032pt x 497.65826pt.
[4 <./selects/robinson.jpg>]
<selects/penrose.jpg, id=24, 458.4327pt x 457.2282pt>
[6 <./selects/robinson.jpg>]
<selects/penrose.jpg, id=36, 458.4327pt x 457.2282pt>
File: selects/penrose.jpg Graphic file (type jpg)
<use selects/penrose.jpg>
Package pdftex.def Info: selects/penrose.jpg used on input line 179.
Package pdftex.def Info: selects/penrose.jpg used on input line 248.
(pdftex.def) Requested size: 496.33032pt x 495.04794pt.
[5 <./selects/penrose.jpg>]
<selects/ammann.jpg, id=28, 459.8781pt x 457.2282pt>
[7 <./selects/penrose.jpg>]
<selects/ammann.jpg, id=41, 459.8781pt x 457.2282pt>
File: selects/ammann.jpg Graphic file (type jpg)
<use selects/ammann.jpg>
Package pdftex.def Info: selects/ammann.jpg used on input line 186.
Package pdftex.def Info: selects/ammann.jpg used on input line 255.
(pdftex.def) Requested size: 496.33032pt x 493.47119pt.
[6 <./selects/ammann.jpg>]
<selects/kari.jpg, id=32, 1936.02168pt x 1942.12901pt>
[8 <./selects/ammann.jpg>]
<selects/kari.jpg, id=45, 1936.02168pt x 1942.12901pt>
File: selects/kari.jpg Graphic file (type jpg)
<use selects/kari.jpg>
Package pdftex.def Info: selects/kari.jpg used on input line 193.
Package pdftex.def Info: selects/kari.jpg used on input line 262.
(pdftex.def) Requested size: 496.33032pt x 497.88864pt.
[7 <./selects/kari.jpg>]
<selects/jaendal.jpg, id=37, 457.2282pt x 456.9873pt>
File: selects/jaendal.jpg Graphic file (type jpg)
<use selects/jaendal.jpg>
Package pdftex.def Info: selects/jaendal.jpg used on input line 200.
[9 <./selects/kari.jpg>]
<selects/jaendel.jpg, id=49, 457.2282pt x 456.9873pt>
File: selects/jaendel.jpg Graphic file (type jpg)
<use selects/jaendel.jpg>
Package pdftex.def Info: selects/jaendel.jpg used on input line 269.
(pdftex.def) Requested size: 496.33032pt x 496.07713pt.
[8 <./selects/jaendal.jpg>]
(./hdp_documentation.aux) )
[10 <./selects/jaendel.jpg>] (./hdp_documentation.aux) )
Here is how much of TeX's memory you used:
9452 strings out of 492623
155823 string characters out of 6135670
245318 words of memory out of 5000000
13219 multiletter control sequences out of 15000+600000
5916 words of font info for 23 fonts, out of 8000000 for 9000
9788 strings out of 492623
161525 string characters out of 6135670
253815 words of memory out of 5000000
13547 multiletter control sequences out of 15000+600000
6590 words of font info for 25 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
41i,10n,72p,1183b,315s stack positions out of 5000i,500n,10000p,200000b,80000s
</usr/share/texmf-dist/fonts/type1/public/amsfonts/c
m/cmbx10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbxti10.pfb
></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/te
xmf-dist/fonts/type1/public/amsfonts/cm/cmti10.pfb></usr/share/texmf-dist/fonts
/type1/public/amsfonts/cm/cmtt10.pfb>
Output written on hdp_documentation.pdf (8 pages, 35781729 bytes).
41i,10n,72p,1607b,318s stack positions out of 5000i,500n,10000p,200000b,80000s
{/usr/share/texmf-dist
/fonts/enc/dvips/cm-super/cm-super-ts1.enc}</usr/share/texmf-dist/fonts/type1/p
ublic/amsfonts/cm/cmbx10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts
/cm/cmbxti10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.p
fb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/
texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb></usr/share/texmf-dist/font
s/type1/public/amsfonts/cm/cmti10.pfb></usr/share/texmf-dist/fonts/type1/public
/amsfonts/cm/cmtt10.pfb></usr/share/texmf-dist/fonts/type1/public/cm-super/sfrm
0700.pfb></usr/share/texmf-dist/fonts/type1/public/cm-super/sfrm1000.pfb>
Output written on hdp_documentation.pdf (10 pages, 39264451 bytes).
PDF statistics:
59 PDF objects out of 1000 (max. 8388607)
35 compressed objects within 1 object stream
84 PDF objects out of 1000 (max. 8388607)
52 compressed objects within 1 object stream
0 named destinations out of 1000 (max. 500000)
41 words of extra memory for PDF output out of 10000 (max. 10000000)
51 words of extra memory for PDF output out of 10000 (max. 10000000)

@ -14,6 +14,7 @@
%\usepackage{draftwatermark}
\renewcommand{\arraystretch}{1.3}
\usepackage{graphicx}
\usepackage{enumitem}
\DTMsetdatestyle{default}
\DTMsetup{datesep={.}}
@ -90,14 +91,13 @@ michael winter \\ schloss solitude and cdmx; 2018 - 2019 \\
\end{tabular}
\end{center}
\bigskip
\bigskip
\textbf{Description / note}
The domino problem, first posed by Hao Wang in 1961, is an epistemological question that asks whether there exists an algorithm to determine if an arbitrary finite set of tiles with colored edges can cover the plane such that adjacent edges match color. He conjectured that if a set of such tiles covers the plane, it can only do so periodically. However, in 1966, his student, Robert Berger, proved that the problem is undecidable (that is, there is no general algorithm) by showing the existence of a set of tiles that can only cover the plane aperiodically. This initial set contained more than 20000 tiles. Over the past 60 years, there has been a continual reduction in the size of provably aperiodic sets to the most recent discovery of a set of 11 tiles along with a proof that no smaller sets exist. It is a beautiful narrative / history of a particular epistemological problem that challenged a group of people not only to solve it, but to understand it to the extent possible.
\textit{a history of the domino problem} is a performance-installation that visualizes and sonifies aperiodic tilings in order to trace the history of the domino problem. The tilings are visualized using a cryptographic scheme in which two `shadow images', each which look completely random independently, are combined / overlayed at various orientations to reveal the tilings in a form that replaces the colored edges of the original constructions with binary codes. The shadow images are printed on photomasks typically used to manufacture computer chips: quartz wafers with a chrome coating etched at a pixel size of 20 microns. A high-precision, motorized multiaxis stage aligns the shadow images to reveal the tilings (along with 3 other images of poetic texts inspired by the history of the domino problem). The whole apparatus rests on a light source that illuminates the photomasks which are then magnified and projected. The visualizations are accompanied by musical compositions generated from the tilings that can be realized live by performers as intermittent augmentations within the installation or as singular pieces in concert.
\textit{a history of the domino problem} is a performance-installation that visualizes and sonifies aperiodic tilings in order to trace the history of the domino problem. The tilings are visualized using a cryptographic scheme in which two `shadow images', each which look completely random independently, are combined / overlayed at various orientations to reveal the tilings in a form that replaces the colored edges of the original constructions with binary codes. The shadow images are printed on photomasks typically used to manufacture computer chips: quartz wafers with a chrome coating etched at a pixel size of approximately 20 microns. A high-precision, motorized multiaxis stage aligns the shadow images to reveal the tilings (along with 3 other images of poetic texts inspired by the history of the domino problem). The whole apparatus rests on a light source that illuminates the photomasks which are then magnified and projected. The visualizations are accompanied by musical compositions generated from the tilings that can be realized live by performers as intermittent augmentations within the installation or as singular pieces in concert.
The aim of the work is to create an artistic experience that demonstrates the aesthetic qualities of these found mathematical objects while also functioning as a sort of historical record.
@ -105,17 +105,69 @@ This is ultimately a piece about how things fit together.
\bigskip
\textbf{Installation, performance setting, and technical requirements}
\textbf{Installation and performance setting}
As an installation, the apparatus that aligns the image should be centered in a dark room such that observers can view the photomasks up close. Ideally, this should be set up with a teleprompter mirror at a 45 degree angle above the apparatus so that the viewer can see the photomasks without having to bend over. On the other side of the mirror, a video camera is placed such that the resulting projected image aligns with what the viewer sees in the teleprompter mirror. The camera side of the mirror must be darkened out with a cover in order to allow the viewer to only see the reflection of the photomasks. The projection should be as large as possible and at as high a resolution as possible. Ideally, the camera should be able to zoom into the images of the tilings to show more detail.
In the installation, recordings of the musical pieces are played back; sometimes randomly and sometimes in sync with the respective tilings from which they were generated. The installation can be augmented (e.g. for an exhibition opening) by live performances of the musical pieces instead of the recordings. If so, direct access to the apparatus should be avoided in order for a situation where the observers can view the projected images and listen to the musical accompaniment in a tranquil and focused environment.
A demo of the apparatus is available at: \url{https://vimeo.com/375784136}.
\bigskip
\textbf{Photomask alignment}
Between the two photomasks, there are nine embedded images which can be seen at nine precise orientation organized in a 3 x 3 grid. The image area is surrounded by Moire pattern and Vernier markings to aid in the alignment. Provided below are a description of each of these markings.
\begin{center}
\includegraphics[width=0.7\linewidth]{selects/oraclesannotated.jpg}
\end{center}
\begin{description}[labelindent=0.5cm]
\item [unidimensional Verniers:] These are the most useful markings for image alignment. For each axis, there are a set of coarse Verniers (bordering the image) and a set of fine Verniers (further from the image) which move 5 times the speed of the coarse Veniers. Everytime an image is aligned the white blob will be centered in both the coarse and fine Verniers. These markings essentially amplify and scale the distance between the image (640 microns) and can be used by a motion tracker in a closed-loop alignment system.
\item [multidimenional Verniers:] These are Verniers that are centered in a two-dimenional space everytime an image is focused.
\item [linear Moire grating:] These gratings can be used to make sure that the plates are aligned rotationally (resulting in a completely monochrome bar without any patterns).
\item [circular Moire grating:] These gratings best represent the grid of the images. When an image is aligned the respective grating on the grid will be dark. The number of fringes denotes the accuracy of the alignment (none means perfectly aligned).
\end{description}
High precision optical stages are used for the alignment of the wafers. Ideally, the wafers are not touching (separated by a few microns). If the wafers touch, they will degrade over time as they move across each other. However, it is very difficult to achieve perfect alignment without the photomasks touching as the they need to be aligned in all 6 degrees of freedom ($x$, $y$, $z$, $\theta x$, $\theta y$, and $\theta z$) in order for the resulting image to be properly produced. Only the $x$ and $y$ axis need to be moved to find the images once all the other degrees of freedom are set accurately.
The original setup is as follows. Each of the photomasks are mounted onto tilt stages to be able to align the masks together rotationally (note that a more ideal setup would use goniometer stages). One of the tilt / goniometer stages is then affixed to a stage with 3 degrees of freedom: $x$, $y$, and $z$. The other is fixed directly to an optical breadboard.
To automate the alignment, high precision motors are used to move one of the photomasks on the $x$ and $y$ axes. In the original setup, the high precision motors are stepper motors. If the photomasks are not touching, an open-loop system can be used to automate alignment. That is, the accuracy of the step count of the motors should be sufficient for alignment. However, if the photomasks need to touch in order to produce the resulting images (as is the often the case with the original setup), the friction between the two photomasks will cause inaccuracies in an open-loop system. To compensate for this, the Vernier markings can be tracked optically (using motion-tracking software or opto-interrupts) in order to create a closed-loop system. The software used to automate the system and control the motors is detailed in the following section.
\begin{center}
\includegraphics[width=0.7\linewidth]{selects/maquinalit.jpg}
\end{center}
\bigskip
\textbf{Overview of computer code}
As the code is subject to change / improvements, the current state of the code is available through a git repository at the following address: \url{https://gitea.unboundedpress.org/mwinter/a_history_of_the_domino_problem}. The respository contains the computer code needed to run the installation along with all the code that generated the musical pieces and all the code / schematics / files to rebuild the installation. Further, this document along with each of the scores is marked with the date it was generated in order to verify it is the most recent version.
As an installation, the apparatus that aligns the image should be centered in a dark room such that observers can view the photomasks up close. Ideally, this should be set up with a teleprompter mirror at a 45 degree angle above the apparatus so that the viewer can see the photomasks without having to bend over. On the other side of the mirror, a camera is placed such that the resulting projected image aligns with what the viewer sees in the teleprompter mirror. The camera side must be darkened out with a cover in order for as much reflection to the viewer as possible.
The repository is organized by the various languages / formats used to generate the musical pieces and visualizations as well as control the installation. To start, I will focus on the software needed to control the installation which includes four basic components:
In the installation, recordings of the musical pieces are played back; sometimes randomly and sometimes in sync with the respective tilings from which they were generated. The installation can be augmented (e.g. for an exhibition opening) by live performances of the musical pieces instead of the recordings. If so, direct access to the apparatus should be avoided in order for a situation where the observers can view the projected images and listen to the musical accompaniment in a tranquil and focused environment.
\begin{itemize}[labelindent=0.5cm]
\item A SuperCollider program with the filename \url{installation_control.scd}.
The computer code needed to run the installation along with all the code that generated the piece and schematics to rebuild the installation are available at \url{https://gitea.unboundedpress.org/mwinter/a_history_of_the_domino_problem}.
\item A GUI interface written using Open Stage Control with the filename \url{installation_control_gui.json}
\item A motion tracker written in Python using OpenCV to track the Verniers for a closed-loop system with the filename \url{vernier_tracker.py}
\item Arduino code to communicate between Supercollider and the stepper-motor drivers with the filename\\ \url{multistepper.ino}
\end{itemize}
In the original setup, the Arduino code is loaded onto the Arduino and the three other programs are loaded and launched on a computer (e.g., a Raspberry Pi) connected to the Arduino to control the system. The SuperCollider program is the main control center. Both the GUI and the motion tracker (which takes in video input from the video camera) communicate to the SuperCollider program through OSC messages, which, in turn, sends serial messages to the Arduino to control the stepper motors via the stepper motor drivers. The Arduino code not only sends messages to the stepper motor drivers, but also takes input signals from the limit switches of the motors to ensure that the motors are not destroyed by running into a hard stop.
All the other code (primarily written in SuperCollider) was written to generate the musical pieces as well as the visualizations and is maintained in the repository for reference. For the musical pieces, the SuperCollider code generates electronic realizations of the compositions and Lilypond files for generation of the musical scores.
The photomasks were printed from the GDSII file format (\url{*.gds}). The workflow consisted of \url{*.png} generated by SuperCollider and then formatted into \url{*.gds} files using the Python KLayout API. However, all that is needed to reprint the photomasks are the files \url{wafer_1.gds} and \url{wafer_2.gds}. Note that the the \url{*.gds} files along with all larger files are archived in a code releases available at \url{https://gitea.unboundedpress.org/mwinter/a_history_of_the_domino_problem/releases}. Again, all the other files in the repository are maintained for reference.
\bigskip
\textbf{Partial historical timeline of the domino problem}
\textbf{Appendix: partial historical timeline of the domino problem, selected bibliography, and tiling images}
pre-history:\\
\begin{tabular}{p{0.8in}p{1.25in}p{4.25in}}
@ -153,12 +205,29 @@ ca 2015 & Jaendel \& Rao & 11 tiles with an incredible computer-assisted proof t
\bigskip
\textbf{Selected Bibliography}
\nocite{*}
\bibliographystyle{unsrt}
\bibliography{hdp}
\bigskip
\textbf{Acknowledgments}
A special thanks to: Alice Koegel, Ana Filipovic\textsuperscript{$*$}, Angela Butterstein\textsuperscript{}, Anita Carey-Yard\textsuperscript{}, Aykan Safoğlu\textsuperscript{$*$}, Bjoern Gottstein, Charis von Ristok\textsuperscript{}, Christof Pruss, Daniela Kern-Michler\textsuperscript{§}, David Frühauf\textsuperscript{$*$}, David Mathews\textsuperscript{$*$}, Denise Helene Sumi\textsuperscript{$*$}, Edith Lázár\textsuperscript{$*$}, Elena Morena Weber\textsuperscript{$*$}, Elke aus dem Moore\textsuperscript{}, Elmar Mellert, Helmut Dietz\textsuperscript{}, Irasema Fernandez, Johanna Markert\textsuperscript{$*$}, Julian Hartbaum\textsuperscript{}, Konstantin Lom\textsuperscript{}, Leon Müllner\textsuperscript{$*$}, Luise Boege\textsuperscript{$*$}, Lukas Ludwig\textsuperscript{$*$}, Luke Wilkins\textsuperscript{$*$}, Marieanne Roth\textsuperscript{}, Mathias Irmsher\textsuperscript{}, Mitra Wakil\textsuperscript{$*$}, Patrizia Bach\textsuperscript{$*$}, Philip Mecke\textsuperscript{$*$}, Robert Blatt\textsuperscript{$*$}, Sander Wickersheim\textsuperscript{}, Savyon\textsuperscript{$*$}, Silke Pflüger\textsuperscript{}, Sílvia das Fadas\textsuperscript{$*$}, Simar Preet Kaur\textsuperscript{$*$}, Sonja Flury\textsuperscript{}, Sophia Guggenberger\textsuperscript{$*$}, Sophie-Charlotte Thieroff\textsuperscript{}, Stephan Martens\textsuperscript{}, Susanna Flock\textsuperscript{$*$}, Tom Rosenberg\textsuperscript{$*$}, Vincenzo Talluto\textsuperscript{§}, Yuval Shenhar\textsuperscript{$*$}
* denotes contemporary resident at Akademie Schloss Solitude\\
† denotes Akademie Schloss Solitude staff\\
‡ denotes Institut für Mikroelektronik Stuttgart staff\\
§ denotes Newport Optics staff\\
\vspace{\fill}
\begin{flushright}
version generated: \today
\end{flushright}
\newpage
\vspace*{\fill}
\centering
@ -197,9 +266,18 @@ Kari
\newpage
\vspace*{\fill}
\centering
\includegraphics[width=1\linewidth]{selects/jaendal.jpg}
Jaendal-Rao
\includegraphics[width=1\linewidth]{selects/jaendel.jpg}
Jaendel-Rao
\vspace*{\fill}
%\includepdf[pages={-}]{../berger/berger\string_score.pdf}
%\includepdf[pages={-}]{../robinson/robinson\string_score.pdf}
%\includepdf[pages={-}]{../penrose/penrose\string_score.pdf}
%\includepdf[pages={-}]{../ammann/ammann\string_score.pdf}
%\includepdf[pages={-}]{../kari/kari\string_score.pdf}
%\includepdf[pages={-}]{../jaendel/jaendel\string_rao\string_score.pdf}
\end{document}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.6 MiB

After

Width:  |  Height:  |  Size: 2.7 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 MiB

After

Width:  |  Height:  |  Size: 2.6 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

File diff suppressed because it is too large Load Diff

@ -54,7 +54,8 @@ As mentioned above, each part plays one pitch. The pitches are derived from adja
\begin{flushright}
michael winter\\
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)\\
version generated: \today
\end{flushright}
\includepdf[pages={-}]{../../score/lilypond/jaendel\string_rao/jaendel\string_rao\string_reduced.pdf}

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018/Arch Linux) (preloaded format=pdflatex 2019.4.22) 6 JUL 2019 23:48
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:28
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -256,12 +256,7 @@ Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
))))
(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
)
@ -299,29 +294,29 @@ Package pdftex.def Info: dynamic_curve.pdf used on input line 41.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf used o
n input line 63.
n input line 64.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf used o
n input line 63.
n input line 64.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
<../../score/lilypond/kari_culik/kari_culik.pdf, id=5, page=1, 597.51233pt x 84
5.0471pt>
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
(Font) size <24.88> substituted on input line 63.
(Font) size <24.88> substituted on input line 64.
[1
@ -329,17 +324,17 @@ LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[2 <../../score/lilypond/kari_culik/kari_culik.pdf>]
@ -348,17 +343,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page2
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page2
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page2
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[3 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=51, page=3, 597.51233pt x 8
@ -366,17 +361,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page2
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page3
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page3
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page3
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[4 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=55, page=4, 597.51233pt x 8
@ -384,17 +379,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page3
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page4
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page4
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page4
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[5 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=59, page=5, 597.51233pt x 8
@ -402,17 +397,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page4
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page5
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page5
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page5
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[6 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=63, page=6, 597.51233pt x 8
@ -420,17 +415,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page5
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page6
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page6
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page6
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[7 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=68, page=7, 597.51233pt x 8
@ -438,17 +433,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page6
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page7
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page7
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page7
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[8 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=72, page=8, 597.51233pt x 8
@ -456,17 +451,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page7
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page8
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page8
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page8
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[9 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=76, page=9, 597.51233pt x 8
@ -474,17 +469,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page8
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page9
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page9
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page9
used on input line 63.
used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[10 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=80, page=10, 597.51233pt x
@ -492,17 +487,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page9
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
0 used on input line 63.
0 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
0 used on input line 63.
0 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
0 used on input line 63.
0 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[11 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=84, page=11, 597.51233pt x
@ -510,17 +505,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
1 used on input line 63.
1 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
1 used on input line 63.
1 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
1 used on input line 63.
1 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[12 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=88, page=12, 597.51233pt x
@ -528,17 +523,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
2 used on input line 63.
2 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
2 used on input line 63.
2 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
2 used on input line 63.
2 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[13 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=93, page=13, 597.51233pt x
@ -546,17 +541,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
3 used on input line 63.
3 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
3 used on input line 63.
3 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
3 used on input line 63.
3 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[14 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=97, page=14, 597.51233pt x
@ -564,17 +559,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
4 used on input line 63.
4 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
4 used on input line 63.
4 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
4 used on input line 63.
4 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[15 <../../score/lilypond/kari_culik/kari_culik.pdf>]
<../../score/lilypond/kari_culik/kari_culik.pdf, id=101, page=15, 597.51233pt x
@ -582,17 +577,17 @@ Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
5 used on input line 63.
5 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
5 used on input line 63.
5 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/kari_culik/kari_culik.pdf Graphic file (type pdf)
<use ../../score/lilypond/kari_culik/kari_culik.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/kari_culik/kari_culik.pdf , page1
5 used on input line 63.
5 used on input line 64.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[16 <../../score/lilypond/kari_culik/kari_culik.pdf>] (./kari_score.aux)
@ -601,10 +596,10 @@ LaTeX Font Warning: Size substitutions with differences
)
Here is how much of TeX's memory you used:
6219 strings out of 492616
112619 string characters out of 6135177
188846 words of memory out of 5000000
10052 multiletter control sequences out of 15000+600000
6216 strings out of 492623
112587 string characters out of 6135670
188854 words of memory out of 5000000
10050 multiletter control sequences out of 15000+600000
5940 words of font info for 21 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
41i,18n,51p,839b,514s stack positions out of 5000i,500n,10000p,200000b,80000s
@ -616,7 +611,7 @@ mti8.pfb></usr/share/texmf-dist/fonts/type1/public/tex-gyre/qcsb.pfb></usr/shar
e/texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfb></usr/share/texmf-dist/fonts
/type1/public/tex-gyre/qcsr.pfb></usr/share/texmf-dist/fonts/type1/public/tex-g
yre/qcsri.pfb>
Output written on kari_score.pdf (16 pages, 367749 bytes).
Output written on kari_score.pdf (16 pages, 367843 bytes).
PDF statistics:
127 PDF objects out of 1000 (max. 8388607)
78 compressed objects within 1 object stream

Binary file not shown.

Binary file not shown.

@ -57,7 +57,8 @@ Each line of the noise part should be interpreted as different registers of nois
\begin{flushright}
michael winter\\
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)\\
version generated: \today
\end{flushright}
\includepdf[pages={-}]{../../score/lilypond/kari\string_culik/kari\string_culik.pdf}

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018/Arch Linux) (preloaded format=pdflatex 2019.4.22) 29 JUL 2019 09:25
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:27
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -256,12 +256,7 @@ Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
))))
(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
)
@ -298,29 +293,29 @@ Package pdftex.def Info: penrose_pitches.pdf used on input line 42.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf used on inpu
t line 58.
t line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf used on inpu
t line 58.
t line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
<../../score/lilypond/penrose/penrose.pdf, id=5, page=1, 597.51233pt x 845.0471
pt>
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
(Font) size <24.88> substituted on input line 58.
(Font) size <24.88> substituted on input line 59.
[1
@ -328,17 +323,17 @@ LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page1 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[2 <../../score/lilypond/penrose/penrose.pdf>]
@ -347,17 +342,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page2 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page2 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page2 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[3 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=56, page=3, 597.51233pt x 845.047
@ -365,17 +360,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page3 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page3 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page3 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[4 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=60, page=4, 597.51233pt x 845.047
@ -383,17 +378,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page4 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page4 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page4 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[5 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=64, page=5, 597.51233pt x 845.047
@ -401,17 +396,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page5 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page5 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page5 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[6 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=68, page=6, 597.51233pt x 845.047
@ -419,17 +414,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page6 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page6 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page6 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[7 <../../score/lilypond/penrose/penrose.pdf>]
@ -438,17 +433,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page7 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page7 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page7 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[8 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=77, page=8, 597.51233pt x 845.047
@ -456,17 +451,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page8 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page8 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page8 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[9 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=81, page=9, 597.51233pt x 845.047
@ -474,17 +469,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page9 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page9 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page9 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[10 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=85, page=10, 597.51233pt x 845.04
@ -492,17 +487,17 @@ on input line 58.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page10 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page10 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page10 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[11 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=89, page=11, 597.51233pt x 845.04
@ -510,17 +505,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page10 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page11 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page11 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page11 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[12 <../../score/lilypond/penrose/penrose.pdf>]
@ -529,17 +524,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page11 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page12 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page12 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page12 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[13 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=98, page=13, 597.51233pt x 845.04
@ -547,17 +542,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page12 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page13 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page13 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page13 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[14 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=102, page=14, 597.51233pt x 845.0
@ -565,17 +560,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page13 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page14 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page14 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page14 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[15 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=106, page=15, 597.51233pt x 845.0
@ -583,17 +578,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page14 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page15 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page15 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page15 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[16 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=110, page=16, 597.51233pt x 845.0
@ -601,17 +596,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page15 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page16 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page16 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page16 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[17 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=114, page=17, 597.51233pt x 845.0
@ -619,17 +614,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page16 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page17 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page17 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page17 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[18 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=118, page=18, 597.51233pt x 845.0
@ -637,17 +632,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page17 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page18 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page18 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page18 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[19 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=123, page=19, 597.51233pt x 845.0
@ -655,17 +650,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page18 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page19 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page19 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page19 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[20 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=127, page=20, 597.51233pt x 845.0
@ -673,17 +668,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page19 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page20 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page20 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page20 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[21 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=131, page=21, 597.51233pt x 845.0
@ -691,17 +686,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page20 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page21 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page21 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page21 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[22 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=135, page=22, 597.51233pt x 845.0
@ -709,17 +704,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page21 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page22 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page22 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page22 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[23 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=139, page=23, 597.51233pt x 845.0
@ -727,17 +722,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page22 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page23 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page23 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page23 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[24 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=143, page=24, 597.51233pt x 845.0
@ -745,17 +740,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page23 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page24 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page24 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page24 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[25 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=148, page=25, 597.51233pt x 845.0
@ -763,17 +758,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page24 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 25>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page25 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 25>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page25 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 25>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page25 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[26 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=152, page=26, 597.51233pt x 845.0
@ -781,17 +776,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page25 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 26>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page26 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 26>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page26 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 26>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page26 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[27 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=156, page=27, 597.51233pt x 845.0
@ -799,17 +794,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page26 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 27>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page27 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 27>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page27 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 27>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page27 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[28 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=160, page=28, 597.51233pt x 845.0
@ -817,17 +812,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page27 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 28>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page28 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 28>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page28 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 28>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page28 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[29 <../../score/lilypond/penrose/penrose.pdf>]
<../../score/lilypond/penrose/penrose.pdf, id=164, page=29, 597.51233pt x 845.0
@ -835,17 +830,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page28 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 29>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page29 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 29>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page29 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 29>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page29 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[30 <../../score/lilypond/penrose/penrose.pdf>]
@ -854,17 +849,17 @@ Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page29 used
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 30>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page30 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 30>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page30 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/penrose/penrose.pdf Graphic file (type pdf)
<use ../../score/lilypond/penrose/penrose.pdf, page 30>
Package pdftex.def Info: ../../score/lilypond/penrose/penrose.pdf , page30 used
on input line 58.
on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[31 <../../score/lilypond/penrose/penrose.pdf>] (./penrose_score.aux)
@ -873,10 +868,10 @@ LaTeX Font Warning: Size substitutions with differences
)
Here is how much of TeX's memory you used:
6264 strings out of 492616
114978 string characters out of 6135177
187846 words of memory out of 5000000
10097 multiletter control sequences out of 15000+600000
6261 strings out of 492623
114946 string characters out of 6135670
187854 words of memory out of 5000000
10095 multiletter control sequences out of 15000+600000
5940 words of font info for 21 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
41i,18n,51p,842b,514s stack positions out of 5000i,500n,10000p,200000b,80000s
@ -888,7 +883,7 @@ mti8.pfb></usr/share/texmf-dist/fonts/type1/public/tex-gyre/qcsb.pfb></usr/shar
e/texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfb></usr/share/texmf-dist/fonts
/type1/public/tex-gyre/qcsr.pfb></usr/share/texmf-dist/fonts/type1/public/tex-g
yre/qcsri.pfb>
Output written on penrose_score.pdf (31 pages, 1137664 bytes).
Output written on penrose_score.pdf (31 pages, 1137754 bytes).
PDF statistics:
196 PDF objects out of 1000 (max. 8388607)
115 compressed objects within 2 object streams

Binary file not shown.

@ -52,7 +52,8 @@ Pitches can be transposed by an octave if necessary while maintaining relatively
\begin{flushright}
michael winter\\
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)\\
version generated: \today
\end{flushright}
\includepdf[pages={-}]{../../score/lilypond/penrose/penrose.pdf}

@ -1,4 +1,4 @@
This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018/Arch Linux) (preloaded format=pdflatex 2019.4.22) 29 JUL 2019 09:25
This is pdfTeX, Version 3.14159265-2.6-1.40.20 (TeX Live 2019/Arch Linux) (preloaded format=pdflatex 2019.9.6) 6 DEC 2019 18:27
entering extended mode
restricted \write18 enabled.
%&-line parsing enabled.
@ -257,12 +257,7 @@ Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO)
(/usr/share/texmf-dist/tex/generic/oberdiek/ifluatex.sty
Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO)
Package ifluatex Info: LuaTeX not detected.
)
Package etexcmds Info: Could not find \expanded.
(etexcmds) That can mean that you are not using pdfTeX 1.50 or
(etexcmds) that some package has redefined \expanded.
(etexcmds) In the latter case, load this package earlier.
)))
))))
(/usr/share/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty
Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO
)
@ -299,29 +294,29 @@ Package pdftex.def Info: robinson_pitches.pdf used on input line 42.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf used on in
put line 58.
put line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf used on in
put line 58.
put line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
<../../score/lilypond/robinson/robinson.pdf, id=5, page=1, 597.51233pt x 845.04
71pt>
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page1 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.51086pt x 845.04504pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page1 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
(Font) size <24.88> substituted on input line 58.
(Font) size <24.88> substituted on input line 59.
[1
@ -329,17 +324,17 @@ LaTeX Font Warning: Font shape `OT1/cmr/m/n' in size <142.26378> not available
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page1 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page1 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 1>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page1 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[2 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=53, page=2, 597.51233pt x 845.0
@ -347,17 +342,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page2 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page2 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 2>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page2 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[3 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=57, page=3, 597.51233pt x 845.0
@ -365,17 +360,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page3 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page3 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 3>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page3 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[4 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=61, page=4, 597.51233pt x 845.0
@ -383,17 +378,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page4 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page4 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 4>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page4 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[5 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=65, page=5, 597.51233pt x 845.0
@ -401,17 +396,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page5 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page5 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 5>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page5 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[6 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=69, page=6, 597.51233pt x 845.0
@ -419,17 +414,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page6 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page6 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 6>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page6 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[7 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=74, page=7, 597.51233pt x 845.0
@ -437,17 +432,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page7 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page7 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 7>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page7 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[8 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=78, page=8, 597.51233pt x 845.0
@ -455,17 +450,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page8 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page8 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 8>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page8 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[9 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=82, page=9, 597.51233pt x 845.0
@ -473,17 +468,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page9 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page9 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 9>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page9 use
d on input line 58.
d on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[10 <../../score/lilypond/robinson/robinson.pdf>]
@ -492,17 +487,17 @@ d on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page10 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page10 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 10>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page10 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[11 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=90, page=11, 597.51233pt x 845.
@ -510,17 +505,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page11 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page11 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 11>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page11 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[12 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=94, page=12, 597.51233pt x 845.
@ -528,17 +523,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page12 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page12 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 12>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page12 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[13 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=99, page=13, 597.51233pt x 845.
@ -546,17 +541,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page13 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page13 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 13>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page13 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[14 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=103, page=14, 597.51233pt x 845
@ -564,17 +559,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page14 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page14 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 14>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page14 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[15 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=107, page=15, 597.51233pt x 845
@ -582,17 +577,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page15 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page15 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 15>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page15 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[16 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=111, page=16, 597.51233pt x 845
@ -600,17 +595,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page16 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page16 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 16>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page16 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[17 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=115, page=17, 597.51233pt x 845
@ -618,17 +613,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page17 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page17 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 17>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page17 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[18 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=119, page=18, 597.51233pt x 845
@ -636,17 +631,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page18 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page18 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 18>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page18 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[19 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=124, page=19, 597.51233pt x 845
@ -654,17 +649,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page19 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page19 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 19>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page19 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[20 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=128, page=20, 597.51233pt x 845
@ -672,17 +667,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page20 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page20 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 20>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page20 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[21 <../../score/lilypond/robinson/robinson.pdf>]
@ -691,17 +686,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page21 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page21 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 21>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page21 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[22 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=136, page=22, 597.51233pt x 845
@ -709,17 +704,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page22 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page22 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 22>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page22 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[23 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=140, page=23, 597.51233pt x 845
@ -727,17 +722,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page23 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page23 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 23>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page23 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[24 <../../score/lilypond/robinson/robinson.pdf>]
<../../score/lilypond/robinson/robinson.pdf, id=144, page=24, 597.51233pt x 845
@ -745,17 +740,17 @@ ed on input line 58.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page24 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page24 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
File: ../../score/lilypond/robinson/robinson.pdf Graphic file (type pdf)
<use ../../score/lilypond/robinson/robinson.pdf, page 24>
Package pdftex.def Info: ../../score/lilypond/robinson/robinson.pdf , page24 us
ed on input line 58.
ed on input line 59.
(pdftex.def) Requested size: 597.53821pt x 845.08372pt.
[25 <../../score/lilypond/robinson/robinson.pdf>] (./robinson_score.aux)
@ -764,10 +759,10 @@ LaTeX Font Warning: Size substitutions with differences
)
Here is how much of TeX's memory you used:
6246 strings out of 492616
114097 string characters out of 6135177
187846 words of memory out of 5000000
10079 multiletter control sequences out of 15000+600000
6243 strings out of 492623
114065 string characters out of 6135670
187854 words of memory out of 5000000
10077 multiletter control sequences out of 15000+600000
5940 words of font info for 21 fonts, out of 8000000 for 9000
1141 hyphenation exceptions out of 8191
41i,18n,51p,843b,514s stack positions out of 5000i,500n,10000p,200000b,80000s
@ -779,7 +774,7 @@ mti8.pfb></usr/share/texmf-dist/fonts/type1/public/tex-gyre/qcsb.pfb></usr/shar
e/texmf-dist/fonts/type1/public/tex-gyre/qcsbi.pfb></usr/share/texmf-dist/fonts
/type1/public/tex-gyre/qcsr.pfb></usr/share/texmf-dist/fonts/type1/public/tex-g
yre/qcsri.pfb>
Output written on robinson_score.pdf (25 pages, 535995 bytes).
Output written on robinson_score.pdf (25 pages, 536096 bytes).
PDF statistics:
172 PDF objects out of 1000 (max. 8388607)
102 compressed objects within 2 object streams

Binary file not shown.

@ -52,7 +52,8 @@ The pitches of the piece are derived from a rational tuning series based on the
\begin{flushright}
michael winter\\
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)
(schloss solitude, stuttgart and calle monclova 62, mexico city; 2018-19)\\
version generated: \today
\end{flushright}
\includepdf[pages={-}]{../../score/lilypond/robinson/robinson.pdf}

@ -1,7 +1,8 @@
// This generates EVERYTHING!
~seed = 11735;
~dir = thisProcess.nowExecutingPath.dirname;
PathName.new(~dir).files.do({arg path; if((path.fileName != "main.scd") && (path.fileName != "stepper_control.scd"), {path.fileName.loadRelative})});
PathName.new(~dir).files.do({arg path; if((path.fileName != "main.scd") && (path.fileName != "installation_control.scd"), {path.fileName.loadRelative})});
~bergerTiling = ~berger.value(500, 500, true);

@ -1,455 +0,0 @@
(
var imageDist, micronsPerStep, automation, imgPositions, curPos, tarPos,
netAddress, serialPort, serialListener,
moveTo, jogControl, jogHorizontal, jogVertical,
imgSelect, imgCalibrate, automate, lastSelect;
// init global vars
imageDist = 300; // in microns
micronsPerStep = 0.0977;
automation = false;
imgPositions = 9.collect({nil});
curPos = Point.new(0, 0);
tarPos = Point.new(0, 0);
netAddress = NetAddr.new("127.0.0.1", 7777);
~serialPort = SerialPort("/dev/ttyACM0", baudrate: 115200, crtscts: true);
// recieve motor feedback
~serialListener = Routine({
var byte, str, res, valArray,
stepper, limitSwitchNeg, limitSwitchPos, safeMode, limitPos;
safeMode = false;
loop{
byte = ~serialPort.read;
if(byte==13, {
if(str[1].asString == "[", {
valArray = str.asString.interpret.postln;
curPos = Point.new(valArray[0], valArray[1]);
limitSwitchNeg = valArray[2];
limitSwitchPos = valArray[3];
if(safeMode && (limitSwitchNeg == limitSwitchPos), {
safeMode = false;
fork {
netAddress.sendMsg("/STATE/SET", "{message: \"all clear\"}");
2.wait;
netAddress.sendMsg("/STATE/SET", "{message: \"\"}");
}
});
if(automation, {
var centerPos = nil, dist = 0;
if(lastSelect != 0, {
centerPos = imgPositions[lastSelect].deepCopy;
dist = 300;
}, {
centerPos = imgPositions[4].deepCopy;
dist = imageDist / micronsPerStep;
});
if((curPos.x - tarPos.x).abs < 100, {tarPos.x = centerPos.x + dist.rand2});
if((curPos.y - tarPos.y).abs < 100, {tarPos.y = centerPos.y + dist.rand2});
moveTo.value(tarPos);
});
}, {
if(str[1..3].asString == "!!!", {
netAddress.sendMsg("/STATE/SET", "{message: \"!!! limit switch still on after 1000 steps, this should NEVER happen\"}");
}, {
automation = false;
safeMode = true;
netAddress.sendMsg("/STATE/SET", "{message: \"!! limit hit, move the other direction\"}");
});
});
str = "";
}, {str = str++byte.asAscii});
};
}).play(AppClock);
// send new coordinates to the arduino / motors
moveTo = {arg point;
~serialPort.putAll(point.x.asInteger.asString ++ " " ++ point.y.asInteger.asString);
~serialPort.put(10);
};
jogControl = {arg axis;
var jog, count = 0, jogRate= 0, jogDirection = 1;
jog = Task({
loop{
count = (count + 0.01).clip(0, 1);
jogRate = pow(count, 2) * 500;
if(axis == '/jog_horizontal', {
tarPos.x = curPos.x + (jogRate * jogDirection);
}, {
tarPos.y = curPos.y + (jogRate * jogDirection);
});
moveTo.value(tarPos);
0.1.wait
};
});
OSCFunc({arg msg;
//tarPos.x = curPos.x + (1000 * msg[1]);
//moveTo.value(tarPos);
if(msg[1] == 0, {count = 0; jogRate = 0; jog.pause()}, {jogDirection = msg[1]; jog.play(AppClock)});
automation = false;
netAddress.sendMsg("/STATE/SET", "{automate: 0}");
}, axis, netAddress)
};
jogHorizontal = jogControl.value('/jog_horizontal');
jogVertical = jogControl.value('/jog_vertical');
imgSelect = {
//var lastSelect = nil;
OSCFunc({arg msg;
var imgIndex;
if(msg[1] > 0, {
imgIndex = msg[1] - 1;
if(imgPositions[imgIndex] != nil, {tarPos = imgPositions[imgIndex].deepCopy; moveTo.value(tarPos)});
9.do({arg i; if(imgIndex != i, {
netAddress.sendMsg("/STATE/SET", "{img_" ++ (i + 1).asString ++ "_select: " ++ (i + 1).neg ++ "}")})});
automation = false;
netAddress.sendMsg("/STATE/SET", "{automate: 0}");
lastSelect = imgIndex;
}, {
lastSelect = 0;
/*
imgIndex = msg[1].neg - 1;
if(imgIndex == lastSelect, {
if(imgPositions[imgIndex] != nil, {tarPos = imgPositions[imgIndex].deepCopy; moveTo.value(tarPos)});
netAddress.sendMsg("/STATE/SET", "{img_" ++ (imgIndex + 1).asInteger.asString ++ "_select: " ++ (imgIndex + 1) ++ "}")});
*/
});
}, '/img_select', netAddress)
}.value;
imgCalibrate = {
var calibrateHold, imgIndex, setPos;
calibrateHold = Routine({
20.do({0.1.wait});
imgPositions[imgIndex] = setPos.deepCopy;
netAddress.sendMsg("/STATE/SET", "{message: \"image calibrated\"}");
});
OSCFunc({ arg msg;
imgIndex = msg[1] - 1;
if(imgIndex >= 0, {
setPos = curPos.deepCopy;
calibrateHold.play(AppClock);
}, {
calibrateHold.stop; calibrateHold.reset; netAddress.sendMsg("/STATE/SET", "{message: \"\"}");
});
}, '/img_calibrate', netAddress);
}.value;
automate = OSCFunc({arg msg;
if(msg[1] == 1, {
automation = true;
}, {
automation = false;
tarPos = curPos.deepCopy;
moveTo.value(tarPos);
});
9.do({arg i; netAddress.sendMsg("/STATE/SET", "{img_" ++ (i + 1).asString ++ "_select: " ++ (i + 1).neg ++ "}")});
}, '/automate', netAddress);
)
~serialPort.close
~serialPort = SerialPort.new("/dev/ttyACM0", baudrate: 115200, crtscts: true);
~serialListener.reset
~serialListener.play(AppClock);
(
// TODO:
// set position to 0
// limit switch warnings
// More clean up and testing
var imageDist, rotation, micronsPerStep, curPos, tarPos, automate, imagePositions,
serialPort, serialListener, moveTo,
window, xOffset, yOffset,
userView, imageButtonRects,
dirKeyBlockTasks, jogTasks, jogRates,
moveButtons, curPosFields, tarPosFields,
calibrationSteps, wizardButtons, wizMoveBlock, curWizardStep, curWizardText;
// init global vars
imageDist = 25; // in microns
rotation = 0; // in degrees
micronsPerStep = 0.0977;
curPos = Point.new(0, 0);
tarPos = Point.new(0, 0);
automate = false;
imagePositions = 3.collect({arg r; 3.collect({arg c; Point(imageDist * (c - 1), imageDist * (r - 1))})}).reverse.flat;
// connect to arduino
serialPort = SerialPort(
"/dev/ttyACM0", //edit to match the port (SerialPort.listDevice)
baudrate: 115200, //check that baudrate is the same as in arduino sketch
crtscts: true);
// recieve motor feedback
serialListener = Routine({
var byte, str, res, valArray,
stepper, limitSwitchPos, limitSwitchNeg, safeMode, limitPos;
loop{
byte = serialPort.read;
if(byte==13, {
if(str[1].asString == "[", {
valArray = str.asString.interpret;
stepper = valArray[0];
if(stepper == 1, {curPos.x = valArray[1]}, {curPos.y = valArray[1]});
//tarPos = valArray[2];
limitSwitchPos = valArray[3];
limitSwitchNeg = valArray[4];
safeMode = valArray[5];
limitPos = valArray[6];
// update all the curPos fields
if(stepper == 2, {
//curPos = curPos.rotate(rotation.neg * (pi / 180.0)) * micronsPerStep;
curPos = curPos * micronsPerStep;
curPosFields[0].string = (curPos.x).round(0.1).asString;
curPosFields[1].string = (curPos.y).round(0.1).asString;
curPosFields[2].string = (curPos.rho).round(0.1).asString;
curPosFields[3].string = (if(curPos.theta >= 0, {0}, {360}) + (curPos.theta * (180 / pi))).round(0.1).asString;
userView.refresh;
// automate mode: select new point before the motor comes to a stop
if(automate, {
if((curPos.x - tarPos.x).abs < 5.0, {tarPos.x = imageDist.rand2.round(0.1)});
if((curPos.y - tarPos.y).abs < 5.0, {tarPos.y = imageDist.rand2.round(0.1)});
moveTo.value(tarPos);
});
});
}, {
(str).postln;
});
str = "";
}, {str = str++byte.asAscii});
};
});
// send new coordinates to the arduino / motors
moveTo = {arg point;
var rotatedPoint, xMove, yMove;
tarPosFields[0].string = tarPos.x.round(0.1).asString;
tarPosFields[1].string = tarPos.y.round(0.1).asString;
tarPosFields[2].string = tarPos.rho.round(0.1).asString;
tarPosFields[3].string = (if(tarPos.theta >= 0, {0}, {360}) + (tarPos.theta * (180 / pi))).round(0.1).asString;
//rotatedPoint = point.rotate(rotation * (pi / 180.0));
rotatedPoint = point;
xMove = (rotatedPoint.x / micronsPerStep).round(1).asInteger;
yMove = (rotatedPoint.y / micronsPerStep).round(1).asInteger;
serialPort.putAll(xMove.asString ++ " " ++ yMove.asString);
serialPort.put(10);
};
// generate the gui
window = Window.new("", Rect(400, 400, 480, 650)).front;
xOffset = 240;
yOffset = 220;
// drawing and window key commands
userView = UserView(window, Rect(0, 0, 800, 600));
imageButtonRects = (({arg r; ({arg c; Rect.aboutPoint(Point(xOffset + (120 * (r - 1)), yOffset + (120 * (c - 1))), 5, 5)}) ! 3}) ! 3).flat;
userView.drawFunc = ({
imageButtonRects.do({ arg rect, i;
Pen.addOval(rect);
Pen.color = Color.blue;
Pen.draw;
});
Pen.addOval(Rect.aboutPoint(Point(xOffset + (curPos.x * (120 / imageDist)), yOffset + (curPos.y.neg * (120 / imageDist))), 5, 5));
Pen.color = Color.black;
Pen.draw;
Pen.line(Point(xOffset, yOffset + 150), Point(xOffset, yOffset + 250));
Pen.stroke;
});
userView.keyDownAction = ({arg view, char, mod, unicode, keycode, key;
switch(key,
16r1000012, {moveButtons[0].focus; dirKeyBlockTasks[0].stop; jogTasks[0].pause; jogTasks[0].play(AppClock)},
16r1000013, {moveButtons[1].focus; dirKeyBlockTasks[1].stop; jogTasks[1].pause; jogTasks[1].play(AppClock)},
16r1000014, {moveButtons[2].focus; dirKeyBlockTasks[2].stop; jogTasks[2].pause; jogTasks[2].play(AppClock)},
16r1000015, {moveButtons[3].focus; dirKeyBlockTasks[3].stop; jogTasks[3].pause; jogTasks[3].play(AppClock)})
});
// create all the jog buttons and logic
dirKeyBlockTasks = [];
jogTasks = [];
jogRates = [0, 0, 0, 0, 0, 0, 0, 0];
moveButtons = ([[-1, 0], [0, -1], [1, 0], [0, 1], [-1, 0], [0, -1], [1, 0], [0, 1]].collect({arg m, i;
var icons = ["◄", "▲", "►", "▼", "↻", "+", "↺", "-"], button;
// speeds up the jog based on how long the button was pressed
jogTasks = jogTasks.add(
Task({
dirKeyBlockTasks[i].stop;
loop{
jogRates[i] = (jogRates[i] + 0.1).clip(0, 10);
if(i < 4, {
// cartesian horizontal movement
if(m[0].abs == 1, {tarPos.x = tarPos.x + (jogRates[i] * m[0])});
// cartesian vertical movement
if(m[1].abs == 1, {tarPos.y = tarPos.y + (jogRates[i] * m[1].neg);});
}, {// polar change theta (rotate)
if(m[0].abs == 1, {tarPos.theta = ((tarPos.theta * (180 / pi)) + (jogRates[i] * m[0])) * (pi / 180.0)});
// polar change magnitude
if(m[1].abs == 1, {tarPos.rho = tarPos.rho + (jogRates[i] * m[1].neg)});
});
moveTo.value(tarPos);
0.2.wait
};
})
);
// hack to acount for a key held down
dirKeyBlockTasks = dirKeyBlockTasks.add(Task({0.1.wait; jogRates[i] = 0;jogTasks[i].stop}));
// create buttons
button = Button(window, Rect(xOffset - 12.5 + (25 * m[0]) + if(i < 4, {-175}, {175}), yOffset + 187.5 + (25 * m[1]), 25, 25))
.states_([[icons[i]]])
.mouseDownAction_({jogRates[i] = 0; jogTasks[i].play(AppClock)})
.action_({jogTasks[i].stop(AppClock)})
.enabled_(false)
.keyDownAction_({arg butt, char, mod, unicode, keycode, key;
switch(key,
16r1000012, {moveButtons[0].focus; dirKeyBlockTasks[0].stop; jogTasks[0].pause; jogTasks[0].play(AppClock); true},
16r1000013, {moveButtons[1].focus; dirKeyBlockTasks[1].stop; jogTasks[1].pause; jogTasks[1].play(AppClock); true},
16r1000014, {moveButtons[2].focus; dirKeyBlockTasks[2].stop; jogTasks[2].pause; jogTasks[2].play(AppClock); true},
16r1000015, {moveButtons[3].focus; dirKeyBlockTasks[3].stop; jogTasks[3].pause; jogTasks[3].play(AppClock); true},
{false})})
.keyUpAction_({arg butt, char, mod, unicode, keycode, key;
switch(key,
16r1000012, {dirKeyBlockTasks[0].start(AppClock); true},
16r1000013, {dirKeyBlockTasks[1].start(AppClock); true},
16r1000014, {dirKeyBlockTasks[2].start(AppClock); true},
16r1000015, {dirKeyBlockTasks[3].start(AppClock); true},
{false})})
}));
// position text fields
StaticText(window, Rect(xOffset - 82, yOffset + 150, 300, 20)).string_("cartesian");
StaticText(window, Rect(xOffset + 39, yOffset + 150, 300, 20)).string_("polar");
curPosFields = [];
tarPosFields = ["x", "y", "ρ", "θ"].collect({arg v, i;
StaticText(window, Rect(xOffset + 22.5 + (55 * (i - 2)), yOffset + 170, 50, 20)).string_(v);
curPosFields = curPosFields.add(StaticText(window, Rect(xOffset + 5 + (55 * (i - 2)), yOffset + 220, 50, 20)).string_("0.0"));
TextField(window, Rect(xOffset + 2.5 + (55 * (i - 2)), yOffset + 190, 50, 20))
.string_("0.0")
.enabled_(false)
.action_({arg field;
if(i < 2, {
tarPos.x = tarPosFields[0].string.asFloat;
tarPos.y = tarPosFields[1].string.asFloat;
tarPosFields[2].string = tarPos.rho.round(0.1).asString;
tarPosFields[3].string = (if(tarPos.theta >= 0, {0}, {360}) + (tarPos.theta * (180 / pi))).round(0.1).asString;
}, {
tarPos.rho = tarPosFields[2].string.asFloat;
tarPos.theta = tarPosFields[3].string.asFloat * (pi / 180);
tarPosFields[0].string = tarPos.x.round(0.1).asString;
tarPosFields[1].string = tarPos.y.round(0.1).asString;
});
moveTo.value(tarPos)})
});
// calibration wizard
calibrationSteps = [
"1) find center image",
"2) find northwest image \ntry first by using only the ↻ ↺ buttons to change θ",
"3) compute all other points \nthis will erase previously saved points unless skipped",
"4) find north image",
"5) find northeast image",
"6) find east image",
"7) find southeast image",
"8) find south image",
"9) find southwest image",
"10) find west image"
];
// disables everything till the point is reached between each step in the wizard
wizMoveBlock = Task({
while({curPos.dist(tarPos) > 1}, {
moveButtons.do({arg button; button.enabled = false});
wizardButtons.do({arg button; button.enabled = false});
tarPosFields.do({arg field; field.enabled = false});
0.1.wait;
});
wizardButtons.do({arg button; button.enabled = true});
wizardButtons[2].focus;
moveButtons.do({arg button; button.enabled = true});
tarPosFields.do({arg field; field.enabled = true});
});
// automate / calibrate button
Button.new(window, Rect.aboutPoint(Point(xOffset, yOffset + 270), 75, 12.5))
.states_([["calibrate"], ["automate"]])
.action_({arg button;
if(button.value == 0, {
automate = true;
curWizardText.string = "";
wizardButtons.do({arg button; button.visible = false});
}, {
automate = false;
curWizardText.string = calibrationSteps[0];
tarPos = imagePositions[4].deepCopy;
moveTo.value(tarPos);
wizMoveBlock.start(AppClock);
curWizardStep = 0;
wizardButtons.do({arg button; button.visible = true});
});
moveButtons.do({arg button; button.enabled = automate.not});
tarPosFields.do({arg field; field.enabled = automate.not});
});
// wizard button logic
curWizardStep = 0;
curWizardText = StaticText(window, Rect.aboutPoint(Point(xOffset, yOffset + 310), 200, 20)).string_("").align_(\center);
wizardButtons = ["back", "skip", "next"].collect({arg t, i;
var pointSeq, button;
pointSeq = [4, 0, 0, 1, 2, 5, 8, 7, 6, 3, 4];
button = Button(window, Rect.aboutPoint(Point(xOffset - 60 + (60 * i), yOffset + 350), 25, 12.5))
.states_([[t]])
.action_({arg button;
// code to automate populate all the points based on relation between two of the points
if((curWizardStep == 2) && (i == 2), {
if(imagePositions[0].rho == imageDist, {
}, {
});
rotation = imagePositions[0].theta - (0.75 * pi);
imagePositions[1].theta = (0.5 * pi) + rotation;
imagePositions[2].theta = (0.25 * pi) + rotation;
imagePositions[3].theta = pi + rotation;
imagePositions[5].theta = rotation;
imagePositions[6].theta = (1.25 * pi) + rotation;
imagePositions[7].theta = (1.5 * pi) + rotation;
imagePositions[8].theta = (1.75 * pi) + rotation;
});
if((curWizardStep == 0) && (i == 2), {serialPort.putAll("c")});
if(i == 2, {imagePositions[pointSeq[curWizardStep]] = if(curWizardStep == 0, {Point(0, 0)}, {curPos.deepCopy})});
curWizardStep = (curWizardStep + if(i == 0, {-1}, {1})) % 10;
tarPos = imagePositions[pointSeq[curWizardStep]].deepCopy;
moveTo.value(tarPos);
wizMoveBlock.start(AppClock);
//wizardButtons.do({arg button; button.enabled = true});
//moveButtons.do({arg button; button.enabled = true});
//tarPosFields.do({arg field; field.enabled = true});
curWizardText.string = calibrationSteps[curWizardStep];
//wizardButtons[1].visible = if(curWizardStep == 2, {true}, {false});
})
.visible_(false)
});
serialListener.play(AppClock);
)
Loading…
Cancel
Save