search for: texworks

Displaying 8 results from an estimated 8 matches for "texworks".

2010 Feb 24
4
R Graphics into Latex‏
Hi, I'm new in Latex and I'm trying to include an R chart into a Latex document. This is what I'm doing: 1) In R: save the chart as a a Postcript in a folder C:/xxx/Density.eps 2) In Latex (using TexWorks on windows xp) : In the preambule: \documentclass[11pt]{article} \usepackage{graphicx} \begin{document} blah..blah…blah \begin{figure} \centering \includegraphics{C:/xxx/Density.eps} \label{fig:Density} \end{figure} --This is the Error Message I'm getting: LaTeX Warning: File `R:/MarsTH/S...
2013 Jul 18
1
Looking for knitr example for beginner (NO RStudio)
Hi everyone, I am using package knitr, FIRST TIME. I don't have access to RStudio. Read through Yihui's page, didn't find it helpful. Stuck on terms Rnw, GFM (GitHub Flavored Markdown). Never used Sweave, so the reference is not helping. Is there a simple step-by-step example WITHOUT RStudio? My question: What is the procedure? The documentation explains the functions, but does
2012 May 03
1
pdf, pairs and subfloats
Hi there! I have found a trange problem with getting pairs()-plots to show properly in latex \subfloat environments. If i generate images of these plots with pdf() and include them in subfloats, they will either show up in grayscale, or sometimes the datapoints of the pairplots are missing. Mind you, the PDFs themselves are properly colored and look perfectly fine, both as pdf-image in acrobat
2013 Jan 29
0
Setting -sys.setenv()- permanently in Linux using RStudio
...essage: "No TeX installation detected. Please install TeX before compiling." meaning that I have to run the code all over again. This is clearly undesirable! I successfully installed TeXLive 2012 on my Linux system yesterday and I have tested that all my TeX files run successfully using TeXworks, which they do (edits included). In searching the R-help archives, I could only find one post on this issue http://r.789695.n4.nabble.com/Add-permanently-environment-variable-td3670920.html which only deals with the issue in Windows. Reading the help from -??sys.setenv- provides no answers. I al...
2020 Apr 28
1
R-4.0.0 and Texlive 2020 installed on EmmabuntusDE4 (Debian Bullseye)
...see above). The full Texlive 2020 is 3.3 Go when compressed during the transfer and 6.2 Go after decompression on the disk. The download from the Debian repository is also much faster than from the CTAN repository: 15 minutes against 40' with my ADSL line. I completed the installation with Texworks, TexStudio and Texmaker, then commented the sid line in the sources.list file to revert to the standard Bullseye repositories. I then follow Johannes Ranke's instructions to install the R binaries: https://cloud.r-project.org/bin/linux/debian/ Johannes, you should add in the instructions...
2012 Feb 14
3
configure lyx2.0.2 with sweave in windows 32 bit.
I am using R 2.14.1. I am trying to configure Lyx with Sweave. I have read articles but I found none to be complete and I cannot import sweave document in lyx . Can anyone please help me with a stepwise procedure how to configure Lyx with Sweave so that I can run my R-code chunks from LYX ,the output being a pdf.? Thanks in advance. -Atanu -- View this message in context:
2013 Sep 02
1
Sweave: printing an underscore in the output from an R command
I am working with Sweave and would like to print out into my latex document the result of the R command version$platform So what I first tried in my .Rnw document was \Sexpr{print(version$platform)}. However, the output from this command is the string "x86_64-apple-darwin10.8.0" (without the quotes). This contains an underscore, which is a special character in tex and so I get an error
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",