MusiXTex problem with musixflx Announcing the arrival of Valued Associate #679: Cesar Manara ...
Why not send Voyager 3 and 4 following up the paths taken by Voyager 1 and 2 to re-transmit signals of later as they fly away from Earth?
How can a team of shapeshifters communicate?
Nose gear failure in single prop aircraft: belly landing or nose-gear up landing?
Is it dangerous to install hacking tools on my private linux machine?
Weaponising the Grasp-at-a-Distance spell
Caught masturbating at work
Does the Mueller report show a conspiracy between Russia and the Trump Campaign?
Is openssl rand command cryptographically secure?
"klopfte jemand" or "jemand klopfte"?
One-one communication
Sally's older brother
The answer of a series with complex variable analysis
Putting class ranking in CV, but against dept guidelines
Why is std::move not [[nodiscard]] in C++20?
Did Mueller's report provide an evidentiary basis for the claim of Russian govt election interference via social media?
Why is the change of basis formula counter-intuitive? [See details]
What would you call this weird metallic apparatus that allows you to lift people?
I got rid of Mac OSX and replaced it with linux but now I can't change it back to OSX or windows
Google .dev domain strangely redirects to https
Simple Http Server
After Sam didn't return home in the end, were he and Al still friends?
Can two people see the same photon?
GDP with Intermediate Production
My mentor says to set image to Fine instead of RAW — how is this different from JPG?
MusiXTex problem with musixflx
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)MusixTex problem with formatMusixTex apparent bug in whSetting plainchant in musixtexCompatibility of musixtex with amsmathFont problems with musiXteXMusixTex problem with formatConverting PMX preprocessed MusiXTeX code to proper LaTeX codeMusixtex end of line bar problemmusixtex bars not visibleTabular vertically centered with MusiXTeXMusiXTeX, two instruments with scalebox
I try to compile my score (prepared with MusiXTex package) by following the three-pass system as described here (pt. 1.3). Accordingly, I run etex
on my tex file, then I run musixflx
on the .mx1 file created in the previous step and then I run etex
again. The problem is, it yields no result (I mean the pdf output remains unchanged). I think that it may have something to do with the fact that the .mx2 file produced by executing the second pass (running musixflx
) seems to be empty. I use TeXStudio editor and TeXLive distribution.
Here's my MWE:
documentclass[a4paper,12pt]{article}
usepackage{musixtex,etex}
begin{document}
begin{music}
nobarnumbers
setstaffs1{2}
setclef1bass
generalsignature{-1}
startextract
notesp
{zql{`f}}qu{`h} {zql{f}}qu{h} {zql{f}}qu{h} {zw f}isluru0ihu{i*} tslur0{'c}hu{c*} qu{`f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
|
qu{fff} {lw f}ibsluru0ghu{g*} tslur0hhu{h*} qu{f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
enbar
notesp
{zwqq{c}}wqq{`f****} {zhu{i}}hl{c*} {zw{h}}wh{f**}
|
{zwqq{f}}wqq{h****} {zhl{e}}hu{g*} {zw{d}}wh{f**}
en
Endpiece
zendextract
end{music}
end{document}
I'd be much grateful for any help.
musixtex
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
|
show 1 more comment
I try to compile my score (prepared with MusiXTex package) by following the three-pass system as described here (pt. 1.3). Accordingly, I run etex
on my tex file, then I run musixflx
on the .mx1 file created in the previous step and then I run etex
again. The problem is, it yields no result (I mean the pdf output remains unchanged). I think that it may have something to do with the fact that the .mx2 file produced by executing the second pass (running musixflx
) seems to be empty. I use TeXStudio editor and TeXLive distribution.
Here's my MWE:
documentclass[a4paper,12pt]{article}
usepackage{musixtex,etex}
begin{document}
begin{music}
nobarnumbers
setstaffs1{2}
setclef1bass
generalsignature{-1}
startextract
notesp
{zql{`f}}qu{`h} {zql{f}}qu{h} {zql{f}}qu{h} {zw f}isluru0ihu{i*} tslur0{'c}hu{c*} qu{`f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
|
qu{fff} {lw f}ibsluru0ghu{g*} tslur0hhu{h*} qu{f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
enbar
notesp
{zwqq{c}}wqq{`f****} {zhu{i}}hl{c*} {zw{h}}wh{f**}
|
{zwqq{f}}wqq{h****} {zhl{e}}hu{g*} {zw{d}}wh{f**}
en
Endpiece
zendextract
end{music}
end{document}
I'd be much grateful for any help.
musixtex
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Welcome to TeX.SE. Colud add, please, yourdocumentclass
and the other packages?
– Sebastiano
Aug 23 '18 at 7:56
Sorry, I omitted them as I copied the code. I've just added it by editing the original post.
– A.P.
Aug 23 '18 at 8:53
If I run your example, the producedmx1
file contains just two lines: first line83
, second line* 0 0
. Runningmusixflx
with thed
flag, I get the message “Corrupted apflx.mx1” (apflx
is the file name I used for your example).
– egreg
Aug 23 '18 at 9:15
Thank you. There's apparently something wrong with my example - I tried processing this example: tex.stackexchange.com/questions/373446/… with the three-pass system and it worked perfectly for me. At least I got to know I need to fix something in the example itself ;)
– A.P.
Aug 23 '18 at 9:29
You can compile your document viapdflatex document.tex
...
– Paul Gaborit
Aug 23 '18 at 10:00
|
show 1 more comment
I try to compile my score (prepared with MusiXTex package) by following the three-pass system as described here (pt. 1.3). Accordingly, I run etex
on my tex file, then I run musixflx
on the .mx1 file created in the previous step and then I run etex
again. The problem is, it yields no result (I mean the pdf output remains unchanged). I think that it may have something to do with the fact that the .mx2 file produced by executing the second pass (running musixflx
) seems to be empty. I use TeXStudio editor and TeXLive distribution.
Here's my MWE:
documentclass[a4paper,12pt]{article}
usepackage{musixtex,etex}
begin{document}
begin{music}
nobarnumbers
setstaffs1{2}
setclef1bass
generalsignature{-1}
startextract
notesp
{zql{`f}}qu{`h} {zql{f}}qu{h} {zql{f}}qu{h} {zw f}isluru0ihu{i*} tslur0{'c}hu{c*} qu{`f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
|
qu{fff} {lw f}ibsluru0ghu{g*} tslur0hhu{h*} qu{f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
enbar
notesp
{zwqq{c}}wqq{`f****} {zhu{i}}hl{c*} {zw{h}}wh{f**}
|
{zwqq{f}}wqq{h****} {zhl{e}}hu{g*} {zw{d}}wh{f**}
en
Endpiece
zendextract
end{music}
end{document}
I'd be much grateful for any help.
musixtex
I try to compile my score (prepared with MusiXTex package) by following the three-pass system as described here (pt. 1.3). Accordingly, I run etex
on my tex file, then I run musixflx
on the .mx1 file created in the previous step and then I run etex
again. The problem is, it yields no result (I mean the pdf output remains unchanged). I think that it may have something to do with the fact that the .mx2 file produced by executing the second pass (running musixflx
) seems to be empty. I use TeXStudio editor and TeXLive distribution.
Here's my MWE:
documentclass[a4paper,12pt]{article}
usepackage{musixtex,etex}
begin{document}
begin{music}
nobarnumbers
setstaffs1{2}
setclef1bass
generalsignature{-1}
startextract
notesp
{zql{`f}}qu{`h} {zql{f}}qu{h} {zql{f}}qu{h} {zw f}isluru0ihu{i*} tslur0{'c}hu{c*} qu{`f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
|
qu{fff} {lw f}ibsluru0ghu{g*} tslur0hhu{h*} qu{f*} caesura
wh{f**} {lql f}qu{g} {zql f}qu{h} {zhl f}hu{i*} {zwh f}wh{i**}
enbar
notesp
{zwqq{c}}wqq{`f****} {zhu{i}}hl{c*} {zw{h}}wh{f**}
|
{zwqq{f}}wqq{h****} {zhl{e}}hu{g*} {zw{d}}wh{f**}
en
Endpiece
zendextract
end{music}
end{document}
I'd be much grateful for any help.
musixtex
musixtex
edited Aug 23 '18 at 8:51
A.P.
asked Aug 23 '18 at 7:48
A.P.A.P.
63
63
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
bumped to the homepage by Community♦ 4 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
Welcome to TeX.SE. Colud add, please, yourdocumentclass
and the other packages?
– Sebastiano
Aug 23 '18 at 7:56
Sorry, I omitted them as I copied the code. I've just added it by editing the original post.
– A.P.
Aug 23 '18 at 8:53
If I run your example, the producedmx1
file contains just two lines: first line83
, second line* 0 0
. Runningmusixflx
with thed
flag, I get the message “Corrupted apflx.mx1” (apflx
is the file name I used for your example).
– egreg
Aug 23 '18 at 9:15
Thank you. There's apparently something wrong with my example - I tried processing this example: tex.stackexchange.com/questions/373446/… with the three-pass system and it worked perfectly for me. At least I got to know I need to fix something in the example itself ;)
– A.P.
Aug 23 '18 at 9:29
You can compile your document viapdflatex document.tex
...
– Paul Gaborit
Aug 23 '18 at 10:00
|
show 1 more comment
Welcome to TeX.SE. Colud add, please, yourdocumentclass
and the other packages?
– Sebastiano
Aug 23 '18 at 7:56
Sorry, I omitted them as I copied the code. I've just added it by editing the original post.
– A.P.
Aug 23 '18 at 8:53
If I run your example, the producedmx1
file contains just two lines: first line83
, second line* 0 0
. Runningmusixflx
with thed
flag, I get the message “Corrupted apflx.mx1” (apflx
is the file name I used for your example).
– egreg
Aug 23 '18 at 9:15
Thank you. There's apparently something wrong with my example - I tried processing this example: tex.stackexchange.com/questions/373446/… with the three-pass system and it worked perfectly for me. At least I got to know I need to fix something in the example itself ;)
– A.P.
Aug 23 '18 at 9:29
You can compile your document viapdflatex document.tex
...
– Paul Gaborit
Aug 23 '18 at 10:00
Welcome to TeX.SE. Colud add, please, your
documentclass
and the other packages?– Sebastiano
Aug 23 '18 at 7:56
Welcome to TeX.SE. Colud add, please, your
documentclass
and the other packages?– Sebastiano
Aug 23 '18 at 7:56
Sorry, I omitted them as I copied the code. I've just added it by editing the original post.
– A.P.
Aug 23 '18 at 8:53
Sorry, I omitted them as I copied the code. I've just added it by editing the original post.
– A.P.
Aug 23 '18 at 8:53
If I run your example, the produced
mx1
file contains just two lines: first line 83
, second line * 0 0
. Running musixflx
with the d
flag, I get the message “Corrupted apflx.mx1” (apflx
is the file name I used for your example).– egreg
Aug 23 '18 at 9:15
If I run your example, the produced
mx1
file contains just two lines: first line 83
, second line * 0 0
. Running musixflx
with the d
flag, I get the message “Corrupted apflx.mx1” (apflx
is the file name I used for your example).– egreg
Aug 23 '18 at 9:15
Thank you. There's apparently something wrong with my example - I tried processing this example: tex.stackexchange.com/questions/373446/… with the three-pass system and it worked perfectly for me. At least I got to know I need to fix something in the example itself ;)
– A.P.
Aug 23 '18 at 9:29
Thank you. There's apparently something wrong with my example - I tried processing this example: tex.stackexchange.com/questions/373446/… with the three-pass system and it worked perfectly for me. At least I got to know I need to fix something in the example itself ;)
– A.P.
Aug 23 '18 at 9:29
You can compile your document via
pdflatex document.tex
...– Paul Gaborit
Aug 23 '18 at 10:00
You can compile your document via
pdflatex document.tex
...– Paul Gaborit
Aug 23 '18 at 10:00
|
show 1 more comment
1 Answer
1
active
oldest
votes
I tried your sample with latex
musixflx
and latex
process, for me it seems the sample itself produces no .mx2
file.
The documentation says the best example is the documentation itself, why not you have a try?
Here, I attach to you a useful tool makefile
, it could be super easy with command line.
# Author: c275633094@gmail.com
# Date: 05-04-2018
# MusiXTeX musixdoc tutorial example makefile
## First, set the main filename = YOUR_TEX_FILE_NAME_WITHOUT_.TEX
# $ make, to run commands in this file
# $ make read, to read the pdf file
# $ make clean, to clean the inter file
filename=YOUR_TEX_FILE_NAME
all:
latex ${filename}
musixflx ${filename}
bibtex ${filename}||true
latex ${filename}
makeindex ${filename}
latex ${filename}
latex ${filename}
dvips -e0 ${filename}
ps2pdf ${filename}.ps
read:
evince ${filename}.pdf &
oread:
okular ${filename}.pdf
clean:
-rm -f *.aux
-rm -f *.ps
-rm -f *.dvi
-rm -f *.idx
-rm -f *.ilg
-rm -f *.ind
-rm -f *.mx1
-rm -f *.mx2
-rm -f *.log
-rm -f *.toc
-rm -f *.bbl
-rm -f *.blg
-rm -f *.out
-rm -f make/bib
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f447283%2fmusixtex-problem-with-musixflx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I tried your sample with latex
musixflx
and latex
process, for me it seems the sample itself produces no .mx2
file.
The documentation says the best example is the documentation itself, why not you have a try?
Here, I attach to you a useful tool makefile
, it could be super easy with command line.
# Author: c275633094@gmail.com
# Date: 05-04-2018
# MusiXTeX musixdoc tutorial example makefile
## First, set the main filename = YOUR_TEX_FILE_NAME_WITHOUT_.TEX
# $ make, to run commands in this file
# $ make read, to read the pdf file
# $ make clean, to clean the inter file
filename=YOUR_TEX_FILE_NAME
all:
latex ${filename}
musixflx ${filename}
bibtex ${filename}||true
latex ${filename}
makeindex ${filename}
latex ${filename}
latex ${filename}
dvips -e0 ${filename}
ps2pdf ${filename}.ps
read:
evince ${filename}.pdf &
oread:
okular ${filename}.pdf
clean:
-rm -f *.aux
-rm -f *.ps
-rm -f *.dvi
-rm -f *.idx
-rm -f *.ilg
-rm -f *.ind
-rm -f *.mx1
-rm -f *.mx2
-rm -f *.log
-rm -f *.toc
-rm -f *.bbl
-rm -f *.blg
-rm -f *.out
-rm -f make/bib
add a comment |
I tried your sample with latex
musixflx
and latex
process, for me it seems the sample itself produces no .mx2
file.
The documentation says the best example is the documentation itself, why not you have a try?
Here, I attach to you a useful tool makefile
, it could be super easy with command line.
# Author: c275633094@gmail.com
# Date: 05-04-2018
# MusiXTeX musixdoc tutorial example makefile
## First, set the main filename = YOUR_TEX_FILE_NAME_WITHOUT_.TEX
# $ make, to run commands in this file
# $ make read, to read the pdf file
# $ make clean, to clean the inter file
filename=YOUR_TEX_FILE_NAME
all:
latex ${filename}
musixflx ${filename}
bibtex ${filename}||true
latex ${filename}
makeindex ${filename}
latex ${filename}
latex ${filename}
dvips -e0 ${filename}
ps2pdf ${filename}.ps
read:
evince ${filename}.pdf &
oread:
okular ${filename}.pdf
clean:
-rm -f *.aux
-rm -f *.ps
-rm -f *.dvi
-rm -f *.idx
-rm -f *.ilg
-rm -f *.ind
-rm -f *.mx1
-rm -f *.mx2
-rm -f *.log
-rm -f *.toc
-rm -f *.bbl
-rm -f *.blg
-rm -f *.out
-rm -f make/bib
add a comment |
I tried your sample with latex
musixflx
and latex
process, for me it seems the sample itself produces no .mx2
file.
The documentation says the best example is the documentation itself, why not you have a try?
Here, I attach to you a useful tool makefile
, it could be super easy with command line.
# Author: c275633094@gmail.com
# Date: 05-04-2018
# MusiXTeX musixdoc tutorial example makefile
## First, set the main filename = YOUR_TEX_FILE_NAME_WITHOUT_.TEX
# $ make, to run commands in this file
# $ make read, to read the pdf file
# $ make clean, to clean the inter file
filename=YOUR_TEX_FILE_NAME
all:
latex ${filename}
musixflx ${filename}
bibtex ${filename}||true
latex ${filename}
makeindex ${filename}
latex ${filename}
latex ${filename}
dvips -e0 ${filename}
ps2pdf ${filename}.ps
read:
evince ${filename}.pdf &
oread:
okular ${filename}.pdf
clean:
-rm -f *.aux
-rm -f *.ps
-rm -f *.dvi
-rm -f *.idx
-rm -f *.ilg
-rm -f *.ind
-rm -f *.mx1
-rm -f *.mx2
-rm -f *.log
-rm -f *.toc
-rm -f *.bbl
-rm -f *.blg
-rm -f *.out
-rm -f make/bib
I tried your sample with latex
musixflx
and latex
process, for me it seems the sample itself produces no .mx2
file.
The documentation says the best example is the documentation itself, why not you have a try?
Here, I attach to you a useful tool makefile
, it could be super easy with command line.
# Author: c275633094@gmail.com
# Date: 05-04-2018
# MusiXTeX musixdoc tutorial example makefile
## First, set the main filename = YOUR_TEX_FILE_NAME_WITHOUT_.TEX
# $ make, to run commands in this file
# $ make read, to read the pdf file
# $ make clean, to clean the inter file
filename=YOUR_TEX_FILE_NAME
all:
latex ${filename}
musixflx ${filename}
bibtex ${filename}||true
latex ${filename}
makeindex ${filename}
latex ${filename}
latex ${filename}
dvips -e0 ${filename}
ps2pdf ${filename}.ps
read:
evince ${filename}.pdf &
oread:
okular ${filename}.pdf
clean:
-rm -f *.aux
-rm -f *.ps
-rm -f *.dvi
-rm -f *.idx
-rm -f *.ilg
-rm -f *.ind
-rm -f *.mx1
-rm -f *.mx2
-rm -f *.log
-rm -f *.toc
-rm -f *.bbl
-rm -f *.blg
-rm -f *.out
-rm -f make/bib
answered Aug 23 '18 at 21:23
Paul ChenPaul Chen
785
785
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f447283%2fmusixtex-problem-with-musixflx%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Welcome to TeX.SE. Colud add, please, your
documentclass
and the other packages?– Sebastiano
Aug 23 '18 at 7:56
Sorry, I omitted them as I copied the code. I've just added it by editing the original post.
– A.P.
Aug 23 '18 at 8:53
If I run your example, the produced
mx1
file contains just two lines: first line83
, second line* 0 0
. Runningmusixflx
with thed
flag, I get the message “Corrupted apflx.mx1” (apflx
is the file name I used for your example).– egreg
Aug 23 '18 at 9:15
Thank you. There's apparently something wrong with my example - I tried processing this example: tex.stackexchange.com/questions/373446/… with the three-pass system and it worked perfectly for me. At least I got to know I need to fix something in the example itself ;)
– A.P.
Aug 23 '18 at 9:29
You can compile your document via
pdflatex document.tex
...– Paul Gaborit
Aug 23 '18 at 10:00