search for: keyval

Displaying 20 results from an estimated 35 matches for "keyval".

2014 Jun 04
1
Package keyval Error: noupquote undefined
...s when building Rd to PDF. The error log is like this: =============== Converting Rd files to LaTeX ..... Creating pdf output from LaTeX ... Error in texi2dvi(file = file, pdf = TRUE, clean = clean, quiet = quiet, : Running 'texi2dvi' on 'Rd2.tex' failed. LaTeX errors: ! Package keyval Error: noupquote undefined. See the keyval package documentation for explanation. Type H <return> for immediate help. ... ! Emergency stop. ... l.37 \ProcessOptions* ! ==> Fatal error occurred, no output PDF file produced! Output: This is pdfTeX, Version 3.1415926-1.40.10 (TeX Live...
2011 Jan 23
3
FUNC_ODBC and ARRAY
...even spoke on the IRC channel, but have not found an answer to the following problem. I am attempting to retrieve multiple columns in an ODBC query using ARRAY per the solutions offered by many individuals. My dialplan code is as follows: exten => _.,n,Set(ARRAY(var1,var2,var3)=${ODBC_LOOKUP(${KEYVAL})}) exten => _.,n,Verbose(2,var1 = ${var1}) exten => _.,n,Verbose(2,var2 = ${var2}) exten => _.,n,Verbose(2,var3 = ${var3}) Here's the func_odbc.conf code: [LOOKUP] dsn=mysql-asterisk readsql=SELECT col1, col2, col3 from table1 WHERE keycol = '${ARG1}' and here's the fu...
2005 Sep 16
1
setkeys and Sweave
...ave not been able to find relevant information, googling on setkeys proved confusing, at best. http://cnlart.web.cern.ch/cnlart/218/node85.html states: --- Setting key values globally If you want to specify a global value for a set of keys, then you can use the \setkeys command defined in the keyval package (described below). As an example let us consider the case where you would like your figure to be scaled to the width of the line. Then you could specify the following: \setkeys{Gin}{width=\linewidth} The first argument Gin of the \setkeys command refers to the \includegraphics comma...
2010 Jun 16
5
Latex and r
.../2009/texmf-dist/tex/latex/base/report.cls Document Class: report 2007/10/19 v1.4h Standard LaTeX document class (/usr/local/texlive/2009/texmf-dist/tex/latex/base/size10.clo)) (/usr/local/texlive/2009/texmf-dist/tex/latex/geometry/geometry.sty (/usr/local/texlive/2009/texmf-dist/tex/latex/graphics/keyval.sty) (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifpdf.sty) (/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifvtex.sty) (/usr/local/texlive/2009/texmf-dist/tex/xelatex/xetexconfig/geometry.cfg)) No file file587f83cb.aux. *geometry auto-detecting driver* *geometry detected driv...
2007 Aug 07
0
13 commits - libswfdec-gtk/Makefile.am libswfdec-gtk/swfdec_gtk_keys.c libswfdec-gtk/swfdec_gtk_keys.h libswfdec-gtk/swfdec_gtk_widget.c libswfdec/Makefile.am libswfdec/swfdec_as_types.c libswfdec/swfdec.h libswfdec/swfdec_initialize.as
...des and we + * want the best compatibility possible, we have to do that. + */ + /* FIXME: I have no clue about non-western keyboards, so if you happen to use + * such a keyboard, please help out here if it doesn't match. + */ + + /* try to match latin keys directly */ + if (event->keyval >= GDK_A && event->keyval <= GDK_Z) + return event->keyval - GDK_A + SWFDEC_KEY_A; + if (event->keyval >= GDK_a && event->keyval <= GDK_z) + return event->keyval - GDK_a + SWFDEC_KEY_A; + + /* last resort: try to translate the hardware keycode dire...
2002 Jan 18
1
TeX error generated by R CMD CHECK
...tion, loaded. (/usr/local/teTeX/texmf/tex/latex/base/article.cls Document Class: article 1996/05/26 v1.3r Standard LaTeX document class .... (/usr/local/teTeX/texmf/tex/latex/graphics/dvipsnam.def)) (/usr/local/teTeX/texmf/tex/latex/hyperref/hyperref.sty (/usr/local/teTeX/texmf/tex/latex/graphics/keyval.sty) (/homef/jonm/R-1.4.0/share/texmf/hyperref.cfg ! key-val: linktocpage undefined. \KV at err #1->\errmessage {key-val: #1} l.12 } ? h <--TYPED BY ME This error message was generated by an \errmessage command, so I can't give any explicit...
2013 Jan 29
1
Sweave files generating miktex errors
...ticle 2007/10/19 v1.4h Standard LaTeX document class (c:\miktex2.9.4757\tex\latex\base\size10.clo)) ("C:\Documents and Settings\v\My Documents\Sweave.sty" (c:\miktex2.9.4757\tex\latex\base\ifthen.sty) (c:\miktex2.9.4757\tex\latex\graphics\graphicx.sty (c:\miktex2.9.4757\tex\latex\graphics\keyval.sty) (c:\miktex2.9.4757\tex\latex\graphics\graphics.sty (c:\miktex2.9.4757\tex\latex\graphics\trig.sty) (c:\miktex2.9.4757\tex\latex\00miktex\graphics.cfg) (c:\miktex2.9.4757\tex\latex\pdftex-def\pdftex.def (c:\miktex2.9.4757\tex\generic\oberdiek\infwarerr.sty) (c:\miktex2.9.4757\tex\generic\oberdi...
2009 Jul 23
1
viewer updates for fedora submission
This patchset provides updates to the viewer in preperation for its fedora submission. Included are patches cmd-line parameterizing hostname/user/pass/vm, the addition of a man page, cleanup of the project's structure, and updates to the spec.
2009 Jul 13
0
[PATCH viewer] permit hostname / username / password / vm to be passed in via the cmd line
...et), NULL); /* Tabbed notebook. */ notebook = gtk_notebook_new (); @@ -570,16 +606,22 @@ connect_to_wui_on_enter (GtkWidget *widget, gpointer data) // if key released was not 'enter' key if(((GdkEventKey *)data)->type == GDK_KEY_RELEASE && (((GdkEventKey *)data)->keyval & 0xFF) != 13 ) return; - connect_to_wui(widget, data); + connect_to_wui_via_widget(widget, data); } static void -connect_to_wui (GtkWidget *widget, gpointer data) +connect_to_wui_via_widget (GtkWidget *widget, gpointer data) +{ + hostname = gtk_entry_get_text (GTK_ENTRY (ca_hostname))...
2009 Apr 16
2
there are fontencoding problem in Sweave
.../texmf-texlive/tex/generic/babel/babel.def)) (/usr/share/texmf-texlive/tex/generic/babel/english.ldf)) (/usr/share/texmf/tex/latex/R/Sweave.sty (/usr/share/texmf-texlive/tex/latex/base/ifthen.sty) (/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty (/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty) (/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty (/usr/share/texmf-texlive/tex/latex/graphics/trig.sty) (/etc/texmf/tex/latex/config/graphics.cfg) (/usr/share/texmf-texlive/tex/latex/pdftex-def/pdftex.def))) (/usr/share/texmf-texlive/tex/latex/fancyvrb/fancyvrb.sty Style option: `fanc...
2010 Mar 17
2
Sweave and kile
...msbsy.sty) (/usr/share/texmf/tex/latex/amsmath/amsopn.sty)) (/usr/share/texmf/tex/latex/amsfonts/amsfonts.sty) (/usr/share/texmf/tex/latex/amsfonts/amssymb.sty) (/usr/share/texmf/tex/latex/base/fontenc.sty) (/usr/share/texmf/tex/latex/graphics/graphicx.sty (/usr/share/texmf/tex/latex/graphics/keyval.sty) (/usr/share/texmf/tex/latex/graphics/graphics.sty (/usr/share/texmf/tex/latex/graphics/trig.sty) (/usr/lib/texmf/tex/latex/config/graphics.cfg) (/usr/share/texmf/tex/latex/pdftex-def/pdftex.def))) ! LaTeX Error: File `Sweave.sty' not found. Type X to quit or &lt;RETURN&gt; to...
2004 Feb 19
1
latex problem with Sweave output file under Debian
...run quietly, I to insert something, E to edit your file, 1 or ... or 9 to ignore the next 1 to 9 tokens of input, H for help, X to quit. ? ) (/usr/share/texmf/tex/latex/graphics/graphicx.sty Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texmf/tex/latex/graphics/keyval.sty Package: keyval 1999/03/16 v1.13 key=value parser (DPC) \KV at toks@=\toks14 ) (/usr/share/texmf/tex/latex/graphics/graphics.sty Package: graphics 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texmf/tex/latex/graphics/trig.sty Package: trig 1999/03/16 v1.09 sin cos tan (DPC)...
2005 Jun 16
1
Sweave and sideways
...C:\texmf\tex\latex\base\t1enc.def File: t1enc.def 2004/02/22 v1.99f Standard LaTeX file LaTeX Font Info: Redeclaring font encoding T1 on input line 43. )) (C:\texmf\tex\latex\graphics\graphicx.sty Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) (C:\texmf\tex\latex\graphics\keyval.sty Package: keyval 1999/03/16 v1.13 key=value parser (DPC) \KV at toks@=\toks14 ) (C:\texmf\tex\latex\graphics\graphics.sty Package: graphics 2001/07/07 v1.0n Standard LaTeX Graphics (DPC,SPQR) (C:\texmf\tex\latex\graphics\trig.sty Package: trig 1999/03/16 v1.09 sin cos tan (DPC) ) (C:\texmf\tex\...
2010 Dec 07
1
latex() hangs R console
...7\tex\latex\base\report.cls" Document Class: report 2005/09/16 v1.4f Standard LaTeX document class ("C:\Program Files\MiKTeX 2.7\tex\latex\base\size10.clo")) ("C:\Program Files\MiKTeX 2.7\tex\latex\geometry\geometry.sty" ("C:\Program Files\MiKTeX 2.7\tex\latex\graphics\keyval.sty") ("C:\Program Files\MiKTeX 2.7\tex\latex\geometry\geometry.cfg")) No file file311f289a.aux. [1] (file311f289a.aux) ) Output written on file311f289a.dvi (1 page, 372 bytes). Transcript written on file311f289a.log. At this point, I have to press ESC after a few minutes to regain...
2008 Oct 16
2
Xen 3.3 compile error - (LaTeX)
...tex/latex/base/report.cls Document Class: report 2004/02/16 v1.4f Standard LaTeX document class (/usr/share/texmf-tetex/tex/latex/base/size11.clo)) (/usr/share/texmf-texlive/tex/latex/ntgclass/a4.sty) (/usr/share/texmf-tetex/tex/latex/graphics/graphicx.sty (/usr/share/texmf-tetex/tex/latex/graphics/keyval.sty) (/usr/share/texmf-tetex/tex/latex/graphics/graphics.sty (/usr/share/texmf-tetex/tex/latex/graphics/trig.sty) (/usr/share/texmf-tetex/tex/latex/graphics/graphics.cfg) (/usr/share/texmf-tetex/tex/latex/graphics/dvips.def))) (./html.sty) ! LaTeX Error: File `parskip.sty'' not found. Typ...
2018 May 29
2
CentOS 7 issues with pdf manual / tex conversion
...-dist/tex/generic/oberdiek/ltxcmds.sty))) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-hyperref.sty (/usr/share/texlive/texmf-dist/tex/generic/oberdiek/hobsub-generic.sty)) (/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty) (/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/auxhook.sty) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty) (/usr/share/texlive/texmf-dist/tex/latex/hyperref/pd1enc.def) (/usr/share/texlive/texmf-dist/tex/latex...
2008 Apr 09
1
Windows problem related to using shortPathName for Sweave style file
In the process of updating R to R 2.7 alpha or R 2.7 beta for the BioConductor 2.2 builds on Windows, I have hit a snag because the BioC build system has long path names (e.g. D:\biocbld\bbs-2.2-bioc\R) and these path names are not resolving properly by MiKTeX 2.7 during vignette construction. Take, for example, the attached vignette from Biobase, Bioconductor.Rnw. I have built R from source
2012 Mar 14
1
issue with Rd2pdf and \Sexpr in Rd files
...atex/psnfss/times.sty) NOT loading lmodern (/usr/local/texlive/2011/texmf-dist/tex/latex/inconsolata/inconsolata.sty (/usr/local/texlive/2011/texmf-dist/tex/latex/base/textcomp.sty (/usr/local/texlive/2011/texmf-dist/tex/latex/base/ts1enc.def)) (/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/keyval.sty)) (/usr/local/texlive/2011/texmf-dist/tex/latex/graphics/color.sty (/usr/local/texlive/2011/texmf-dist/tex/latex/latexconfig/color.cfg) (/usr/local/texlive/2011/texmf-dist/tex/latex/pdftex-def/pdftex.def (/usr/local/texlive/2011/texmf-dist/tex/generic/oberdiek/infwarerr.sty) (/usr/local/texlive...
2005 Oct 11
1
Hmisc latex function
I'm using R 2.2.0 on an up-to-date version of Fedora Core 4 with the latest version of Hmisc. When I run an example from the latex function I get the following: > x <- matrix(1:6, nrow=2, dimnames=list(c('a','b'),c('c','d','enLine 2'))) > x c d enLine 2 a 1 3 5 b 2 4 6 > latex(x) # creates x.tex in working directory sh:
2009 Sep 06
3
[Hmisc] Latex to pdf
...swedish, tur kish, ukrainian, nohyphenation, loaded. (/usr/share/texmf/tex/latex/base/report.cls Document Class: report 2004/02/16 v1.4f Standard LaTeX document class (/usr/share/texmf/tex/latex/base/size10.clo)) (/usr/share/texmf/tex/latex/geometry/geometry.sty (/usr/share/texmf/tex/latex/graphics/keyval.sty) (/usr/share/texmf/tex/latex/geometry/geometry.cfg)) No file file643c9869.aux. [1] (./file643c9869.aux) ) Output written on file643c9869.dvi (1 page, 372 bytes). Transcript written on file643c9869.log. Error: Can't open display: ----- Jeroen Ooms * Dept. of Methodology and Statistics * Ut...