Displaying 9 results from an estimated 9 matches for "csname".
Did you mean:
cname
2004 Jan 29
2
Finding Sweave.sty and other problems
...(size option)
)
\c at part=\count79
\c at section=\count80
\c at subsection=\count81
\c at subsubsection=\count82
\c at paragraph=\count83
\c at subparagraph=\count84
\c at figure=\count85
\c at table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
! Missing \endcsname inserted.
<to be read again>
\protect
l.4 \begin
{document}
? s
OK, entering \scrollmode...
! LaTeX Error: Missing \begin{document}.
See the LaTeX manual or LaTeX Companion for explanation.
Type H <return> for immediate help.
...
l.4 \begin...
2006 Aug 04
1
Questions about sweave...
...(size option)
)
\c at part=\count79
\c at section=\count80
\c at subsection=\count81
\c at subsubsection=\count82
\c at paragraph=\count83
\c at subparagraph=\count84
\c at figure=\count85
\c at table=\count86
\abovecaptionskip=\skip41
\belowcaptionskip=\skip42
\bibindent=\dimen102
)
! Missing \endcsname inserted.
<to be read again>
\protect
l.5 \begin
{document}
The control sequence marked <to be read again> should
not appear between \csname and \endcsname.
! LaTeX Error: Missing \begin{document}.
See the LaTeX manual or LaTeX Companion for explanation...
2010 Feb 11
1
Sweve/cacheSweave
Hi there
I have a problem with using Sweave in combination with the option driver = cacheSweave.
Whichever code I try to run - when it comes to converting the tex file into pdf it comes up with the same errors (\csname \endcsname errors). Does anybody have an idea what it going wrong?
> Sweave("pgfSweave-example.Rnw",driver = cacheSweaveDriver)
Writing to file pgfSweave-example.tex
Processing code chunks ...
1 : term verbatim (label=setup)
2 : echo term verbatim (label=data)
3 : term verbatim e...
2012 Apr 04
3
Rgui maintains open file handles after Sweave error
...ae}
}{}%
\DefineVerbatimEnvironment{Sinput}{Verbatim}{fontshape=sl}
\DefineVerbatimEnvironment{Soutput}{Verbatim}{}
\DefineVerbatimEnvironment{Scode}{Verbatim}{fontshape=sl}
\newenvironment{Schunk}{}{}
\newcommand{\Sconcordance}[1]{%
\ifx\pdfoutput\undefined%
\csname newcount\endcsname\pdfoutput\fi%
\ifcase\pdfoutput\special{#1}%
\else\immediate\pdfobj{#1}\fi}
2008 Mar 24
2
Newbie help with Sweave
...with R:
> Sweave("sweaveexample.Rnw")
Writing to file sweaveexample.tex
Processing code chunks ...
You can now run LaTeX on 'sweaveexample.tex'
>
However, when I try to open the file sweaveexample.tex and process it
with Latex in Emacs, I get this error:
ERROR: Missing \endcsname inserted.
--- TeX said ---
<to be read again>
\protect
l.7 \begin
{document}
--- HELP ---
>From the .log file...
The control sequence marked <to be read again> should
not appear between \csname and \endcsname.
I've tried a variety of examples, bu...
2003 May 17
1
problem building dvi and pdf documentation on Darwin 10.2.6
...i (./texinfo.tex
Loading texinfo [version 2002-03-26.08]: Basics, pdf, fonts, page headings,
tables, conditionals, indexing, sectioning, toc, environments, defuns,
macros,
cross references, (/sw/share/texmf/tex/generic/misc/epsf.tex) localization,
and turning on texinfo input format.)
! Missing @endcsname inserted.
<to be read again>
@let
@parsearg #1->@let
@next = #1 at begingroup @obeylines @futurelet @temp
@parsea...
<argument> UseExternalXrefs at settitle
R
@setzzz ...tzzz ->@expandafter @gdef @csnam...
2009 Jun 26
0
Modifying Sweave.sty to allow escapes with fancyvrb package in LaTeX
...omments in R code chunks I have modified Sweave.sty as below. I have
followed fancyvrb's manual with regard to the use of the commandchars
argument. But when compiling with LaTeX (using attached test file) I
get a LaTeX error
(/usr/share/texmf-texlive/tex/latex/ae/t1aett.fd)
! Missing \endcsname inserted.
<to be read again>
\global
l.25 } else y <- 4
The line in question is
\DefineVerbatimEnvironment{Sinput}{Verbatim}{formatcom=\lstset{fancyvrb=true},commandchars=\\\{\}}
Can anyone give me a pointer to how to properly change Sweave.sty to
allow it to use f...
2008 Aug 05
0
patchDVI update: SyncTex support
...ar the bottom of
the page).
Including the concordance info into a .pdf needs a patch to Sweave, and
to Sweave.sty:
Sweave should wrap the concordance in \Sconcordance{}, instead of
\special{}.
Sweave.sty should have this macro added:
\newcommand{\Sconcordance}[1]{%
\ifx\pdfoutput\undefined%
\csname newcount\endcsname\pdfoutput\fi%
\ifcase\pdfoutput\special{#1}%
\else\immediate\pdfobj{#1}\fi}
Improvements to this macro would also be appreciated.
Duncan Murdoch
2012 Mar 25
2
avoiding for loops
I have data that looks like this:
> df1
group id
1 red A
2 red B
3 red C
4 blue D
5 blue E
6 blue F
I want a list of the groups containing vectors with the ids. I am
avoiding subset(), as it is
only recommended for interactive use. Here's what I have so far:
df1 <- data.frame(group=c("red", "red", "red", "blue",