Шаблон:File — различия между версиями

Материал Psylab.info - энциклопедии психодиагностики
Перейти к: навигация, поиск
м
м
 
(не показано 5 промежуточных версий этого же участника)
Строка 1: Строка 1:
<includeonly>
+
<includeonly><div class="contentbox mw-collapsible" style="border: 1px solid #AAA; background-color: #F9F9F9; overflow: auto">
<div class="contentbox mw-collapsible" style="border: 1px solid {{{color|#333}}}; background-color: {{{bgcol|#F3F3F3}}}; overflow: auto">
+
<div class="contentbox-title"><span class="contentbox-title1" style="background-color: #870922; color: white">{{{title|Файл}}}</span>{{#if:{{{filename|}}}|<span class="contentbox-subtitle" style="background-color: #AAA; color: white;">{{{filename}}}</span>|}}{{#if:{{{description|}}}|<span class="contentbox-description" style="color: #333;">{{{description}}}</span>|}}</div><br style="clear: both;" />{{#if:{{{rightmsg|}}}|<div class="contentbox-rightmsg">{{{rightmsg}}}</div>|}}
<div class="contentbox-title"><span class="contentbox-title1" style="background-color: #870922; color: white">{{{title|Файл}}}</span>{{#if:{{{subtitle|}}}|<span class="contentbox-subtitle" style="background-color: #AAA; color: white;">{{{subtitle}}}</span>|}}{{#if:{{{description|}}}|<span class="contentbox-description" style="color: #333;">{{{description}}}</span>|}}</div><br style="clear: both;" />{{#if:{{{rightmsg|}}}|<div class="contentbox-rightmsg">{{{rightmsg}}}</div>|}}
+
 
<div class="contentbox-content mw-collapsible-content">
 
<div class="contentbox-content mw-collapsible-content">
 
{{#tag:syntaxhighlight|{{{code}}}|lang={{{lang|text}}}|enclose="pre"}}
 
{{#tag:syntaxhighlight|{{{code}}}|lang={{{lang|text}}}|enclose="pre"}}
Строка 17: Строка 16:
 
{{file
 
{{file
 
   |title=Заголовок
 
   |title=Заголовок
   |subtitle=Подзаголовок
+
   |filename=Имя файла
 
   |description=Описание
 
   |description=Описание
 
   |lang=Язык для подсветки синтаксиса
 
   |lang=Язык для подсветки синтаксиса
Строка 28: Строка 27:
 
<pre>
 
<pre>
 
{{file
 
{{file
   |subtitle=$HOME/.Rprofile
+
   |filename=$HOME/.Rprofile
 
   |lang=r
 
   |lang=r
 
   |code=
 
   |code=
# .Rprofile -- commands to execute at the beginning of each R session
+
<nowiki><</nowiki>nowiki># .Rprofile -- commands to execute at the beginning of each R session
 
#
 
#
 
# You can use this file to load packages, set options, etc.
 
# You can use this file to load packages, set options, etc.
Строка 44: Строка 43:
 
options(showWarnCalls = TRUE, showErrorCalls = TRUE)
 
options(showWarnCalls = TRUE, showErrorCalls = TRUE)
  
utils::rc.settings(ipck = TRUE)
+
utils::rc.settings(ipck = TRUE)<nowiki></nowiki></nowiki>
 
}}
 
}}
 
</pre>
 
</pre>
 
{{file
 
{{file
   |subtitle=$HOME/.Rprofile
+
   |filename=$HOME/.Rprofile
 
   |lang=r
 
   |lang=r
 
   |code=
 
   |code=
Строка 60: Строка 59:
  
 
options(digits = 4)
 
options(digits = 4)
options(digits.secs=3)
+
options(digits.secs = 3)
 
options(show.signif.stars = FALSE)
 
options(show.signif.stars = FALSE)
 
options(showWarnCalls = TRUE, showErrorCalls = TRUE)
 
options(showWarnCalls = TRUE, showErrorCalls = TRUE)

Текущая версия на 17:19, 20 апреля 2014

Использование

{{file
  |title=Заголовок
  |filename=Имя файла
  |description=Описание
  |lang=Язык для подсветки синтаксиса
  |code=Содержимое файла
}}


Примеры

{{file
  |filename=$HOME/.Rprofile
  |lang=r
  |code=
<nowiki># .Rprofile -- commands to execute at the beginning of each R session
#
# You can use this file to load packages, set options, etc.
#
# NOTE: changes in this file won't be reflected until after you quit
# and start a new session
#

options(digits = 4)
options(digits.secs=3)
options(show.signif.stars = FALSE)
options(showWarnCalls = TRUE, showErrorCalls = TRUE)

utils::rc.settings(ipck = TRUE)</nowiki>
}}
Файл$HOME/.Rprofile

<syntaxhighlight lang="r" enclose="pre"># .Rprofile -- commands to execute at the beginning of each R session # # You can use this file to load packages, set options, etc. # # NOTE: changes in this file won't be reflected until after you quit # and start a new session # options(digits = 4) options(digits.secs = 3) options(show.signif.stars = FALSE) options(showWarnCalls = TRUE, showErrorCalls = TRUE) utils::rc.settings(ipck = TRUE)</syntaxhighlight>