Displaying 6 results from an estimated 6 matches for "normalfont".
2010 Jun 18
1
Latex problem in Hmisc (3.8-1) and Mac Os X with R 2.11.1
...4&1\tabularnewline
\hline
\end{tabular}
\end{center}
\noindent {\scriptsize $a$\ }{$b$\ }{\scriptsize $c$\ } represent the
lower quartile $a$, the median $b$, and the upper quartile $c$\ for
continuous variables.\\Numbers after percents are
frequencies.\\\indent Tests used:\\\textsuperscript{\normalfont
1}Wilcoxon test; \textsuperscript{\normalfont 2}Pearson test
\end{table}
###Then I did another example from Harrell?s "statistical tables and plots...."
rm(list=ls())
library(Hmisc)
getHdata(prostate)
# Variables in prostate had units in ( ) inside variable labels. Move
# these unit...
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
2002 Apr 17
0
User defined macros for Rd-files?
Dear R-developers,
I am trying to make use of my own defined macros in Rd-files in order I could
simply type, say, \Splus, to get a font similar to \R in help files. So I put
the corresponding entry in Rd.cfg which now contains the line:
\newcommand{\Splus}{{\normalfont\textsf{Splus}}}
similar to the way \R defined in Rd.sty. So now so good:
R CMD Rd2dvi generates a dvi-file with a proper font. But building the
package and documentation just ignores definitions in Rd.cfg.
1. Is there a way to define macros which then will be understood by R CMD
build and install...
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 acrobat reader. When I print the document, the text looks fine.
I'm using,
C:\st521\homework\h...
2007 Nov 02
2
correct wording and notation for R stuff in LaTex
Hi R Gurus:
I'm putting together an article about some R stuff in Latex.
I refer to packages and functions.
I think that I use {\em} for packages and {\tt} for functions.
Is that correct, please?
Thank you in advance!
Sincerely,
Edna Bell
2008 Sep 06
0
Tab control using FXRuby
...end # def initilize
def create
super
show(PLACEMENT_SCREEN)
end # create
end # class MainWindow
# ============= main prog ============
# Construct an application
theApp = FXApp.new(''Smithy'',''Max'')
# Construct the main window
theApp.normalFont = FXFont.new(theApp,''Adobe Courier'',12,FONTWEIGHT_BOLD)
# define default display FONT for this application
MainWindow.new(theApp)
# Create and show the application windows
theApp.create
# Run the application
theApp.run
# ============= end ============
--
View...