120 lines
3.1 KiB
Plaintext
120 lines
3.1 KiB
Plaintext
# -*- mode: snippet -*-
|
|
# name: Article
|
|
# group: templates
|
|
# key: ?article
|
|
# --
|
|
#+TITLE: ${1:Title}
|
|
#+SUBTITLE: ${2:Subtitle}
|
|
#+DATE: ${3:13. April 2022}
|
|
#+AUTHOR: ${4:Daniel Weschke}
|
|
#+EMAIL: ${5:daniel.weschke@gmail.com}
|
|
#+KEYWORDS:
|
|
#+DESCRIPTION:
|
|
#+LANGUAGE:
|
|
#+OPTIONS: draft:t
|
|
|
|
* BOP :ignore:
|
|
#+LATEX: \pagenumbering{roman}\setcounter{page}{1}\thispagestyle{empty}
|
|
|
|
* Coverpage :ignore:
|
|
# Some beginning notes.
|
|
|
|
* Abstract :ignore:
|
|
:PROPERTIES:
|
|
:VISIBILITY: folded
|
|
:END:
|
|
#+LATEX: \clearpage\thispagestyle{empty}
|
|
#+BEGIN_abstract
|
|
*{{{author}}}*
|
|
|
|
*{{{title-name}}}*\\
|
|
{{{title}}}
|
|
|
|
*{{{keyword-name}}}*\\
|
|
{{{keyword(keywords)}}}
|
|
|
|
*{{{description-name}}}*\\
|
|
{{{keyword(description)}}}
|
|
#+END_abstract
|
|
|
|
* TOC and other lists :ignore:
|
|
:PROPERTIES:
|
|
:VISIBILITY: folded
|
|
:CLEARPAGE: t
|
|
:END:
|
|
# Table of Contents
|
|
#+LATEX: \clearpage\pdfbookmark[1]{\contentsname}{toc}
|
|
#+TOC: headlines
|
|
#+LATEX: \thispagestyle{plain}
|
|
|
|
# List of Figures (# `#+TOC: figures' is not working)
|
|
#+LATEX: \phantomsection\addcontentsline{toc}{section}{\listfigurename}\listoffigures
|
|
|
|
# List of Tables
|
|
#+LATEX: \phantomsection\addcontentsline{toc}{section}{\listtablename}
|
|
#+TOC: tables
|
|
#+LATEX: \thispagestyle{plain}
|
|
|
|
# List of Listings
|
|
#+LATEX: \phantomsection\addcontentsline{toc}{section}{\lstlistlistingname}
|
|
#+TOC: listings
|
|
#+LATEX: \thispagestyle{plain}
|
|
|
|
* List of Symbols
|
|
:PROPERTIES:
|
|
:CUSTOM_ID: list-of-symbols
|
|
:UNNUMBERED: t
|
|
:END:
|
|
#+ATTR_LATEX: :center nil
|
|
| \(A\) | mm^{2} | Area |
|
|
| \(L\) | mm | Length |
|
|
| \(f\) | Hz | Eigen frequency |
|
|
| \(J\) | | {{{textsc(Jacobi)}}}an determinant |
|
|
| \(m\ti{ges}\) | kg | Total mass |
|
|
| \(m_{ik}\ho{eff}\) | kg | Effective mass |
|
|
|
|
* Glossary and Acronyms :ignore:
|
|
:PROPERTIES:
|
|
:UNNUMBERED: t
|
|
:END:
|
|
#+name: glossary
|
|
| label | name | description |
|
|
|-------+-------+---------------|
|
|
| tree | Tree | A woody plant |
|
|
| shrub | Shrub | A woody bush |
|
|
|
|
#+name: acronyms
|
|
| key | abbreviation | full form |
|
|
|------+--------------+--------------------------------|
|
|
| mimo | | multiple-input multiple output |
|
|
| qos | QoS | quality-of-service |
|
|
| bb | BB | branch and bound |
|
|
|
|
[[printglossaries:]]
|
|
# \printglossary[type=\acronymtype]
|
|
# \printglossary
|
|
|
|
* EOP :ignore:
|
|
#+LATEX: \newpage\pagenumbering{arabic}\setcounter{page}{1}
|
|
|
|
* 1st Header
|
|
$0
|
|
|
|
* References :ignore:
|
|
# #+LATEX_HEADER_EXTRA: \addbibresource{references.bib}
|
|
[[printbibliography:]]
|
|
|
|
* Appendix
|
|
:PROPERTIES:
|
|
:UNNUMBERED: t
|
|
:APPENDIX: t
|
|
:END:
|
|
# ! UNNUMBERED: t !
|
|
# ! APPENDIX: t !
|
|
|
|
** 1st appendix
|
|
:PROPERTIES:
|
|
:UNNUMBERED: nil
|
|
:END:
|
|
# ! UNNUMBERED: nil !
|