I'm using Gnuplot 4.4, compiled with Lua support. It supposedly has the tikz terminal.
I've successfully compiled my gnuplots to tex using "set terminal tikz". However, when adding this source to my latex document I keep getting the following error:
! Package pgfkeys Error: I do not know the key '/tikz/gnuplot' and I am going t
o ignore it. Perhaps you misspelled it.
I've included the tikz package in the original tex document. Any ideas?
EDIT: Solved. See answer bellow.
I didn't give in until I found a solution:
\usepackage{gnuplot-lua-tikz}
If you don't have the gnuplot-lua-tikz.sty just get it from the latest gnuplot development snapshot
http://sourceforge.net/projects/gnuplot/
Unfortunately I am not allowed to comment here, hence a new answer. The .sty file is not sufficient, you need both of the following files from gnuplot (unfortunately the package is no gnuplot-lua-tikz package at cran):
gnuplot-lua-tikz.sty
gnuplot-lua-tikz-common.tex
For later happless Fedora users: The package containing this here is gnuplot-latex, dnf doesn't recognize it as tex(gnuplot-lua-tikz.sty).
Related
I am using a latex template I found on Overleaf (link). Using directly Overleaf, I do not have any problem when compiling. Same when using Sublime Text. However, when using Texpad, I got the following error:
LaTeX Warning: File `chapter_head_1.pdf' not found on input line 100.
./main.tex:100: Package pdftex.def Error: File `chapter_head_1.pdf' not found:
using draft setting.
In the beginning, I thought the problem was related to Sandboxing, but I granted already accessibility to the whole folder, so it does not make sense to me that Texpad cannot find the file.
As additional information: I am using the latest version of Texpad v1.8.15 for macOS Catalina v.10.15.6.
I really like some features offered on Texpad, so I would appreciate it very much if you could let me know how to solve this problem. Thanks!
Update: <Sept. 30th, 2020> Find the .log in this link.
I would like to open this cv template on my tex. However, after downloading it, I get this error:
! LaTeX Error: File `parskip.sty' not found.
I believe I downloaded the source files correctly and moved them into Latex packages, including the cls. I also tried updating the packages on my Latex.
Can anyone please assist? Thank you.
You need to download the missing file which is the parskip-2001-04-09.sty from source and save it as parskip.sty to where your other files are.
Tested on Ubuntu.
I am getting lyx set up on my xubonto laptop. I have used some online guides to set the thing and slowly worked my way around several issues, so I cannot recall exactly what I have set up. I am using non-Tex "Culmus" fonts (had to rename them for luatex to recognize them), and Document Class article standard.
Lyx have no problem exporting a luaTex file (or a xetex file) but am complaining about a luabidi.sty file-not-found (or a bidi.sty file-not-found).
So I have downloaded luabidi but I am not sure where to place it..
it contains 2 folders tex and doc, so I have placed their content in
/usr/share/texlive/texmf-dist/tex/luatex/luabidi
/usr/share/texlive/texmf-dist/doc/luatex/luabidi
But it did not resolve the issue... Some specific help would be appreciated, as well as may be a better way to manage luatex packages and files?
Installing texlive-lang-arabic fixed it.
I get the following error when I try to build latex from spacemacs text editor :
TeX-command: Error : Auctex cannot find a working TeX distribution.
Make sure you have one and that Tex binaries are in PATH environment
variable. If fyou are using OSX El Capitain or later remember to add
/Library/TeX/textbin/ to your path
I have installed MacText torrent linked on the official site : https://tug.org/mactex/mactex-download.html
The /Library/TeX/textbin/ path doesn't exist for me even if I install MacTex.
I have tried to add Library/TeX/textbin to my path but it didn't work.
The TeXShop text editor is building LaTeX correctly somehow.
How can I fix my problem and where is my Tex distribution ? Do I need to change my path ?
So, after debugging it with him. We realized that he forgot the leading / in his path. So Spacemacs was searching in ~/Library instead on /Libraby
I'm trying to install OpenCV on Windows. Following are how I installed it:
Download OpenCV 2.4.2.exe from sourceforge.
unarchived it.
open Eclipse CDT.
Add C:/opencv/include/opencv to "Includes"
Add opencv_highgui, opencv_core, opencv_ml... to "Libraries"
Create a small project and compiled it.
The compiler complained about "opencv2/core/core_c.h:No such file or directory"...
I remember that when I install OpenCV on Ubuntu, I did compiled the project (it took quite a bit of time). Do I have to do the same thing on Windows? Or is any other thing causing this error?
Thanks.
You should add correct directories to includes.
Since you added C:/opencv/include/opencv, there is no way for compiler to find C:/opencv/include/opencv2/core/core.h.
I believe you should enter C:/opencv/include/ to includes directories as well.