<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/4.1.92">
</HEAD>
<BODY>
Hi Thomas,<BR>
<BR>
Thanks for your quick response. <BR>
<BR>
I changed the font size using view-> enlarge/shrink font. However, it is a control over global font size, therefore all the fonts are changed including TOC fonts. My table fonts were smaller earlier and now it is harder to read them. The reason I want to change them is because because of the size and spacing, some information do not fit in one page (empty space).<BR>
<BR>
I see that I was using the term "output" superficially. My apologies and a clarification. I absolutely love the output in the "On-screen graphics" (I can manipulate and create any size graph I want, this is one of the main reason I love using RKward). My problem is the rk_out.html. <BR>
<BR>
<TT><FONT COLOR="#2e3436"><B>The development version has some support for adding custom HTML-headers to the </B></FONT></TT><BR>
<TT><FONT COLOR="#2e3436"><B>output document, e.g. a custom CSS-definition. If it really bugs you, you </B></FONT></TT><BR>
<TT><FONT COLOR="#2e3436"><B>could also modify the (extremly basic) default CSS file we ship. Use</B></FONT></TT><BR>
<TT><FONT COLOR="#2e3436"><B>View->View Document Source on the output window to find out where this is </B></FONT></TT><BR>
<TT><FONT COLOR="#2e3436"><B>located on your system.</B></FONT></TT><BR>
<BR>
First of all, I appreciate what you are doing for free. I will not say that anything about this software bugs me. However, I was wondering if there is a flexibility as it is a open source development project. And you already mentioned that I can create a custom CSS. I have done some searching and found out that I should manipulate the following code. Unfortunately, I have no knowledge about CSS manipulation. A little reading did not help me. It would be great if you can enlighten me about how and where I can incorporate level 1 font 14 point (bold) spacing (6 above 3 below) in the following code (and if I want to change level 2 fonts where should I define it).<BR>
<BR>
pre.code {<BR>
        margin-left: 2em;<BR>
}<BR>
<BR>
pre.code:before {<BR>
        display: block;<BR>
        content: "> ";<BR>
        width: 2em;<BR>
        color: black;<BR>
        float: left;<BR>
        margin-left: -2em;<BR>
}<BR>
<BR>
pre.output_normal {<BR>
        clear: both;    /* make sure never to float around the "> " marker */<BR>
}<BR>
<BR>
pre.output_warning {<BR>
        clear: both;    /* make sure never to float around the "> " marker */<BR>
        background-color: #ffaaaa;<BR>
}<BR>
<BR>
table {<BR>
        border-spacing: 0px;<BR>
}<BR>
<BR>
/* TOC menu */<BR>
.RKTOC {<BR>
        background-color: #eeeeff;<BR>
        position: fixed;<BR>
        top: 0px;<BR>
        right: 0px;<BR>
        height: 100%;<BR>
        width: 25%;<BR>
        padding: 7px;<BR>
        display: none;<BR>
        overflow: auto;<BR>
}<BR>
<BR>
.RKTOChidden {<BR>
        display: inline;<BR>
height: 1em;<BR>
        overflow: hidden;<BR>
}<BR>
<BR>
.toggleTOC:link, .toggleTOC:visited {<BR>
        color: blue;<BR>
        font-weight: bold;<BR>
}<BR>
<BR>
.right {<BR>
        position: absolute;<BR>
        right: 7px;<BR>
        text-align: right;<BR>
}<BR>
<BR>
.center {<BR>
        position: absolute;<BR>
        right: 25%;<BR>
        left: 25%;<BR>
        top: 7px;<BR>
        text-align: center;<BR>
}<BR>
<BR>
/* end TOC menu */
<PRE>

</PRE>
<TT><FONT COLOR="#2e3436"><B>I did not actually try this code (if you can, please try to condense your examples to the absolute minimum, </B></FONT></TT><BR>
<TT><FONT COLOR="#2e3436"><B>and use data from the datasets-package; this really saves us valuable time), and maybe I did not understand the problem.</B></FONT></TT><TT><FONT COLOR="#2e3436"> </FONT></TT><BR>
<BR>
I apologize for providing my own scripts and data. I understand the inconvenience and will address it in subsequent posts.<BR>
<BR>
Let me try to clarify one more time. If a script loops through my columns to create graphs for each column, is there a way to keep the graphs in the<BR>
R graphics window (I have done this before, however, now I only see one graph at a time when I run my script).<BR>
<BR>
Thank you once again for following up in detail.<BR>
<BR>
I will look forward to hear back from you.<BR>
<BR>
Best,<BR>
Sourav
<PRE>


</PRE>
<BR>
On Thu, 2012-10-18 at 09:54 +0200, Thomas Friedrichsmeier wrote:
<BLOCKQUOTE TYPE=CITE>
<PRE>
Hi,

On Thursday 18 October 2012, Sourav Chakraborty wrote:
> What I get:
> Huge font size in TOC -
> <A HREF="http://imageshack.us/photo/my-images/823/rkout1.png/">http://imageshack.us/photo/my-images/823/rkout1.png/</A>
> Considerable blank spaces after the title.

does it help to change the font size? View->Enlarge Font / Shrink Font, 
default shortcuts Ctrl+ and Ctrl-.

> No control on the size of the output image.

Settings->Configure RKWard->Output->Graphics .

When writing your own R code, you can also pass parameters width and height to 
rk.graph.on().

> What I wish:
> Control over each level of TOC fonts and spacings (using some sort of
> parameters)

The development version has some support for adding custom HTML-headers to the 
output document, e.g. a custom CSS-definition. If it really bugs you, you 
could also modify the (extremly basic) default CSS file we ship. Use
View->View Document Source on the output window to find out where this is 
located on your system.

> Copy graphs to the output according to a certain specifications (for
> example 480 X 240 px) (I can create a desired graph by changing
> parameters within RKWard, however, when the graph is copied to output it
> goes to default.

See above, the defaults are configurable. It may make sense to provide an 
additional option to copy on-screen graphs to the output in their current 
size. Feel free to submit a feature request 
(<A HREF="http://sourceforge.net/tracker/?atid=459010&group_id=50231&func=browse">http://sourceforge.net/tracker/?atid=459010&group_id=50231&func=browse</A>) so 
that we will be reminded about this, in time.

> There is one last thing:
> When I use the following code, I get one graph in the active window (I
> am copy pasting code for each variable - which is a crude way to do it,
> but I am not really savvy with looping mechanism yet). "Previous and
> next" is - grayed out. Usually when I get boxplots from a data within
> RKward, I get sequential outputs and I can go back and forth to look at
> individual plots.

I did not actually try this code (if you can, please try to condense your 
examples to the absolute minimum, and use data from the datasets-package; this 
really saves us valuable time), and maybe I did not understand the problem. 
But:

> plot (c, align = "left")
> dev.copy (device = rk.graph.on)
> rk.graph.off ()

What this will do is:
1. Create the plot in the default device, i.e. on-screen.
2. Copy the onscreen plot to the output window.

I guess, instead, you were looking for:
  rk.graph.on ()
  plot (c, align = "left")
  rk.graph.off ()

Regards
Thomas
</PRE>
</BLOCKQUOTE>
</BODY>
</HTML>