search for: bfseries

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

Did you mean: fseries
2005 Aug 30
1
Convert ftable to latex?
...n.rgroup=c(6,6,6),file="") % latex.default(ftab, cgroup = attributes(ftab)$col.vars$voicetype, rgroup = attributes(ftab)$row.vars$votcat, n.rgroup = c(6, 6, 6), file = "") % \begin{table}[!tbp] \begin{center} \begin{tabular}{lclcl}\hline\hline \multicolumn{1}{c}{\bfseries Voiced}& \multicolumn{1}{c}{\bfseries }& \multicolumn{1}{c}{\bfseries Voiceless unaspirated}& \multicolumn{1}{c}{\bfseries }& \multicolumn{1}{c}{\bfseries Voiceless aspirated} \\ \cline{1-5} \multicolumn{1}{c}{}& \multicolumn{1}{c}{}& \multicolumn{1}{c}{}& \multicolumn{1...
2006 Oct 28
1
(kein Betreff)
...ction (object, title = first.word(deparse(substitute(object))), file = paste(title, ".tex", sep = ""), append = FALSE, label = title, rowlabel = title, rowlabel.just = "l", cgroup = NULL, n.cgroup = NULL, rgroup = NULL, n.rgroup = NULL, cgroupTexCmd = "bfseries", rgroupTexCmd = "bfseries", rownamesTexCmd = NULL, colnamesTexCmd = NULL, cellTexCmds = NULL, rowname, cgroup.just = rep("c", length(n.cgroup)), colheads = dimnames(cx)[[2]], extracolheads = NULL, extracolsize = "scriptsize", dcolumn = FALSE, nume...
2009 Apr 23
0
latex(Hmisc): cgroup + rownames shifts column names
...t;95\\% Conf. Limits"), table.env=FALSE, center="none") % latex.default(test.df, file = "", n.cgroup = c(1, 2), cgroup = c("", "95\\% Conf. Limits"), table.env = FALSE, center = "none") % \begin{tabular}{lrcrr} \hline\hline \multicolumn{1}{l}{\bfseries test.df}& \multicolumn{1}{c}{\bfseries }& \multicolumn{1}{c}{\bfseries }& \multicolumn{2}{c}{\bfseries 95\% Conf. Limits} \tabularnewline \cline{4-5} %% Comment added by ME -- this next line is the one that is broken with cgroup \multicolumn{1}{l}{col1}& \multicolumn{1}{c}{}& \...
2008 Oct 17
1
R-code in Latex --- $ sign causes error
hi, here's what i have: \lstset{ basicstyle=\ttfamily, keywordstyle=\bfseries, showstringspaces=false, columns = fullflexible, mathescape = true, language=R } \begin{lstlisting} lst$val<-val \end{lstlisting} ./software.tex:16:Extra }, or forgotten \endgroup. lst$ the culprit here is the $ sign. thanks. ps: i'm posting here rather than Latex is bec i guess...
2008 Oct 18
0
Several problems with hmisc latex function
...xample on page 10 of this document: http://biostat.mc.vanderbilt.edu/twiki/pub/Main/StatReport/latexFineControl.pdf x <- matrix(1:30, ncol = 5) y <- letters[1:6] x <- data.frame(x, y) cell.format <- matrix(rep("", NCOL(x) * NROW(x)), ncol = NCOL(x)) cell.format[1,1]<-"bfseries" latex(x, file = "", cgroup = c("Group A", "Group B", "Group C"), n.cgroup = c(2, 2, 2), rgroup = c("First", "Second"), n.rgroup = c(4, + 2), colnamesTexCmd = "color{green}", cgroupTexCmd = "scshape", rgroupTexC...
2010 Jun 16
2
Backslash in paste() function
...can't save the result from cat() back to a vector. And when I use cat() inside the latex function from the Hmisc package, I only get errors... The (not so) funny thing is that I can use paste() on a few latex commands. So if I needed to make the strings bold, the following works: paste("\bfseries{", test, "}") I've read the R FAQ 7.37, but it only deals with cat(). Not paste. Or I just didn't get it :o/ Is there a way to paste() the backslash character? > sessionInfo() R version 2.11.1 (2010-05-31) i486-pc-linux-gnu locale: [1] LC_CTYPE=en_US.utf8 LC_N...
2011 Apr 09
1
Trouble with Sweave and Beamer
....42 \end{frame} ? Can anyone tell me what is going wrong? Many thanks Lorenzo %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \documentclass{beamer} \usetheme{Darmstadt} \usefonttheme[onlylarge]{structurebold} \setbeamerfont*{frametitle}{size=\normalsize,series=\bfseries} \setbeamertemplate{navigation symbols}{} % Standard packages \usepackage[english]{babel} \usepackage[latin1]{inputenc} \usepackage[T1]{fontenc} \usepackage{Sweave} % The main document \begin{document} \setlength{\unitlength}{\textwidth} % measure in textwidths \begin{frame}[t]{Data Repr...
2012 Nov 01
1
How to nicely display R code with the LaTeX package 'listings'?
...################################# \documentclass{scrartcl} \usepackage[T1]{fontenc} \usepackage[american]{babel} \usepackage{graphicx} \usepackage{fancyvrb} \usepackage{listings} \lstset{% setup listings language=R,% set programming language basicstyle=\small,% basic font style keywordstyle=\bfseries,% keyword style commentstyle=\ttfamily\itshape,% comment style numbers=left,% display line numbers on the left side numberstyle=\scriptsize,% use small line numbers numbersep=10pt,% space between line numbers and code tabsize=3,% sizes of tabs showstringspaces=false,% do not replace sp...