hugo-theme-zzo/exampleSite/content/pt/third.md

68 lines
1.7 KiB
Markdown
Raw Normal View History

---
title: "Third"
date: 2019-11-30T20:46:30+09:00
description: "My third presentation"
type: pt
tags:
-
series:
-
categories:
-
featured_image: "feature2/albatross.png"
plugins:
- highlight
- zoom
- math
highlightTheme: monokai
revealTheme: league
reveal:
- main:
- sub:
- |
## Syntax highlighting
```go
// If an unknown or empty style is provided, AP style is what you get.
func GetTitleFunc(style string) func(s string) string {
switch strings.ToLower(style) {
case "go":
return strings.Title
case "chicago":
return transform.NewTitleConverter(transform.ChicagoStyle)
default:
return transform.NewTitleConverter(transform.APStyle)
}
}
```
- main:
- sub:
- |
## Mathjax 1
\\[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix}
\mathbf{i} & \mathbf{j} & \mathbf{k} \\
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0
\end{vmatrix} \\]
- main:
- sub:
- |
## Mathjax 2
\\[\begin{aligned}
\dot{x} & = \sigma(y-x) \\
\dot{y} & = \rho x - y - xz \\
\dot{z} & = -\beta z + xy
\end{aligned} \\]
- main:
- sub:
- |
## Mathjax 3
\\[P(E) = {n \choose k} p^k (1-p)^{ n-k} \\]
- main:
- sub:
- |
## Mathjax 4
\\[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} =
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}}
{1+\frac{e^{-8\pi}} {1+\ldots} } } } \\]
---