Skip to content

Commit

Permalink
chore: some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolasfara committed Nov 5, 2022
1 parent e84158f commit f3b3d9a
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 17 deletions.
10 changes: 7 additions & 3 deletions slides/config.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
baseURL = 'https://atedeg.dev/mdm-dt/'
languageCode = 'en-us'
title = 'My New Hugo Site'
title = 'MDM Pervasive Computing'

theme = "reveal-hugo"

Expand All @@ -11,9 +11,13 @@ slide_number = true
width = "1440"
height = "900"

[markup.highlight]
codeFences = false
style = "github"

[params.reveal_hugo.custom_theme_options]
targetPath = "css/custom-theme.css"
enableSourceMap = true
targetPath = "css/custom-theme.css"
enableSourceMap = true

[markup.goldmark.renderer]
unsafe = true
Expand Down
42 changes: 28 additions & 14 deletions slides/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,28 +40,24 @@ The project models the business processes of the _Mambelli_ cheese factory so th

One of the main problems in the industry is the lack of interoperability between different machines and systems.

{{< container >}}
{{% container %}}

{{< column >}}
{{% column %}}

<ul>
<li>Different manufacturers creates their own <b>protocols</b> and <b>formats</b></li>
<li>Interoperability and integration occurs via an <b>agreements</b> between the different parties</li>
<li>The <b>interoperability</b> problem is not perceived as a problem by the entrepreneur</li>
</ul>
- Different manufacturers creates their own **protocols** and **formats**
- Interoperability and integration occurs via an **agreements** between the different parties
- The **interoperability** problem is not perceived as a problem by the entrepreneur

<p>
The <b>Industry 4.0</b> try to arginate this problem forcing the companies to reach a certain degree of integration and interoperability.
</p>
The **Industry 4.0** try to arginate this problem forcing the companies to reach a certain degree of integration and interoperability.

{{< /column >}}
{{< column >}}
{{% /column %}}
{{% column %}}

{{< figure src="img/interoperability.png" caption="Interoperability attention in industrial sectors. [[1]](https://www.sciencedirect.com/science/article/pii/S2405896317317615)" >}}

{{< /column >}}
{{% /column %}}

{{< /container >}}
{{% /container %}}

---
{{% section %}}
Expand Down Expand Up @@ -204,3 +200,21 @@ contexts:
# Context Map

{{< figure src="img/context-map.png" >}}

---

{{% section %}}

# Digital Twin Models

---

# Milk Tank Model

{{< mermaid >}}
graph LR
A --> B
B --> C
{{< /mermaid >}}

{{% /section %}}
1 change: 1 addition & 0 deletions slides/layouts/shortcodes/column.html
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
{{ $_hugo_config := `{ "version": 1 }` }}
<div class="col">{{ .Inner }}</div>
1 change: 1 addition & 0 deletions slides/layouts/shortcodes/container.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{ $_hugo_config := `{ "version": 1 }` }}
<div class="multiCol">
{{ .Inner }}
</div>

0 comments on commit f3b3d9a

Please sign in to comment.