Matlab prettifier problem with *missing file from the package symbolGetting strange error with MiKTeX when...
Why are electrically insulating heatsinks so rare? Is it just cost?
Do VLANs within a subnet need to have their own subnet for router on a stick?
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
A newer friend of my brother's gave him a load of baseball cards that are supposedly extremely valuable. Is this a scam?
Writing rule stating superpower from different root cause is bad writing
Prove that NP is closed under karp reduction?
Mathematical cryptic clues
Why not use SQL instead of GraphQL?
Is it unprofessional to ask if a job posting on GlassDoor is real?
What would happen to a modern skyscraper if it rains micro blackholes?
What defenses are there against being summoned by the Gate spell?
Font hinting is lost in Chrome-like browsers (for some languages )
Fencing style for blades that can attack from a distance
Why do I get two different answers for this counting problem?
How can I make my BBEG immortal short of making them a Lich or Vampire?
What is the word for reserving something for yourself before others do?
Watching something be written to a file live with tail
US citizen flying to France today and my passport expires in less than 2 months
To string or not to string
Languages that we cannot (dis)prove to be Context-Free
Show that if two triangles built on parallel lines, with equal bases have the same perimeter only if they are congruent.
How to format long polynomial?
Approximately how much travel time was saved by the opening of the Suez Canal in 1869?
What is the offset in a seaplane's hull?
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
8 hours ago
ok, one moment, I will add it as an edit
– Karl
8 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
8 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
8 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.tfmnot sure how to update miktex to have the fonts
– David Carlisle
7 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 5 hours ago
Mico
285k31388778
285k31388778
asked 8 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
8 hours ago
ok, one moment, I will add it as an edit
– Karl
8 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
8 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
8 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.tfmnot sure how to update miktex to have the fonts
– David Carlisle
7 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
8 hours ago
ok, one moment, I will add it as an edit
– Karl
8 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
8 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
8 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.tfmnot sure how to update miktex to have the fonts
– David Carlisle
7 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
8 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
8 hours ago
ok, one moment, I will add it as an edit
– Karl
8 hours ago
ok, one moment, I will add it as an edit
– Karl
8 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
8 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
8 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
8 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
8 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
7 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
7 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
8 hours ago
ok, one moment, I will add it as an edit
– Karl
8 hours ago
sorry I already edited it, didn't notice your comment. The document runs without error when I try it.
– David Carlisle
8 hours ago
ok, I will also add the error logs of makemf and makepk, maybe you or someone else can find something
– Karl
8 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.tfmnot sure how to update miktex to have the fonts– David Carlisle
7 hours ago