search for: caption

Displaying 20 results from an estimated 473 matches for "caption".

2012 Aug 21
2
Sweave: R chunk inside caption?
Hi Folks, I'm surprised, but I didn't find this question addressed anywhere. I'd like to generate a LaTeX caption with R code. I've tried the code below, but I get the following TeX error: ! Argument of \@caption has an extra }. <inserted text> \par l.21 } Any thoughts? Perhaps I'll have to write the "\caption{}" text with R? thanks! Sweave document: \documen...
2007 Dec 20
5
[Bug 13750] New: Repetitively Taking Screenshots Causes the X Server to Hang
http://bugs.freedesktop.org/show_bug.cgi?id=13750 Summary: Repetitively Taking Screenshots Causes the X Server to Hang Product: xorg Version: 7.2 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nVidia (open) AssignedTo: aplattner
2011 Nov 18
2
xtable and sweave: caption placement problem
Dear All I am running Sweave with xtable and want to put the caption placement on top. But this does not work. Any idea what is going wrong? Here is an example that runs properly with the exception of the caption placement in the pdf-file. \documentclass[11pt,a4paper]{article} \usepackage{Sweave} \begin{document} <<>>= x = runif(100, 1, 10) y...
2012 Jun 22
6
Definition list as image caption
recently though about image captions, then i realized that this could be achiebed by Markdown Extra's definition list feature: ![alttext](http://exampl.com/img.jpg) : here goes the *caption* What do you think? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://six.pairlist.net/pipermai...
2005 Jun 29
2
Complex helper with block help
Hi everyone, I am writing a helper function that takes a parameter and block and wraps some HTML around it. e.g. def box_with_caption(caption, &block) data = capture(&block) buffer = render_partial("helpers/box_caption", :caption => caption) buffer << render_partial("helpers/box_data", :data => data) buffer end however, when I attempt the following, it doesn''t work. <%= bo...
2011 Aug 10
1
xtable - caption missing with float=FALSE
Hi, For some reason I'm finding that my table caption is disappearing if I print xtable output with the floating argument set to FALSE. Below is a very simple Sweave file that produces two tables the first has no caption and the second has a caption (if you want to see it http://www.zevross.com/temp/test.pdf). Does anyone know what I can do to fi...
2009 Apr 28
1
plot.lm cex.caption
Hello dear R users, My objective is to change the size of this graphic : plot(lm(a~b), 4) (Cook's distance) I have found the help on the internet saying to change the size of a title on a graphic plot(lm(a ~ b), 4), I should use the graphic parameter cex.caption http://stat.ethz.ch/R-manual/R-patched/library/stats/html/plot.lm.html But in my install of R, it answers cex.caption isn't a graphic parameter : 5: "cex.caption" n'est pas un param?tre graphique in: plot.window(xlim, ylim, log, asp, ...) In my R help, I noticed the cex.captio...
2008 Dec 29
2
Hmisc labels and captions in latex.list()
I am trying to feed a list to latex to use with SWeave, and the list comes from contents(). Since it is a list, a caption and label are generated by latex.list - these are not overridden by setting the parameters (such as caption='myCaption', label='myLabel'). I must clearly be missing something - is there no way to set a caption or label with the latex() function when the object is a list? Tha...
2007 Oct 07
0
Fwd: [whatwg] Video, Closed Captions, and Audio Description Tracks
Interesting discussion happening over at whatwg! S. ---------- Forwarded message ---------- From: Silvia Pfeiffer <silviapfeiffer1@gmail.com> Date: Oct 8, 2007 10:14 AM Subject: Re: [whatwg] Video, Closed Captions, and Audio Description Tracks To: Chris Double <chris.double@double.co.nz> Cc: "whatwg@whatwg.org List" <whatwg@whatwg.org> Hi Chris, this is a very good discussion to have and I would be curious about the opinions of people. CMML has been developed with an aim to provide...
2009 Jun 30
1
odfWeave : problems with odfInsertPlot() and odfFigureCaption()
...atively uninteresting, but required) graphs from within a loop, possibly interspeded with some tables. This is not possible within a normal fig=TRUE chunk. odfInsertPlot() is able to insert a previously saved plot. When used in a fig=TRUE, results=hide chunk, it produces just a blank frame (with a caption if caption=odfFigureCaption() is used). Used in a fig=TRUE, results=xml chunk, it produces an error at file rte-assembly (see end of post). However, when wrapped in a cat(), the same code produces 1) the figure (without caption), then a blank frame with the caption, or just the figure (without cap...
2007 Jan 10
1
2 problems with latex.table (quantreg package) - reproducible
Dear all, When using latex.table from the quantreg package, I don't seem to be able to set table.env=FALSE: when I don't specify caption (as I think I should, when understanding the R help rightly(?)), I get an error message, and when I do so, of course I get one, as well. The funny thing is, that a table is indeed produced in the first case, so I get a nice tabular, but as I'm using the command within a for - loop, the loop sto...
2008 Oct 17
4
Error when posting facebook.feed.publishActionOfUser
posting ''facebook.feed.publishActionOfUser'' with {:title=>"<fb:fbml> <fb:name ifcantsee=\"A Hidden User\" linked=\"true\" uid=\"579947937\" /> wrote a <a href=\"http://apps.facebook.com/dailycaption/captions/1273\">caption</a></fb:fbml>", "image_1_link"=>"http://apps.facebook.com/dailycaption/captions/1273", :body=>"<fb:fbml> \"<a href=\"http://apps.facebook.com/dailycaption/captions/1273\">I will be one with th...
2006 Nov 30
4
R_WinEdt question
if I want to put fig1plot to the left, figYPplot to the right figYAaplot on the bottom. How to modify the following cod to do these? \begin{figure}[H] \centering \begin{minipage}[t]{0.5\textwidth} \centering <<label=fig1plot,fig=TRUE,echo=FALSE>>= <<fig1plot>> @ %\caption{Caption 1} \end{minipage} \begin{minipage}[t]{0.5\textwidth} \centering <<label=figYPplot,fig=TRUE,echo=FALSE>>= <<figYPplot>> @ %\caption{Caption 1} \end{minipage} \begin{minipage}[t]{1.0\textwidth} \centering <<label=figYAaplot,fig=TRUE,echo=FALSE>>= <<fi...
2004 Mar 03
1
R2HTML adding caption to data-frame
Hi, I was wondering if there was an easy way to add a caption to a data frame when it is being sent to a html page using R2HTML. currently the following command will produce a reasonably formatted table in a html file HTML(mydataframe) It would be good if you could send caption with the table something like HTML(lCaption="my table caption",mydat...
2006 Apr 12
1
long captions -- new issue
I have found out that the way to have a break apart a long caption in the way that one desires is to have a short caption for use in the list of tables that is not broken with \\ I can manually adjust the LaTeX output from the Hmisc function latex() to get the tables how I want them. However, I would like to automate the creation of these tables. Inside the lat...
2011 May 29
1
One main caption for an mfrow=c(2,1) plot window
Hello, I'm trying to plot a series of pages in a pdf with one main caption for each page. Each page should then have two plots in one row, preferably with an own caption. I can't plot the main caption in a window, and subsequently plot the two graphics (next to each other) below it. Here is what I've tried. This one almost does the job, but when plotting the...
2018 Feb 18
0
[PATCH 1/3] v2v: tests: check generated OVF
...<Info>Microsoft Windows 7 Phony Edition</Info> + <Description>Windows7</Description> + </Section> + <Section xsi:type='ovf:VirtualHardwareSection_Type'> + <Info>1 CPU, 1024 Memory</Info> + <Item> + <rasd:Caption>1 virtual cpu</rasd:Caption> + <rasd:Description>Number of virtual CPU</rasd:Description> + <rasd:InstanceId>1</rasd:InstanceId> + <rasd:ResourceType>3</rasd:ResourceType> + <rasd:num_of_sockets>1</rasd:num_of_sockets...
2012 Aug 20
3
A LaTeX question -- Hope people won't mind
...people won't mind my posting a LaTeX question here. I know a lot of people who use R are also using LaTeX. I'm in a bit of a rush to complete a document and am having trouble with one aspect of the formatting. I'm creating a list of tables using: \listoftables I also have some table captions that contain the number of patients in an anlysis like: \caption{Results for Random Forest Model Using Scoring Data (N = 700)} The tables look great. Trouble is that LaTeX inserts the "(N = 700)" into the text in the List of Tables at the beginning of the document. I'd prefer that...
2006 Jun 01
7
Active Record Basics - Making it commentable
hi everyone, I hope someone can help me out with some active record basics? I''ve been banging my head for the past 4 hours and I can''t seem to get it to work. I am trying to add comments to a caption (just like how one adds a comment to a post in a blog). I seem to be able to read posts just fine from the DB, however, I can''t use the "recordComment" method in captions_controller.rb. Any ideas? I suspect that it has something to do with my recordComment method? My code...
2015 Jul 07
1
[ on call
I'm rather puzzled by this behavior: e export("caption<-", "caption", "label", "label<-", "align<-", "align", "digits<-", "digits", "display<-", "display", "xtable", "print.xtable", "toLatex.xtable") &gt...