Displaying 2 results from an estimated 2 matches for "ksueber".
Did you mean:
kseeger
1999 Sep 11
1
legend(): adjust space between symbol and tex
...falle"),
col=c("#000000","#808080","#707070","#A0A0A0","#404040"),
merge=T,
pch=c( 1,-1, 5,20, 4),
lty=c(-1, 1,-1,-1,-1),
xjust=1, yjust=ifelse(ydiff>=0,-1,1),
y.intersp=0.8, cex=0.6)
and looks like http://www.gwdg.de/~ksueber/beispiel.jpg or
+-------------------------+
|O stehender Stamm |
|-- Windwurf |
|# Eklektor |
and so, but it should look something like
+----------------------+
| O stehender Stamm |
| --- Windwurf |
| # Eklektor |
and so...
1999 Mar 20
1
How to get '\h' through print() or paste()?
Hello,
[really hoping not to ask something the 1001th time]
I need single backslashes printed for generating TeX-code.
That works:
> print("\begin{tabular}")
[1] "\begin{tabular}"
But \h seems to be interprated in some way:
> print('\hline')
[1] "hline"
Hm, trying to mask the backslash:
> print('\\hline')
[1]