search for: renewcommand

Displaying 15 results from an estimated 15 matches for "renewcommand".

Did you mean: newcommand
2004 Jun 25
3
sweave: graphics not at the expected location in the pdf
Hi I use sweave for excellent pdf output (thank you- Friedrich Leisch). I have just one problem. Quite often it happens, that the graphics are not at the place where I expect them, but (often on a separate page) later on in the pdf. How can I fix this, means how can I define, that I want a graphic exactly here and now in the document? Many thanks and best regards Christoph -- Christoph
2004 Sep 27
0
Sweave with other fonts looks weird in pdf file
I've become an avid user of Sweave and would like to able to use other fonts but when I added the following lines to a sweave file, \renewcommand{\familydefault}{cmss} \renewcommand{\rmdefault}{cmss} \renewcommand{\sfdefault}{cmr} \normalfont\normalsize the pdf file generated with pdflatex the text for the sections that aren't generated by sweave (all the "non-chunks") have that "jaggedy" look when displayed in acr...
2002 Aug 23
5
quick xtable questions
Hi, I'm creating a lot of tables in a file for inclusion in a Latex document. When I try to compile that document there is an error "too many unprocessed floats." Is there a way to correct this? Also, in a Latex table I want R to put in a $\beta$ in the caption, but it puts a weird system character instead of the \b Brian
2002 Mar 20
3
tex/latex output?
Is it possible to write the output/results (redirect) to a latex file? Jeff. Jeff D. Hamann Hamann, Donald & Associates, Inc. PO Box 1421 Corvallis, Oregon USA 97339-1421 Bus. 541-753-7333 Cell. 541-740-5988 jeff_hamann at hamanndonald.com www.hamanndonald.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read
2008 Nov 07
0
Sweave: How to load available colors from pkg 'color'
...ions and page headings of a document. I am using the code below in my preamble to accomplish some of it: \ifx\pdfoutput\@undefined\usepackage[usenames,dvips]{color} \else\usepackage[usenames,dvipsnames]{color} % and fix pdf colour problems \IfFileExists{pdfcolmk.sty}{\usepackage{pdfcolmk}}{} \fi %\renewcommand{\MakeUppercase}[1]{\color{OliveGreen}\textsf{#1}} %\renewcommand{\abstractname}{\color{blue}Abstract} Also,'\usepackage[usenames]{color}' is suppossed to load all the available colors in the package 'color' but for some reason it doesn't load them when running it trhough Swea...
2008 Nov 08
0
Sweave:How to load available colors from pkg 'color'--(Resolved)
...ions and page headings of a document. I am using the code below in my preamble to accomplish some of it: \ifx\pdfoutput\@undefined\usepackage[usenames,dvips]{color} \else\usepackage[usenames,dvipsnames]{color} % and fix pdf colour problems \IfFileExists{pdfcolmk.sty}{\usepackage{pdfcolmk}}{} \fi %\renewcommand{\MakeUppercase}[1]{\color{OliveGreen}\textsf{#1}} %\renewcommand{\abstractname}{\color{blue}Abstract} Also,'\usepackage[usenames]{color}' is suppossed to load all the available colors in the package 'color' but for some reason it doesn't load them when running it trhough Sweav...
2010 May 11
1
Table and Sweave
Hi, in Latex I get the table using: \begin{table}[H] \centering \renewcommand{\arraystretch}{1.3} \setlength{\tabcolsep}{18pt} \begin{tabular}{cc} \hline Idade & Frequ?ncia \\ \hline $18 \vdash 26$ & 11 \\ $26 \vdash 34$ & 8 \\ $34 \vdash 42$ & 26 \\ $42 \vdash 50$ & 20 \\ $50 \vdash 58$ & 23 \\ $58 \vdash 66$ &amp...
2008 Jul 27
2
Colors in Sweave
Hi list, I was using Sweave and was wondering if anyone has had any luck changing the font colors of the code chunks. For instance, in my .Rnw preample I tried including: === \usepackage[usenames]{colors} \definecolor{darkred}{rgb}{0.545,0,0} \definecolor{midnightblue}{rgb}{0.098,0.098,0.439} \DefineVerbatimEnvironment{Sinput}{Verbatim}{fontshape=sl,formatcom={\color{midnightblue}}}
2000 Jun 14
1
pdf documentation from a package and date format
Dear All, When generating pdf documentation for a package (using R CMD Rd2dvi --pdf), is there a way to get the date to use the typical international standard of day month year instead of the US one of month day, year? Thanks, Ramon -- Ramón Díaz-Uriarte Dept. Zoology and Statistics University of Wisconsin-Madison Madison, WI 53706-1381 email: rdiazuri at students.wisc.edu (NOTE: starting
2010 Aug 10
0
tikzDevice 0.5.0 released to CRAN
...TikZ drawing commands. #### Bug Fixes - Removed bad colon in the DESCRIPTION file. - Proper fontsize calculations now include ps from par() and fontsize from gpar(). This fixes issues with lattice-based graphics such as ggplot2. - Metrics are now calculated properly when commands like \renewcommand\rmdefault are used to adjust the active font. - Sanitization of % signs in labels. - The package no longer overwrites user customizations set in places like .Rprofile with default values when loaded. - Attempting to use new graphics functions such as rasterImage() now produces error messages...
2010 Aug 10
0
tikzDevice 0.5.0 released to CRAN
...TikZ drawing commands. #### Bug Fixes - Removed bad colon in the DESCRIPTION file. - Proper fontsize calculations now include ps from par() and fontsize from gpar(). This fixes issues with lattice-based graphics such as ggplot2. - Metrics are now calculated properly when commands like \renewcommand\rmdefault are used to adjust the active font. - Sanitization of % signs in labels. - The package no longer overwrites user customizations set in places like .Rprofile with default values when loaded. - Attempting to use new graphics functions such as rasterImage() now produces error messages...
2002 Nov 13
1
Package documentation and rd.sty
Hi all, I've got a basic question regarding package documentation and rd.sty. I wrote my first own package, and now I would like to place the documentation into the appendix of another LaTex document. Seemingly I cannot simply \usepackage{Rd}, as this will modify the page-settings of my document. Is there a minimum style file which will just define the environments and commands needed for
2009 Jan 28
2
OT: Adding verbatim R code text into LaTeX documents: texttt; verb or url?
Hi all I use Sweave extensively to mix R and LaTeX, and often have R code appearing in my LaTeX document. Just a quick question then: What is the best way to add example of R commands into LaTeX in-line? (That is, not using Sweave.) For example, suppose I wish to place in my document this instruction: ...is done in R using the command \verb|lm( y ~ var.one + var.two )| as follows: I
2010 Oct 15
0
R 2.12.0 is released
...cts of the display of text help are now customizable using the new Rd2txt_options() function. options("help_text_width") is no longer used. ? Added \href tag to the Rd format, to allow hyperlinks to URLs without displaying the full URL. ? Added \newcommand and \renewcommand tags to the Rd format, to allow user-defined macros. ? New toRd() generic in the tools package to convert objects to fragments of Rd code, and added "fragment" argument to Rd2txt(), Rd2HTML(), and Rd2latex() to support it. ? Directory R_HOME/share/texmf now fol...
2010 Oct 15
0
R 2.12.0 is released
...cts of the display of text help are now customizable using the new Rd2txt_options() function. options("help_text_width") is no longer used. ? Added \href tag to the Rd format, to allow hyperlinks to URLs without displaying the full URL. ? Added \newcommand and \renewcommand tags to the Rd format, to allow user-defined macros. ? New toRd() generic in the tools package to convert objects to fragments of Rd code, and added "fragment" argument to Rd2txt(), Rd2HTML(), and Rd2latex() to support it. ? Directory R_HOME/share/texmf now fol...