org-theme/index.org
2020-11-26 13:42:19 +01:00

7.9 KiB

Test File for the Org Mode Theme

Simple Abstract.

Normal Markup

Here is some text in bold, now with underline and now some inline code.

Finally some italic text.

A link to a footnote1 and to another footnote2.

Lists

Unordered List

  • Lorem ipsum dolor sit amet, consectetur adipiscing elit.
  • Nam aliquet euismod viverra.
  • Phasellus turpis nisi, faucibus a orci et, faucibus fermentum ligula.

Ordered List

  1. In libero odio, imperdiet eget ex a, vulputate suscipit tellus.
  2. Etiam sed leo ex.
  3. Integer eu rutrum turpis.

Nested Lists

  • Nulla facilisi.
  • Donec vulputate risus ut lectus bibendum, vitae fringilla odio tempus.

    1. In libero odio, imperdiet eget ex a, vulputate suscipit tellus.
    2. Etiam sed leo ex.

      • Nulla facilisi.
      • Donec vulputate risus ut lectus bibendum, vitae fringilla odio tempus.
    3. Integer eu rutrum turpis.
  • Ut porta, quam id mattis feugiat, augue mauris bibendum sapien, a pulvinar mi lorem vitae nunc.

    • Integer eu rutrum turpis.

      • Sed pretium mattis nibh, vel lobortis augue semper vel.

Definition List

Lorem ipsum
dolor sit amet, consectetur adipiscing elit. Mauris laoreet sollicitudin venenatis. Duis sed consequat dolor.
Etiam feugiat
pharetra sapien et semper. Nunc ornare lacus sit amet massa auctor, vitae aliquam eros interdum. Mauris arcu ante, imperdiet vel purus ac, bibendum faucibus diam. Ut blandit nec mi at ultricies. Donec eget mattis nisl. In sed nibh felis. Cras quis convallis orci.
Sed aliquam
odio sed faucibus aliquam, arcu augue elementum justo, ut vulputate ligula sem in augue. Maecenas ante felis, pellentesque auctor semper non, eleifend quis ante. Fusce enim orci, suscipit ac dapibus et, fermentum eu tortor. Duis in facilisis ante, quis faucibus dolor. Etiam maximus lorem quis accumsan vehicula.

Headlines

Second level Headline

Third level Headline

Fourth level Headline
Fifth level Headline
Sixth level Headline

Third level Headline

Second level Headline

Second level Headline

Maths

Here is some inline mathematics: $z = 2$.

Unumbered equation: \[ F(x) = \int_0^x f(t) dt \]

Using the equation environment:

\begin{equation} F(s) = \int_0^\infty f(t) e^{-st} dt \label{eq:numbered} \end{equation}

Using the align environment:

\begin{align} \mathcal{F}(a) &= \frac{1}{2\pi i}\oint_\gamma \frac{f(z)}{z - a}\,dz\\ \int_D (\nabla\cdot \mathcal{F})\,dV &=\int_{\partial D}\mathcal{F}\cdot n\, dS \end{align}

Quote

This is a quote

Blocks

seealso block.

hint block.

definition block.

exampl block.

question block.

summary block.

important block.

caution block.

warning block.

Source Blocks

Figures

  t = 0:0.01:5; % Time [s]
  x = sin(2*pi*t); % Output Voltage [V]
  figure;
  plot(t, x);
  xlabel('Time [s]'); ylabel('Voltage [V]');

/tdehaeze/org-theme/media/commit/88cd36b51318828a8e24e7480e6179b39a137a36/figs/matlab_fig_example.png

Matlab Figure

Table Result

  x = 1:10;
  y = x.^2;
$x$ $y = x^2$
1 1
2 4
3 9
4 16
5 25
6 36
7 49
8 64
9 81
10 100
Table caption

Inline Results

  sqrt(2)
1.4142

Text Results

  y
y =
     1     4     9    16    25    36    49    64    81   100

Images

Code
  \begin{tikzpicture}

    % Blocs
    \node[block={2.0cm}{2.0cm}] (P) {$P$};
    \node[block={1.5cm}{1.5cm}, below=0.7 of P] (K) {$K$};

    % Input and outputs coordinates
    \coordinate[] (inputw)  at ($(P.south west)!0.75!(P.north west)$);
    \coordinate[] (inputu)  at ($(P.south west)!0.25!(P.north west)$);
    \coordinate[] (outputz) at ($(P.south east)!0.75!(P.north east)$);
    \coordinate[] (outputv) at ($(P.south east)!0.25!(P.north east)$);

    % Connections and labels
    \draw[<-] (inputw) node[above left, align=right]{(weighted)\\exogenous inputs\\$w$} -- ++(-1.5, 0);
    \draw[<-] (inputu) -- ++(-0.8, 0) |- node[left, near start, align=right]{control signals\\$u$} (K.west);

    \draw[->] (outputz) node[above right, align=left]{(weighted)\\exogenous outputs\\$z$} -- ++(1.5, 0);
    \draw[->] (outputv) -- ++(0.8, 0) |- node[right, near start, align=left]{sensed output\\$v$} (K.east);
  \end{tikzpicture}

/tdehaeze/org-theme/media/commit/88cd36b51318828a8e24e7480e6179b39a137a36/figs/general_control_names.png

Figure caption

Tables

a b c
x $\int_0^\infty f(x) dx$ 0
y sdf sdf
sdf sdf sd
fsd df sdf
Table caption

Details

What is the approximate diameter of the earth?

Answer

It is approximately 12,742 km

Videos

yt:A7wHSr6GRnc

Links

Footnotes


1

A long foot note. Lorem ipsum dolor sit amet, consectetur adipiscing elit. With a reference to Figure fig:general_control_names.

2

An other footnote.