A template for the *arxiv* style

Introduction

Here goes an introduction text

Headings: first level

\label{sec:headings}

You can use directly LaTeX command or Markdown text.

LaTeX command can be used to reference other section. See Section \ref{sec:headings}. However, you can also use bookdown extensions mechanism for this.

Headings: second level

You can use equation in blocks

$$ \xi {ij}(t)=P(x{t}=i,x_{t+1}=j|y,v,w;\theta)= {\frac {\alpha {i}(t)a^{w_t}{ij}\beta {j}(t+1)b^{v{t+1}}{j}(y{t+1})}{\sum {i=1}^{N} \sum {j=1}^{N} \alpha {i}(t)a^{w_t}{ij}\beta {j}(t+1)b^{v{t+1}}{j}(y{t+1})}} $$

But also inline i.e $z=x+y$

Headings: third level

Another paragraph.

Examples of citations, figures, tables, references

\label{sec:others}

You can insert references. Here is some text [@kour2014real; @kour2014fast] and see @hadash2018estimate.

The documentation for \verb+natbib+ may be found at

You can use custom blocks with LaTeX support from rmarkdown to create environment.

::: {.center latex=true} http://mirrors.ctan.org/macros/latex/contrib/natbib/natnotes.pdf} :::

Of note is the command \verb+\citet+, which produces citations appropriate for use in inline text.

You can insert LaTeX environment directly too.

\begin{verbatim} \citet{hasselmo} investigated\dots \end{verbatim}

produces

\begin{quote} Hasselmo, et al.\ (1995) investigated\dots \end{quote}

\begin{center} \url{https://www.ctan.org/pkg/booktabs} \end{center}

Figures

You can insert figure using LaTeX directly.

See Figure \ref{fig:fig1}. Here is how you add footnotes. [^Sample of the first footnote.]

\begin{figure} \centering \fbox{\rule[-.5cm]{4cm}{4cm} \rule[-.5cm]{4cm}{0cm}} \caption{Sample figure caption.} \label{fig:fig1} \end{figure}

But you can also do that using R.

plot(mtcars$mpg)

You can use bookdown to allow references for Tables and Figures.

Tables

Below we can see how to use tables.

See awesome Table~\ref{tab:table} which is written directly in LaTeX in source Rmd file.

\begin{table} \caption{Sample table title} \centering \begin{tabular}{lll} \toprule \multicolumn{2}{c}{Part} \ \cmidrule(r){1-2} Name & Description & Size ($\mu$m) \ \midrule Dendrite & Input terminal & $\sim$100 \ Axon & Output terminal & $\sim$10 \ Soma & Cell body & up to $10^6$ \ \bottomrule \end{tabular} \label{tab:table} \end{table}

You can also use R code for that.

knitr::kable(head(mtcars), caption = "Head of mtcars table")

Lists



Try the rticles package in your browser

Any scripts or data that you put into this service are public.

rticles documentation built on May 29, 2024, 2:30 a.m.