Gnuplot error without any log












0















I am trying to recreate this TikZ picture I saw https://tex.stackexchange.com/a/212936 (specifically the last image)



However upon compiling I get a message saying that the process exited ith errors but there is no information in the log file (see attached screenshot)



enter image description here



enter image description here



I am not sure why this error as occurs as I can render both examples from: enter link description here



My code I am trying to render:



% !TeX encoding = utf8
documentclass[
11pt,cmyk,
multi={tikzpicture},
border=10mm,
]{standalone}


% General packages
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{helvet}
usepackage[garamond]{mathdesign}
usepackage{mathtools}

% Colors
usepackage{xcolor}
definecolor{spot}{cmyk}{1,0.20,0,0}
colorlet{gray}{black!60}
colorlet{wave}{spot}

% Load TikZ and libraries
usepackage{tikz}
usetikzlibrary{calc,positioning,decorations.pathmorphing,%
arrows.meta,backgrounds}
% Define TikZ styles etc.
tikzset{
every plot/.style={
prefix=plots/,
samples=200,
},
every node/.style={
font=footnotesize,
},
line width=1pt,
shorten/.style={
shorten >=#1,
shorten <=#1,
},
>=Triangle,
axis/.style={-Stealth},
tick/.style={
axis,
shorten <=-0.5pgflinewidth,
shorten >=-0.5pgflinewidth,
},
}

% Load and configure pgfplots
usepackage{pgfplots}
usepgfplotslibrary{polar}
pgfplotsset{
compat=1.11,
wave axis/.style={
view={0}{90},
hide axis,
colormap={custom}{color=(white) color=(wave)},
trig format plots=rad,
trig format=rad,
x=1cm,
y=1cm,
z=0cm,
anchor=origin,
},
wave plot/.style={
samples=200,
samples y=2,
surf,shader=interp,
},
polar wave plot/.style={
data cs=polar,
domain=0:2*pi,
samples y=100,
surf,shader=interp,
},
}

% Macro for subfigure captions
newcommand{subfig}[1]{textbf{textsf{#1)}}~}

begin{document}

begin{tikzpicture}
% define variables
defH{0.275}
defS{1.8}
defB{8}
defT{4.5}
defl{2.6}
defs{0.3}
pgfmathsetmacrow{atan((S+H/2)/T)}
pgfmathsetmacroR{sqrt(T^2+(S+H/2)^2)}
%% wave parameters
pgfmathsetmacrowL{6.5*H}
pgfmathsetmacrowA{H/2}
pgfmathsetmacroD{10*wL}
% plane wave
begin{axis}[wave axis]
addplot3[wave plot,domain=-B:0.05,domain y=-wA:wA] {abs(sin(pi/wL * x))};
% addplot[domain=-D:0,samples=200] function {abs(cos(pi/wL * x))};
end{axis}
% radial wave
begin{scope}
% clip (0,-H/2-S) -- (-w:R) arc [start angle=-w, end angle=w, radius=R]
% -- (0,H/2+S) -- cycle;
clip (0,-H/2-S) rectangle (T,H/2+S);
begin{axis}[wave axis]
addplot3[polar wave plot,domain y=0:2*T] function {abs(sin(pi/wL * y))*exp(-0.2*y)};
% addplot[domain=0:2*T,samples=200] function {abs(cos(pi/wL * x))*exp(-0.2*x)};
end{axis}
end{scope}
% tube
draw [ultra thick] (-B,H/2) -| (0,H/2+S);
draw [ultra thick] (-B,-H/2) -| (0,-H/2-S);
% axis
draw [axis] (-B,0) -- ($(T,0)-(0.25,0)$) node [below left] {$x$};
draw [tick,|-] (0,0) node [below right=2pt and 2.5pt,inner sep=0pt] {$0$} -- (1,0);
draw [axis] (0,0) -- (25:2.5) node [below] {$vec{r}$};
% captions
draw (-2.5*wL,0.25*H) -- ++(65:.6) node [above] {$psi_text{i}$};
draw (60:wL/1.9) -- ++(180:1.1) node [left] {$psi_text{a}$};
node at (0,-H/2) [below left, align=right] {cross sectional\area $A$};
end{tikzpicture}
end{document}


Upon inspection of the log file I found this near runsystem



Package pgfplots info on input line 98: Overriding colorspace to cmyk due to xc
olor configuration.
Package pgfplots info on input line 107: Overriding colorspace to cmyk due to x
color configuration.
openout3 = `diagram.pgf-plot.gnuplot'.

runsystem(gnuplot diagram.pgf-plot.gnuplot)...executed.

PGFPlots: reading {diagram.pgf-plot.table}
LaTeX Font Info: Try loading font information for OT1+mdugm on input line 11
6.









share|improve this question

























  • I get no error. Did you run LaTeX with -shell-escape?

    – egreg
    Jan 7 at 11:56











  • I'm curious, what part of this code needs gnuplot (I'm guessing it is hidden somewhere)

    – daleif
    Jan 7 at 12:00











  • yes the wave plot part

    – sab hoque
    Jan 7 at 12:05






  • 1





    If your on windows try my mwe here tex.stackexchange.com/questions/456297/… I will show some basic checks in a rudimentary Results.txt file

    – KJO
    Jan 7 at 12:46






  • 1





    Ok I updated gnuplot to 5.3 (todays version) and get several warning etc but not from gnuplot the issue in my case seems to be font related as I have had problems with garamond in the past (I probably need to clear out a local file) so if I change Garamond to the one I have available [ebgaramond] it compiles for me (with an acceptable pair of font warnings)

    – KJO
    Jan 7 at 14:18
















0















I am trying to recreate this TikZ picture I saw https://tex.stackexchange.com/a/212936 (specifically the last image)



However upon compiling I get a message saying that the process exited ith errors but there is no information in the log file (see attached screenshot)



enter image description here



enter image description here



I am not sure why this error as occurs as I can render both examples from: enter link description here



My code I am trying to render:



% !TeX encoding = utf8
documentclass[
11pt,cmyk,
multi={tikzpicture},
border=10mm,
]{standalone}


% General packages
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{helvet}
usepackage[garamond]{mathdesign}
usepackage{mathtools}

% Colors
usepackage{xcolor}
definecolor{spot}{cmyk}{1,0.20,0,0}
colorlet{gray}{black!60}
colorlet{wave}{spot}

% Load TikZ and libraries
usepackage{tikz}
usetikzlibrary{calc,positioning,decorations.pathmorphing,%
arrows.meta,backgrounds}
% Define TikZ styles etc.
tikzset{
every plot/.style={
prefix=plots/,
samples=200,
},
every node/.style={
font=footnotesize,
},
line width=1pt,
shorten/.style={
shorten >=#1,
shorten <=#1,
},
>=Triangle,
axis/.style={-Stealth},
tick/.style={
axis,
shorten <=-0.5pgflinewidth,
shorten >=-0.5pgflinewidth,
},
}

% Load and configure pgfplots
usepackage{pgfplots}
usepgfplotslibrary{polar}
pgfplotsset{
compat=1.11,
wave axis/.style={
view={0}{90},
hide axis,
colormap={custom}{color=(white) color=(wave)},
trig format plots=rad,
trig format=rad,
x=1cm,
y=1cm,
z=0cm,
anchor=origin,
},
wave plot/.style={
samples=200,
samples y=2,
surf,shader=interp,
},
polar wave plot/.style={
data cs=polar,
domain=0:2*pi,
samples y=100,
surf,shader=interp,
},
}

% Macro for subfigure captions
newcommand{subfig}[1]{textbf{textsf{#1)}}~}

begin{document}

begin{tikzpicture}
% define variables
defH{0.275}
defS{1.8}
defB{8}
defT{4.5}
defl{2.6}
defs{0.3}
pgfmathsetmacrow{atan((S+H/2)/T)}
pgfmathsetmacroR{sqrt(T^2+(S+H/2)^2)}
%% wave parameters
pgfmathsetmacrowL{6.5*H}
pgfmathsetmacrowA{H/2}
pgfmathsetmacroD{10*wL}
% plane wave
begin{axis}[wave axis]
addplot3[wave plot,domain=-B:0.05,domain y=-wA:wA] {abs(sin(pi/wL * x))};
% addplot[domain=-D:0,samples=200] function {abs(cos(pi/wL * x))};
end{axis}
% radial wave
begin{scope}
% clip (0,-H/2-S) -- (-w:R) arc [start angle=-w, end angle=w, radius=R]
% -- (0,H/2+S) -- cycle;
clip (0,-H/2-S) rectangle (T,H/2+S);
begin{axis}[wave axis]
addplot3[polar wave plot,domain y=0:2*T] function {abs(sin(pi/wL * y))*exp(-0.2*y)};
% addplot[domain=0:2*T,samples=200] function {abs(cos(pi/wL * x))*exp(-0.2*x)};
end{axis}
end{scope}
% tube
draw [ultra thick] (-B,H/2) -| (0,H/2+S);
draw [ultra thick] (-B,-H/2) -| (0,-H/2-S);
% axis
draw [axis] (-B,0) -- ($(T,0)-(0.25,0)$) node [below left] {$x$};
draw [tick,|-] (0,0) node [below right=2pt and 2.5pt,inner sep=0pt] {$0$} -- (1,0);
draw [axis] (0,0) -- (25:2.5) node [below] {$vec{r}$};
% captions
draw (-2.5*wL,0.25*H) -- ++(65:.6) node [above] {$psi_text{i}$};
draw (60:wL/1.9) -- ++(180:1.1) node [left] {$psi_text{a}$};
node at (0,-H/2) [below left, align=right] {cross sectional\area $A$};
end{tikzpicture}
end{document}


Upon inspection of the log file I found this near runsystem



Package pgfplots info on input line 98: Overriding colorspace to cmyk due to xc
olor configuration.
Package pgfplots info on input line 107: Overriding colorspace to cmyk due to x
color configuration.
openout3 = `diagram.pgf-plot.gnuplot'.

runsystem(gnuplot diagram.pgf-plot.gnuplot)...executed.

PGFPlots: reading {diagram.pgf-plot.table}
LaTeX Font Info: Try loading font information for OT1+mdugm on input line 11
6.









share|improve this question

























  • I get no error. Did you run LaTeX with -shell-escape?

    – egreg
    Jan 7 at 11:56











  • I'm curious, what part of this code needs gnuplot (I'm guessing it is hidden somewhere)

    – daleif
    Jan 7 at 12:00











  • yes the wave plot part

    – sab hoque
    Jan 7 at 12:05






  • 1





    If your on windows try my mwe here tex.stackexchange.com/questions/456297/… I will show some basic checks in a rudimentary Results.txt file

    – KJO
    Jan 7 at 12:46






  • 1





    Ok I updated gnuplot to 5.3 (todays version) and get several warning etc but not from gnuplot the issue in my case seems to be font related as I have had problems with garamond in the past (I probably need to clear out a local file) so if I change Garamond to the one I have available [ebgaramond] it compiles for me (with an acceptable pair of font warnings)

    – KJO
    Jan 7 at 14:18














0












0








0








I am trying to recreate this TikZ picture I saw https://tex.stackexchange.com/a/212936 (specifically the last image)



However upon compiling I get a message saying that the process exited ith errors but there is no information in the log file (see attached screenshot)



enter image description here



enter image description here



I am not sure why this error as occurs as I can render both examples from: enter link description here



My code I am trying to render:



% !TeX encoding = utf8
documentclass[
11pt,cmyk,
multi={tikzpicture},
border=10mm,
]{standalone}


% General packages
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{helvet}
usepackage[garamond]{mathdesign}
usepackage{mathtools}

% Colors
usepackage{xcolor}
definecolor{spot}{cmyk}{1,0.20,0,0}
colorlet{gray}{black!60}
colorlet{wave}{spot}

% Load TikZ and libraries
usepackage{tikz}
usetikzlibrary{calc,positioning,decorations.pathmorphing,%
arrows.meta,backgrounds}
% Define TikZ styles etc.
tikzset{
every plot/.style={
prefix=plots/,
samples=200,
},
every node/.style={
font=footnotesize,
},
line width=1pt,
shorten/.style={
shorten >=#1,
shorten <=#1,
},
>=Triangle,
axis/.style={-Stealth},
tick/.style={
axis,
shorten <=-0.5pgflinewidth,
shorten >=-0.5pgflinewidth,
},
}

% Load and configure pgfplots
usepackage{pgfplots}
usepgfplotslibrary{polar}
pgfplotsset{
compat=1.11,
wave axis/.style={
view={0}{90},
hide axis,
colormap={custom}{color=(white) color=(wave)},
trig format plots=rad,
trig format=rad,
x=1cm,
y=1cm,
z=0cm,
anchor=origin,
},
wave plot/.style={
samples=200,
samples y=2,
surf,shader=interp,
},
polar wave plot/.style={
data cs=polar,
domain=0:2*pi,
samples y=100,
surf,shader=interp,
},
}

% Macro for subfigure captions
newcommand{subfig}[1]{textbf{textsf{#1)}}~}

begin{document}

begin{tikzpicture}
% define variables
defH{0.275}
defS{1.8}
defB{8}
defT{4.5}
defl{2.6}
defs{0.3}
pgfmathsetmacrow{atan((S+H/2)/T)}
pgfmathsetmacroR{sqrt(T^2+(S+H/2)^2)}
%% wave parameters
pgfmathsetmacrowL{6.5*H}
pgfmathsetmacrowA{H/2}
pgfmathsetmacroD{10*wL}
% plane wave
begin{axis}[wave axis]
addplot3[wave plot,domain=-B:0.05,domain y=-wA:wA] {abs(sin(pi/wL * x))};
% addplot[domain=-D:0,samples=200] function {abs(cos(pi/wL * x))};
end{axis}
% radial wave
begin{scope}
% clip (0,-H/2-S) -- (-w:R) arc [start angle=-w, end angle=w, radius=R]
% -- (0,H/2+S) -- cycle;
clip (0,-H/2-S) rectangle (T,H/2+S);
begin{axis}[wave axis]
addplot3[polar wave plot,domain y=0:2*T] function {abs(sin(pi/wL * y))*exp(-0.2*y)};
% addplot[domain=0:2*T,samples=200] function {abs(cos(pi/wL * x))*exp(-0.2*x)};
end{axis}
end{scope}
% tube
draw [ultra thick] (-B,H/2) -| (0,H/2+S);
draw [ultra thick] (-B,-H/2) -| (0,-H/2-S);
% axis
draw [axis] (-B,0) -- ($(T,0)-(0.25,0)$) node [below left] {$x$};
draw [tick,|-] (0,0) node [below right=2pt and 2.5pt,inner sep=0pt] {$0$} -- (1,0);
draw [axis] (0,0) -- (25:2.5) node [below] {$vec{r}$};
% captions
draw (-2.5*wL,0.25*H) -- ++(65:.6) node [above] {$psi_text{i}$};
draw (60:wL/1.9) -- ++(180:1.1) node [left] {$psi_text{a}$};
node at (0,-H/2) [below left, align=right] {cross sectional\area $A$};
end{tikzpicture}
end{document}


Upon inspection of the log file I found this near runsystem



Package pgfplots info on input line 98: Overriding colorspace to cmyk due to xc
olor configuration.
Package pgfplots info on input line 107: Overriding colorspace to cmyk due to x
color configuration.
openout3 = `diagram.pgf-plot.gnuplot'.

runsystem(gnuplot diagram.pgf-plot.gnuplot)...executed.

PGFPlots: reading {diagram.pgf-plot.table}
LaTeX Font Info: Try loading font information for OT1+mdugm on input line 11
6.









share|improve this question
















I am trying to recreate this TikZ picture I saw https://tex.stackexchange.com/a/212936 (specifically the last image)



However upon compiling I get a message saying that the process exited ith errors but there is no information in the log file (see attached screenshot)



enter image description here



enter image description here



I am not sure why this error as occurs as I can render both examples from: enter link description here



My code I am trying to render:



% !TeX encoding = utf8
documentclass[
11pt,cmyk,
multi={tikzpicture},
border=10mm,
]{standalone}


% General packages
usepackage[utf8]{inputenc}
usepackage[T1]{fontenc}
usepackage{helvet}
usepackage[garamond]{mathdesign}
usepackage{mathtools}

% Colors
usepackage{xcolor}
definecolor{spot}{cmyk}{1,0.20,0,0}
colorlet{gray}{black!60}
colorlet{wave}{spot}

% Load TikZ and libraries
usepackage{tikz}
usetikzlibrary{calc,positioning,decorations.pathmorphing,%
arrows.meta,backgrounds}
% Define TikZ styles etc.
tikzset{
every plot/.style={
prefix=plots/,
samples=200,
},
every node/.style={
font=footnotesize,
},
line width=1pt,
shorten/.style={
shorten >=#1,
shorten <=#1,
},
>=Triangle,
axis/.style={-Stealth},
tick/.style={
axis,
shorten <=-0.5pgflinewidth,
shorten >=-0.5pgflinewidth,
},
}

% Load and configure pgfplots
usepackage{pgfplots}
usepgfplotslibrary{polar}
pgfplotsset{
compat=1.11,
wave axis/.style={
view={0}{90},
hide axis,
colormap={custom}{color=(white) color=(wave)},
trig format plots=rad,
trig format=rad,
x=1cm,
y=1cm,
z=0cm,
anchor=origin,
},
wave plot/.style={
samples=200,
samples y=2,
surf,shader=interp,
},
polar wave plot/.style={
data cs=polar,
domain=0:2*pi,
samples y=100,
surf,shader=interp,
},
}

% Macro for subfigure captions
newcommand{subfig}[1]{textbf{textsf{#1)}}~}

begin{document}

begin{tikzpicture}
% define variables
defH{0.275}
defS{1.8}
defB{8}
defT{4.5}
defl{2.6}
defs{0.3}
pgfmathsetmacrow{atan((S+H/2)/T)}
pgfmathsetmacroR{sqrt(T^2+(S+H/2)^2)}
%% wave parameters
pgfmathsetmacrowL{6.5*H}
pgfmathsetmacrowA{H/2}
pgfmathsetmacroD{10*wL}
% plane wave
begin{axis}[wave axis]
addplot3[wave plot,domain=-B:0.05,domain y=-wA:wA] {abs(sin(pi/wL * x))};
% addplot[domain=-D:0,samples=200] function {abs(cos(pi/wL * x))};
end{axis}
% radial wave
begin{scope}
% clip (0,-H/2-S) -- (-w:R) arc [start angle=-w, end angle=w, radius=R]
% -- (0,H/2+S) -- cycle;
clip (0,-H/2-S) rectangle (T,H/2+S);
begin{axis}[wave axis]
addplot3[polar wave plot,domain y=0:2*T] function {abs(sin(pi/wL * y))*exp(-0.2*y)};
% addplot[domain=0:2*T,samples=200] function {abs(cos(pi/wL * x))*exp(-0.2*x)};
end{axis}
end{scope}
% tube
draw [ultra thick] (-B,H/2) -| (0,H/2+S);
draw [ultra thick] (-B,-H/2) -| (0,-H/2-S);
% axis
draw [axis] (-B,0) -- ($(T,0)-(0.25,0)$) node [below left] {$x$};
draw [tick,|-] (0,0) node [below right=2pt and 2.5pt,inner sep=0pt] {$0$} -- (1,0);
draw [axis] (0,0) -- (25:2.5) node [below] {$vec{r}$};
% captions
draw (-2.5*wL,0.25*H) -- ++(65:.6) node [above] {$psi_text{i}$};
draw (60:wL/1.9) -- ++(180:1.1) node [left] {$psi_text{a}$};
node at (0,-H/2) [below left, align=right] {cross sectional\area $A$};
end{tikzpicture}
end{document}


Upon inspection of the log file I found this near runsystem



Package pgfplots info on input line 98: Overriding colorspace to cmyk due to xc
olor configuration.
Package pgfplots info on input line 107: Overriding colorspace to cmyk due to x
color configuration.
openout3 = `diagram.pgf-plot.gnuplot'.

runsystem(gnuplot diagram.pgf-plot.gnuplot)...executed.

PGFPlots: reading {diagram.pgf-plot.table}
LaTeX Font Info: Try loading font information for OT1+mdugm on input line 11
6.






tikz-pgf pgfplots gnuplot






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 7 at 12:16







sab hoque

















asked Jan 7 at 11:49









sab hoquesab hoque

1,487318




1,487318













  • I get no error. Did you run LaTeX with -shell-escape?

    – egreg
    Jan 7 at 11:56











  • I'm curious, what part of this code needs gnuplot (I'm guessing it is hidden somewhere)

    – daleif
    Jan 7 at 12:00











  • yes the wave plot part

    – sab hoque
    Jan 7 at 12:05






  • 1





    If your on windows try my mwe here tex.stackexchange.com/questions/456297/… I will show some basic checks in a rudimentary Results.txt file

    – KJO
    Jan 7 at 12:46






  • 1





    Ok I updated gnuplot to 5.3 (todays version) and get several warning etc but not from gnuplot the issue in my case seems to be font related as I have had problems with garamond in the past (I probably need to clear out a local file) so if I change Garamond to the one I have available [ebgaramond] it compiles for me (with an acceptable pair of font warnings)

    – KJO
    Jan 7 at 14:18



















  • I get no error. Did you run LaTeX with -shell-escape?

    – egreg
    Jan 7 at 11:56











  • I'm curious, what part of this code needs gnuplot (I'm guessing it is hidden somewhere)

    – daleif
    Jan 7 at 12:00











  • yes the wave plot part

    – sab hoque
    Jan 7 at 12:05






  • 1





    If your on windows try my mwe here tex.stackexchange.com/questions/456297/… I will show some basic checks in a rudimentary Results.txt file

    – KJO
    Jan 7 at 12:46






  • 1





    Ok I updated gnuplot to 5.3 (todays version) and get several warning etc but not from gnuplot the issue in my case seems to be font related as I have had problems with garamond in the past (I probably need to clear out a local file) so if I change Garamond to the one I have available [ebgaramond] it compiles for me (with an acceptable pair of font warnings)

    – KJO
    Jan 7 at 14:18

















I get no error. Did you run LaTeX with -shell-escape?

– egreg
Jan 7 at 11:56





I get no error. Did you run LaTeX with -shell-escape?

– egreg
Jan 7 at 11:56













I'm curious, what part of this code needs gnuplot (I'm guessing it is hidden somewhere)

– daleif
Jan 7 at 12:00





I'm curious, what part of this code needs gnuplot (I'm guessing it is hidden somewhere)

– daleif
Jan 7 at 12:00













yes the wave plot part

– sab hoque
Jan 7 at 12:05





yes the wave plot part

– sab hoque
Jan 7 at 12:05




1




1





If your on windows try my mwe here tex.stackexchange.com/questions/456297/… I will show some basic checks in a rudimentary Results.txt file

– KJO
Jan 7 at 12:46





If your on windows try my mwe here tex.stackexchange.com/questions/456297/… I will show some basic checks in a rudimentary Results.txt file

– KJO
Jan 7 at 12:46




1




1





Ok I updated gnuplot to 5.3 (todays version) and get several warning etc but not from gnuplot the issue in my case seems to be font related as I have had problems with garamond in the past (I probably need to clear out a local file) so if I change Garamond to the one I have available [ebgaramond] it compiles for me (with an acceptable pair of font warnings)

– KJO
Jan 7 at 14:18





Ok I updated gnuplot to 5.3 (todays version) and get several warning etc but not from gnuplot the issue in my case seems to be font related as I have had problems with garamond in the past (I probably need to clear out a local file) so if I change Garamond to the one I have available [ebgaramond] it compiles for me (with an acceptable pair of font warnings)

– KJO
Jan 7 at 14:18










1 Answer
1






active

oldest

votes


















2














This appears to be a font issue as {mathdesign} requires at least three specific fonts to be available, however only one at a time so if you cut and paste these uncomment your one of choice



%usepackage[adobe-utopia]{mathdesign}  
%usepackage[bitstream-charter]{mathdesign}
%usepackage[urw-garamond]{mathdesign}


Used with the fontenc package usepackage[T1]{fontenc}



The font names may be abbreviated i.e



%usepackage[utopia]{mathdesign}  
%usepackage[charter]{mathdesign}
%usepackage[garamond]{mathdesign}


ensure your font mapping is updated via TeX Live manager or MiKTeX-console. Having personally had problems with Garamond in the past it works in my case if I change it to



usepackage[T1]{fontenc}    
usepackage[charter]{mathdesign}


If that does not work consider reloading the mathdesign package (or simply commenting it out)






share|improve this answer

























    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
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f468941%2fgnuplot-error-without-any-log%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









    2














    This appears to be a font issue as {mathdesign} requires at least three specific fonts to be available, however only one at a time so if you cut and paste these uncomment your one of choice



    %usepackage[adobe-utopia]{mathdesign}  
    %usepackage[bitstream-charter]{mathdesign}
    %usepackage[urw-garamond]{mathdesign}


    Used with the fontenc package usepackage[T1]{fontenc}



    The font names may be abbreviated i.e



    %usepackage[utopia]{mathdesign}  
    %usepackage[charter]{mathdesign}
    %usepackage[garamond]{mathdesign}


    ensure your font mapping is updated via TeX Live manager or MiKTeX-console. Having personally had problems with Garamond in the past it works in my case if I change it to



    usepackage[T1]{fontenc}    
    usepackage[charter]{mathdesign}


    If that does not work consider reloading the mathdesign package (or simply commenting it out)






    share|improve this answer






























      2














      This appears to be a font issue as {mathdesign} requires at least three specific fonts to be available, however only one at a time so if you cut and paste these uncomment your one of choice



      %usepackage[adobe-utopia]{mathdesign}  
      %usepackage[bitstream-charter]{mathdesign}
      %usepackage[urw-garamond]{mathdesign}


      Used with the fontenc package usepackage[T1]{fontenc}



      The font names may be abbreviated i.e



      %usepackage[utopia]{mathdesign}  
      %usepackage[charter]{mathdesign}
      %usepackage[garamond]{mathdesign}


      ensure your font mapping is updated via TeX Live manager or MiKTeX-console. Having personally had problems with Garamond in the past it works in my case if I change it to



      usepackage[T1]{fontenc}    
      usepackage[charter]{mathdesign}


      If that does not work consider reloading the mathdesign package (or simply commenting it out)






      share|improve this answer




























        2












        2








        2







        This appears to be a font issue as {mathdesign} requires at least three specific fonts to be available, however only one at a time so if you cut and paste these uncomment your one of choice



        %usepackage[adobe-utopia]{mathdesign}  
        %usepackage[bitstream-charter]{mathdesign}
        %usepackage[urw-garamond]{mathdesign}


        Used with the fontenc package usepackage[T1]{fontenc}



        The font names may be abbreviated i.e



        %usepackage[utopia]{mathdesign}  
        %usepackage[charter]{mathdesign}
        %usepackage[garamond]{mathdesign}


        ensure your font mapping is updated via TeX Live manager or MiKTeX-console. Having personally had problems with Garamond in the past it works in my case if I change it to



        usepackage[T1]{fontenc}    
        usepackage[charter]{mathdesign}


        If that does not work consider reloading the mathdesign package (or simply commenting it out)






        share|improve this answer















        This appears to be a font issue as {mathdesign} requires at least three specific fonts to be available, however only one at a time so if you cut and paste these uncomment your one of choice



        %usepackage[adobe-utopia]{mathdesign}  
        %usepackage[bitstream-charter]{mathdesign}
        %usepackage[urw-garamond]{mathdesign}


        Used with the fontenc package usepackage[T1]{fontenc}



        The font names may be abbreviated i.e



        %usepackage[utopia]{mathdesign}  
        %usepackage[charter]{mathdesign}
        %usepackage[garamond]{mathdesign}


        ensure your font mapping is updated via TeX Live manager or MiKTeX-console. Having personally had problems with Garamond in the past it works in my case if I change it to



        usepackage[T1]{fontenc}    
        usepackage[charter]{mathdesign}


        If that does not work consider reloading the mathdesign package (or simply commenting it out)







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jan 10 at 6:38









        Martin Scharrer

        199k45634818




        199k45634818










        answered Jan 7 at 15:08









        KJOKJO

        1,3391114




        1,3391114






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f468941%2fgnuplot-error-without-any-log%23new-answer', 'question_page');
            }
            );

            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







            Popular posts from this blog

            How to send String Array data to Server using php in android

            Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

            Is anime1.com a legal site for watching anime?