Matlab prettifier problem with *missing file from the package symbolGetting strange error with MiKTeX when...
How does one intimidate enemies without having the capacity for violence?
How much RAM could one put in a typical 80386 setup?
Can divisibility rules for digits be generalized to sum of digits
What are the differences between the usage of 'it' and 'they'?
Can I make popcorn with any corn?
Windows 98 hangs after entering password on fresh install
What defenses are there against being summoned by the Gate spell?
Did Shadowfax go to Valinor?
What is the word for reserving something for yourself before others do?
How is it possible to have an ability score that is less than 3?
How old can references or sources in a thesis be?
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
Why are electrically insulating heatsinks so rare? Is it just cost?
Modeling an IPv4 Address
Fencing style for blades that can attack from a distance
Python: next in for loop
How to format long polynomial?
Why does Kotter return in Welcome Back Kotter?
Why can't I see bouncing of a switch on an oscilloscope?
Is a tag line useful on a cover?
Test whether all array elements are factors of a number
Risk of getting Chronic Wasting Disease (CWD) in the United States?
Can a Warlock become Neutral Good?
Why doesn't H₄O²⁺ exist?
Matlab prettifier problem with *
missing file from the package symbolGetting strange error with MiKTeX when trying to use “kpfonts” packageLatex font BrushScriptX and MiKTeXmiktex-makemf: The source file could not be foundUsing ITRANS postscript fonts with MikTeX2.9Installing true type fonts in MiKTeX and cannot find source fileMiktex font errorsInstalled Miktex but unable to run from command promptBeamer fails with mathematicsWriting in chinese with miktex and pdflatex : ttf2pk: ERROR: Cannot find `simsun.ttc'
I'm trying to use the matlab-prettifier. Following code does not compile:
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
As soon as I remove the *, it works.
Also if I just use the lstlisting environment without
[
style = Matlab-editor,
basicstyle = mlttfamily,
]
and put the * back in, everything works fine.
I followed the official documentation: https://github.com/Jubobs/matlab-prettifier/wiki
Is there a bug in the matlab-prettifier, or am I doing sth wrong?
*EDIT:
Following you will find a MWE:
documentclass[10pt,a4paper]{report}
usepackage[a4paper, left=2cm, right=2cm, top=2cm]{geometry}
usepackage[numbered,framed]{matlab-prettifier}
begin{document}
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
end{document}
This is the output of Texstudio:
Prozess gestartet: pdflatex.exe -synctex=1 -interaction=nonstopmode "matlabprettifier".tex
Sorry, but miktex-makemf did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makemf.l
og
Sorry, but miktex-makepk did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makepk.log
Prozess endete mit Fehler(n)
*EDIT2
Following, you will find the output of makepk and makemf:
makepk:
2019-04-06 17:25:23,589+0200 INFO miktex-makepk - starting with
command line: miktex-makepk --enable-installer --verbose fvmr8r 510
600 0+510/600 2019-04-06 17:25:23,592+0200 INFO makepk - Trying to
make PK font fvmr8r at 510 DPI... 2019-04-06 17:25:23,604+0200 INFO
makepk - The METFAONT mode is: ljfour 2019-04-06 17:25:23,614+0200
INFO makepk - Running miktex-makemf.exe... 2019-04-06
17:25:23,614+0200 INFO makepk - running: miktex-makemf.exe
--miktex-enable-installer --verbose fvmr8r 2019-04-06 17:25:23,956+0200 INFO makepk - Running miktex-ttf2pk.exe...
2019-04-06 17:25:23,957+0200 INFO makepk - running: miktex-ttf2pk.exe
--miktex-enable-installer -q -t fvmr8r 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be created. 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be
created. 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Info:
2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Source: 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - Line: 0
makemf:
2019-04-06 17:25:23,888+0200 INFO miktex-makemf - starting with
command line: miktex-makemf.exe --miktex-enable-installer --verbose
fvmr8r 2019-04-06 17:25:23,899+0200 FATAL miktex-makemf - The fvmr8r
source file could not be found. 2019-04-06 17:25:23,899+0200 FATAL
miktex-makemf - The fvmr8r source file could not be found. 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Info: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Source: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Line: 0
miktex lstlisting matlab-prettifier
|
show 4 more comments
I'm trying to use the matlab-prettifier. Following code does not compile:
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
As soon as I remove the *, it works.
Also if I just use the lstlisting environment without
[
style = Matlab-editor,
basicstyle = mlttfamily,
]
and put the * back in, everything works fine.
I followed the official documentation: https://github.com/Jubobs/matlab-prettifier/wiki
Is there a bug in the matlab-prettifier, or am I doing sth wrong?
*EDIT:
Following you will find a MWE:
documentclass[10pt,a4paper]{report}
usepackage[a4paper, left=2cm, right=2cm, top=2cm]{geometry}
usepackage[numbered,framed]{matlab-prettifier}
begin{document}
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
end{document}
This is the output of Texstudio:
Prozess gestartet: pdflatex.exe -synctex=1 -interaction=nonstopmode "matlabprettifier".tex
Sorry, but miktex-makemf did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makemf.l
og
Sorry, but miktex-makepk did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makepk.log
Prozess endete mit Fehler(n)
*EDIT2
Following, you will find the output of makepk and makemf:
makepk:
2019-04-06 17:25:23,589+0200 INFO miktex-makepk - starting with
command line: miktex-makepk --enable-installer --verbose fvmr8r 510
600 0+510/600 2019-04-06 17:25:23,592+0200 INFO makepk - Trying to
make PK font fvmr8r at 510 DPI... 2019-04-06 17:25:23,604+0200 INFO
makepk - The METFAONT mode is: ljfour 2019-04-06 17:25:23,614+0200
INFO makepk - Running miktex-makemf.exe... 2019-04-06
17:25:23,614+0200 INFO makepk - running: miktex-makemf.exe
--miktex-enable-installer --verbose fvmr8r 2019-04-06 17:25:23,956+0200 INFO makepk - Running miktex-ttf2pk.exe...
2019-04-06 17:25:23,957+0200 INFO makepk - running: miktex-ttf2pk.exe
--miktex-enable-installer -q -t fvmr8r 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be created. 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be
created. 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Info:
2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Source: 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - Line: 0
makemf:
2019-04-06 17:25:23,888+0200 INFO miktex-makemf - starting with
command line: miktex-makemf.exe --miktex-enable-installer --verbose
fvmr8r 2019-04-06 17:25:23,899+0200 FATAL miktex-makemf - The fvmr8r
source file could not be found. 2019-04-06 17:25:23,899+0200 FATAL
miktex-makemf - The fvmr8r source file could not be found. 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Info: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Source: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Line: 0
miktex lstlisting matlab-prettifier
Could you please make a MWE (minimal working example that allows others to reproduce the issue you describe. Adding the error message to your question could also be helpful. If I use your code and add a documentclass as well as the relevant packages your code compiles just fine.
– leandriis
11 hours ago
ok, one moment, I will add it as an edit
– Karl
11 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
11 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
11 hours ago
1
so it is not directly related to the matlab code at all, you simply don't have tha bera fonts installed, in texlive I get/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
not sure how to update miktex to have the fonts
– David Carlisle
10 hours ago
|
show 4 more comments
I'm trying to use the matlab-prettifier. Following code does not compile:
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
As soon as I remove the *, it works.
Also if I just use the lstlisting environment without
[
style = Matlab-editor,
basicstyle = mlttfamily,
]
and put the * back in, everything works fine.
I followed the official documentation: https://github.com/Jubobs/matlab-prettifier/wiki
Is there a bug in the matlab-prettifier, or am I doing sth wrong?
*EDIT:
Following you will find a MWE:
documentclass[10pt,a4paper]{report}
usepackage[a4paper, left=2cm, right=2cm, top=2cm]{geometry}
usepackage[numbered,framed]{matlab-prettifier}
begin{document}
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
end{document}
This is the output of Texstudio:
Prozess gestartet: pdflatex.exe -synctex=1 -interaction=nonstopmode "matlabprettifier".tex
Sorry, but miktex-makemf did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makemf.l
og
Sorry, but miktex-makepk did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makepk.log
Prozess endete mit Fehler(n)
*EDIT2
Following, you will find the output of makepk and makemf:
makepk:
2019-04-06 17:25:23,589+0200 INFO miktex-makepk - starting with
command line: miktex-makepk --enable-installer --verbose fvmr8r 510
600 0+510/600 2019-04-06 17:25:23,592+0200 INFO makepk - Trying to
make PK font fvmr8r at 510 DPI... 2019-04-06 17:25:23,604+0200 INFO
makepk - The METFAONT mode is: ljfour 2019-04-06 17:25:23,614+0200
INFO makepk - Running miktex-makemf.exe... 2019-04-06
17:25:23,614+0200 INFO makepk - running: miktex-makemf.exe
--miktex-enable-installer --verbose fvmr8r 2019-04-06 17:25:23,956+0200 INFO makepk - Running miktex-ttf2pk.exe...
2019-04-06 17:25:23,957+0200 INFO makepk - running: miktex-ttf2pk.exe
--miktex-enable-installer -q -t fvmr8r 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be created. 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be
created. 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Info:
2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Source: 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - Line: 0
makemf:
2019-04-06 17:25:23,888+0200 INFO miktex-makemf - starting with
command line: miktex-makemf.exe --miktex-enable-installer --verbose
fvmr8r 2019-04-06 17:25:23,899+0200 FATAL miktex-makemf - The fvmr8r
source file could not be found. 2019-04-06 17:25:23,899+0200 FATAL
miktex-makemf - The fvmr8r source file could not be found. 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Info: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Source: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Line: 0
miktex lstlisting matlab-prettifier
I'm trying to use the matlab-prettifier. Following code does not compile:
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
As soon as I remove the *, it works.
Also if I just use the lstlisting environment without
[
style = Matlab-editor,
basicstyle = mlttfamily,
]
and put the * back in, everything works fine.
I followed the official documentation: https://github.com/Jubobs/matlab-prettifier/wiki
Is there a bug in the matlab-prettifier, or am I doing sth wrong?
*EDIT:
Following you will find a MWE:
documentclass[10pt,a4paper]{report}
usepackage[a4paper, left=2cm, right=2cm, top=2cm]{geometry}
usepackage[numbered,framed]{matlab-prettifier}
begin{document}
begin{lstlisting}[
style = Matlab-editor,
basicstyle = mlttfamily,
]
ro=zeros(length(prec),length(prec)+length(h)-1);
for i=t
ro(i,i:i+length(h)-1)=prec(i) * h;
end
runoff = sum(ro,1);
end{lstlisting}
end{document}
This is the output of Texstudio:
Prozess gestartet: pdflatex.exe -synctex=1 -interaction=nonstopmode "matlabprettifier".tex
Sorry, but miktex-makemf did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makemf.l
og
Sorry, but miktex-makepk did not succeed. The log file hopefully contains the information to get MiKTeX going again: C:UsersKarlAppDataLocalMiKTeX2.9miktexlogmiktex-makepk.log
Prozess endete mit Fehler(n)
*EDIT2
Following, you will find the output of makepk and makemf:
makepk:
2019-04-06 17:25:23,589+0200 INFO miktex-makepk - starting with
command line: miktex-makepk --enable-installer --verbose fvmr8r 510
600 0+510/600 2019-04-06 17:25:23,592+0200 INFO makepk - Trying to
make PK font fvmr8r at 510 DPI... 2019-04-06 17:25:23,604+0200 INFO
makepk - The METFAONT mode is: ljfour 2019-04-06 17:25:23,614+0200
INFO makepk - Running miktex-makemf.exe... 2019-04-06
17:25:23,614+0200 INFO makepk - running: miktex-makemf.exe
--miktex-enable-installer --verbose fvmr8r 2019-04-06 17:25:23,956+0200 INFO makepk - Running miktex-ttf2pk.exe...
2019-04-06 17:25:23,957+0200 INFO makepk - running: miktex-ttf2pk.exe
--miktex-enable-installer -q -t fvmr8r 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be created. 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - PK font fvmr8r could not be
created. 2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Info:
2019-04-06 17:25:24,507+0200 FATAL miktex-makepk - Source: 2019-04-06
17:25:24,507+0200 FATAL miktex-makepk - Line: 0
makemf:
2019-04-06 17:25:23,888+0200 INFO miktex-makemf - starting with
command line: miktex-makemf.exe --miktex-enable-installer --verbose
fvmr8r 2019-04-06 17:25:23,899+0200 FATAL miktex-makemf - The fvmr8r
source file could not be found. 2019-04-06 17:25:23,899+0200 FATAL
miktex-makemf - The fvmr8r source file could not be found. 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Info: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Source: 2019-04-06
17:25:23,899+0200 FATAL miktex-makemf - Line: 0
miktex lstlisting matlab-prettifier
miktex lstlisting matlab-prettifier
edited 8 hours ago
Mico
285k31388778
285k31388778
asked 11 hours ago
KarlKarl
33
33
Could you please make a MWE (minimal working example that allows others to reproduce the issue you describe. Adding the error message to your question could also be helpful. If I use your code and add a documentclass as well as the relevant packages your code compiles just fine.
– leandriis
11 hours ago
ok, one moment, I will add it as an edit
– Karl
11 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
11 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
11 hours ago
1
so it is not directly related to the matlab code at all, you simply don't have tha bera fonts installed, in texlive I get/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
not sure how to update miktex to have the fonts
– David Carlisle
10 hours ago
|
show 4 more comments
Could you please make a MWE (minimal working example that allows others to reproduce the issue you describe. Adding the error message to your question could also be helpful. If I use your code and add a documentclass as well as the relevant packages your code compiles just fine.
– leandriis
11 hours ago
ok, one moment, I will add it as an edit
– Karl
11 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
11 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
11 hours ago
1
so it is not directly related to the matlab code at all, you simply don't have tha bera fonts installed, in texlive I get/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
not sure how to update miktex to have the fonts
– David Carlisle
10 hours ago
Could you please make a MWE (minimal working example that allows others to reproduce the issue you describe. Adding the error message to your question could also be helpful. If I use your code and add a documentclass as well as the relevant packages your code compiles just fine.
– leandriis
11 hours ago
Could you please make a MWE (minimal working example that allows others to reproduce the issue you describe. Adding the error message to your question could also be helpful. If I use your code and add a documentclass as well as the relevant packages your code compiles just fine.
– leandriis
11 hours ago
ok, one moment, I will add it as an edit
– Karl
11 hours ago
ok, one moment, I will add it as an edit
– Karl
11 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
11 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
11 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
11 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
11 hours ago
1
1
so it is not directly related to the matlab code at all, you simply don't have tha bera fonts installed, in texlive I get
/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
not sure how to update miktex to have the fonts– David Carlisle
10 hours ago
so it is not directly related to the matlab code at all, you simply don't have tha bera fonts installed, in texlive I get
/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
not sure how to update miktex to have the fonts– David Carlisle
10 hours ago
|
show 4 more comments
0
active
oldest
votes
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%2f483534%2fmatlab-prettifier-problem-with%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f483534%2fmatlab-prettifier-problem-with%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
Could you please make a MWE (minimal working example that allows others to reproduce the issue you describe. Adding the error message to your question could also be helpful. If I use your code and add a documentclass as well as the relevant packages your code compiles just fine.
– leandriis
11 hours ago
ok, one moment, I will add it as an edit
– Karl
11 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
11 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
11 hours ago
1
so it is not directly related to the matlab code at all, you simply don't have tha bera fonts installed, in texlive I get
/usr/local/texlive/2019/texmf-dist/fonts/tfm/public/bera/fvmr8r.tfm
not sure how to update miktex to have the fonts– David Carlisle
10 hours ago