-
Notifications
You must be signed in to change notification settings - Fork 524
Add TRB Article Template #427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
f887a26
87e91a6
ab9815c
af22c70
6be81df
03c2b17
706fdaf
0242d51
5dd9ccd
0ed6993
c0b2093
26261bc
bcc1761
862fc2a
590e262
9a48657
45609b9
e14b430
5f44456
4eef8ae
5942021
0e09c6d
ba912f7
58f4f9d
1735270
460f14c
5fe094f
d5f5b53
bfa9446
c6af40b
255a4b5
a30d6e1
64f3e11
66c95f9
7dfcefd
7e96ef8
35461a5
00ba650
d561c1d
14ceb92
ca391b6
502c8cc
42f37da
fda31d8
b80d85d
88607c3
d272608
c152b64
0410b67
20c99c7
69904c3
199b1b0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,126 @@ | ||
| % Repository: https://github.com/chiehrosswang/TRB_LaTeX_tex | ||
| % | ||
| % Transportation Research Board conference paper template | ||
| % version 4.0 Lite (updates made to be compatible in Overleaf and ShareLaTeX) | ||
| % | ||
| % | ||
| % When numbered option is activated, lines are numbered. | ||
| \documentclass[$for(classoption)$$classoption$$sep$,$endfor$]{trbunofficial} | ||
| \usepackage{graphicx} | ||
| \usepackage{booktabs} | ||
|
|
||
| \newread\somefile | ||
| \usepackage{xparse} | ||
| $if(natbib)$ | ||
| \usepackage{natbib} | ||
| \bibliographystyle{$if(biblio-style)$$biblio-style$$else$unsrtnat$endif$} | ||
| \setcitestyle{round} | ||
| $endif$ | ||
| % \usepackage[colorlinks=true,linkcolor=blue,citecolor=blue]{hyperref} | ||
| % For TRB version hide links | ||
| \usepackage[hidelinks$for(hyperrefoptions)$,$hyperrefoptions$$endfor$]{hyperref} | ||
|
|
||
| % Put here what will go to headers as author | ||
| \AuthorHeaders{$runningheader$} | ||
| \title{$title$} | ||
|
|
||
| % TODO: add macros for easier formatting of \author. | ||
| \author{% | ||
| $for(author)$ | ||
| \textbf{$author.name$}\\$if(author.note)$\textit{$author.note$}\\$endif$ | ||
| $author.position$\\ | ||
| $author.affiliation$\\ | ||
| $author.email$\\ | ||
gregmacfarlane marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| \hfill\break | ||
| $endfor$ | ||
| } | ||
|
|
||
| % Required by Pandoc | ||
| \providecommand{\tightlist}{% | ||
| \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}} | ||
|
|
||
| % If necessary modify the number of words per table or figure default is set to | ||
| % 250 words per table (default defined in cls) | ||
| $if(wordspertable)$\WordsPerTable{$wordspertable$}$endif$ | ||
|
|
||
| % If words are counted manually, put that number here. This does not include | ||
| % figures and tables. This can also be used to avoid problems with texcount | ||
| % program i.e. if one does not have it installed. | ||
| $if(wordcount)$\TotalWords{$wordcount$}$endif$ | ||
|
|
||
| $if(highlighting-macros)$ | ||
| % For Pandoc highlighting | ||
| $highlighting-macros$ | ||
| $endif$ | ||
|
|
||
| $if(csl-refs)$ | ||
| % Pandoc citation processing | ||
| \newlength{\csllabelwidth} | ||
| \setlength{\csllabelwidth}{3em} | ||
| \newlength{\cslhangindent} | ||
| \setlength{\cslhangindent}{1.5em} | ||
| % for Pandoc 2.8 to 2.10.1 | ||
| \newenvironment{cslreferences}% | ||
| {$if(csl-hanging-indent)$\setlength{\parindent}{0pt}% | ||
| \everypar{\setlength{\hangindent}{\cslhangindent}}\ignorespaces$endif$}% | ||
| {\par} | ||
| % For Pandoc 2.11+ | ||
| \newenvironment{CSLReferences}[2] % #1 hanging-ident, #2 entry spacing | ||
| {% don't indent paragraphs | ||
| \setlength{\parindent}{0pt} | ||
| % turn on hanging indent if param 1 is 1 | ||
| \ifodd #1 \everypar{\setlength{\hangindent}{\cslhangindent}}\ignorespaces\fi | ||
| % set entry spacing | ||
| \ifnum #2 > 0 | ||
| \setlength{\parskip}{#2\baselineskip} | ||
| \fi | ||
| }% | ||
| {} | ||
| \usepackage{calc} % for calculating minipage widths | ||
| \newcommand{\CSLBlock}[1]{#1\hfill\break} | ||
| \newcommand{\CSLLeftMargin}[1]{\parbox[t]{\csllabelwidth}{#1}} | ||
| \newcommand{\CSLRightInline}[1]{\parbox[t]{\linewidth - \csllabelwidth}{#1}\break} | ||
| \newcommand{\CSLIndent}[1]{\hspace{\cslhangindent}#1} | ||
| $endif$ | ||
|
|
||
| $for(header-includes)$ | ||
| % Pandoc feature | ||
| $header-includes$ | ||
| $endfor$ | ||
|
|
||
cderv marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| \begin{document} | ||
| \maketitle | ||
|
|
||
| $for(include-before)$ | ||
| $include-before$ | ||
| $endfor$ | ||
|
|
||
| \section{Abstract} | ||
| $abstract$ | ||
| \hfill\break% | ||
| \hfill\break% | ||
| \noindent\textit{Keywords}: $if(keywords)$ $for(keywords)$$keywords$, $endfor$ $endif$ | ||
| \newpage | ||
|
|
||
| $body$ | ||
|
|
||
| \newpage | ||
| $if(natbib)$ | ||
| $if(bibliography)$ | ||
| $if(biblio-title)$ | ||
| $if(book-class)$ | ||
| \renewcommand\bibname{$biblio-title$} | ||
| $else$ | ||
| \renewcommand\refname{$biblio-title$} | ||
| $endif$ | ||
| $endif$ | ||
| \bibliography{$for(bibliography)$$bibliography$$sep$,$endfor$} | ||
|
|
||
| $endif$ | ||
| $endif$ | ||
|
|
||
| $for(include-after)$ | ||
| $include-after$ | ||
|
|
||
| $endfor$ | ||
| \end{document} | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| @article{Dirac1953888, | ||
| title = "The lorentz transformation and absolute time", | ||
| journal = "Physica ", | ||
| volume = "19", | ||
| number = "1-–12", | ||
| pages = "888--896", | ||
| year = "1953", | ||
| doi = "10.1016/S0031-8914(53)80099-6", | ||
| author = "P.A.M. Dirac" | ||
| } | ||
|
|
||
| @article{Feynman1963118, | ||
| title = "The theory of a general quantum system interacting with a linear dissipative system", | ||
| journal = "Annals of Physics ", | ||
| volume = "24", | ||
| pages = "118--173", | ||
| year = "1963", | ||
| doi = "10.1016/0003-4916(63)90068-X", | ||
| author = "R.P Feynman and F.L {Vernon Jr.}" | ||
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,147 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| title: An Rticles Template for the Transport Research Board Annual Meeting | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| runningheader: "Anonymous, Security, and Zoolander" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| author: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - name: Alice Anonymous | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| note: Corresponding Author | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| position: Graduate Student | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| email: alice@example.com | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| affiliation: Some Institute of Technology | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - name: Bob Security | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| position: Assistant Professor | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| email: bob@example.com | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| affiliation: State University | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - name: Derek Zoolander | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| position: Professor | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| email: derek@example.com | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| affiliation: Some Institute of Technology | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| abstract: | | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The Transportation Research Board (TRB) has unique and seemingly arbitrary requirements for manuscripts submitted for review. These requirements make it difficult to write the manuscripts quickly, and no existing \LaTeX\ style comes close to fooling the guidelines. This represents an initial effort at creating a template to meet the requirements of TRB authors using \LaTeX, R, Sweave, and/or other literate programming software. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| keywords: ["Transportation", "Travel Behavior"] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| bibliography: mybibfile.bib | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| biblio-style: unsrtnat | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| classoption: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| - numbered # When numbered option is activated, lines are numbered. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| output: rticles::trb_article | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| wordcount: 684 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| --- | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```{r setup, include = FALSE} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| knitr::opts_chunk$set(echo = FALSE) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Transportation Research Board Annual Meetings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| TRB has greatly simplified the submissions to its system, meaning that this | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| template is no longer strictly required. However, there is a typical format | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| that most people still use by default, and this template implements that change. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Features | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The template has a number of features that enable quick and painless manuscript authoring. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Mathematics | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Standard pandoc / \LaTeX math environments are available. For example, the | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| probability of an individual choosing alternative $i$ in a multinomial logit | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| model is | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| \begin{equation} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| P_i = \frac{exp(V_i)}{\sum_{i, j \in J}exp(V_j)} \label{eq:mnl} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| \end{equation} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Equations with a `\label{eq:label}` can be referred to later in the text with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| `\ref{eq:label}`, such as Equation \ref{eq:mnl}. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Title Page | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The template will automatically create a title page with the authors in the | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| listed order. Near the bottom of the title page, TRB requires a count of the manuscript's | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| words and tables. The YAML header information contains a `wordcount` key where | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| this can be encoded. The number of tables is counted automatically on build; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| a default 250 words per table can be overriden with the `wordspertable` YAML | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| key. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The LaTeX template available from <https://github.com/chiehrosswang/TRB_LaTeX_tex> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| contain automatic word counters that have not been implemented in this `rticles` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| template. Authors can use the R Studio word count add-in available from | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <https://github.com/benmarwick/wordcountaddin>. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Page Layout | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The document has 1 inch margins as required, with the author's names in the left | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| heading and the page number in the right. The running header information is set | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| with the `runningheader` YAML key. Paragraphs leading sections and subsections | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| are not indented, while all subsequent paragraphs in that section are. Section | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| heading types are defined as outlined by the old TRB Author's Guide. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The document is single-spaced in 12 point Times font. Times New Roman is a | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| proprietary font and is therefore not available by installation in open-source | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| software. While the differences between Times variants are negligible, Times New | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Roman itself can be used in Mac OSX by compiling under `xelatex`. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Figure and Table references | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The document can use standard pandoc referencing tools for in-text | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| citations to figures and tables. If an R code chunk outputs a figure, the figure | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| number can be referred to with `\@ref(fig:chunkname)` where `chunkname` is the | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| name of the chunk that prints the figure. For example, Figure \@ref(fig:figure-example) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| shows a default figure made by the R chunk below. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```{r figure-example, fig.cap="Generic plot.", echo = TRUE} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Generate some sample data, then compute mean and standard deviation | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # in each group | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Speed <- cars$speed | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Distance <- cars$dist | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| plot(Speed, Distance, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| panel.first = lines(stats::lowess(Speed, Distance), lty = "dashed"), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| pch = 0, cex = 1.2, col = "blue") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The template setup chunk sets `echo = FALSE` for the entire document, as printing | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| code listings would not usually be appropriate or needed for a TRB article. But | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| the option is there! | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The same referencing logic works for tables, with the `tab:` prefix on the | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| chunk name instead of `fig:` used for figures. Table \@ref(tab:table-example) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| has a basic table. We recommend the `kableExtra` package for formatting | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| publication-ready tables with greater control than the default `knitr::kable()` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| function. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ```{r table-example} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| knitr::kable(mtcars[1:5, 1:6], format = "latex", table.envir = "table", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| booktabs = TRUE, caption = "Example Table") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| ## Bibliography styles | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| TRB still wants numbered, unsorted citations beginning on a new page. The | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| template is configured to use `natbib` with the `unsrtnat` citation style, with | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| some additional logic to use parentheses instead of brackets. The YAML key | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| `bibliostyle` will allow the authors to select a different citation format, but | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| this is not recommended at the moment. Citations use the pandoc logic. Including | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| the reference in brackets `[@reference]` will print only the numeric reference; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| e.g. [@Feynman1963118; @Dirac1953888]. Including the reference without brackets | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| `@reference` will print the authors and then the numeric reference; e.g. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| @Feynman1963118. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Author Contribution Statement | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| The authors confirm contribution to the paper as follows: study conception and | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| design: A. Anonymous, D. Zoolander; data collection: B. Security; analysis and | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| interpretation of results: A. Anonymous, B. Security; draft manuscript | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| preparation: A. Anonymous. All authors reviewed the results and approved | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| the final version of the manuscript. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # Acknowledgements | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| David Pritchard posted the original versions of this template in 2009 and | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| updated it in 2011, soon after TRB began allowing PDF submissions. Gregory | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Macfarlane and Ross Wang made adjustments to the template, and Ross Wang now | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| maintains the \LaTeX template at | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| <https://github.com/chiehrosswang/TRB_LaTeX_tex>. Gregory Macfarlane created the `rticles` template in 2021. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could add more example of content like equation and custom blocks using Markdown syntax.
Suggested change
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think adding math is a good idea. I've added the template authors contribute statement and moved the history stuff to acknowledgements. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| # References {#references } | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Uh oh!
There was an error while loading. Please reload this page.