sisl / AA120Q

AA120Q Course Materials
28 stars 8 forks source link

Cell 3 in 04 Lecture throws error #16

Closed tawheeler closed 8 years ago

tawheeler commented 8 years ago
d = D[:SepalLength]
Plots.Histogram(d)
! LaTeX Error: File `luatex85.sty' not found.

Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)

Enter file name: 
! Emergency stop.
<read *> 

l.2 \documentclass
                [tikz]{standalone}
End of file on the terminal!

Here is how much of LuaTeX's memory you used:
 11 strings out of 494693
 100000,89155 words of node,token memory allocated 188 words of node memory still in use:
   31 glue_spec, 1 dir nodes
   avail lists: 2:12,3:1
 3851 multiletter control sequences out of 65536+600000
 14 fonts using 562767 bytes
 10i,0n,7p,45b,8s stack positions out of 5000i,500n,10000p,200000b,100000s
!  ==> Fatal error occurred, no output PDF file produced!

Error saving as SVG
LaTeX error
mykelk commented 8 years ago

If you do a Pkg.update() it should work.

mykelk commented 8 years ago

FYI---to support texlive 2016 and maintain backwards compatibility, we need this.

tawheeler commented 8 years ago

Thanks! So I should call standaloneWorkaround(true) in AA120Q.jl?

mykelk commented 8 years ago

After the update, everything should just work. :-) No need to call that function. It will get called automatically if necessary if you are using a version of texlive 2016 the first time an exception gets thrown.

tawheeler commented 8 years ago

It works!