Make chapter numbers appear grey
This commit is contained in:
parent
520879dc2e
commit
d26f562b85
445
css/latex.css
445
css/latex.css
@ -3,16 +3,13 @@
|
|||||||
section {
|
section {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
padding: 0 !important;
|
padding: 0 !important; }
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
* {
|
||||||
line-height: inherit;
|
line-height: inherit; }
|
||||||
}
|
|
||||||
|
|
||||||
input {
|
input {
|
||||||
font-size: inherit;
|
font-size: inherit; }
|
||||||
}
|
|
||||||
|
|
||||||
/* config */
|
/* config */
|
||||||
:root {
|
:root {
|
||||||
@ -21,39 +18,29 @@ input {
|
|||||||
--secondary: #bbd6ec;
|
--secondary: #bbd6ec;
|
||||||
--secondary-dark: #3f5d75;
|
--secondary-dark: #3f5d75;
|
||||||
--secondary-light: #eaf2f9;
|
--secondary-light: #eaf2f9;
|
||||||
--margin: 0.1;
|
--margin: 0.1; }
|
||||||
}
|
|
||||||
:root:lang(de) {
|
:root:lang(de) {
|
||||||
--opening-double-quote: "»";
|
--opening-double-quote: '»';
|
||||||
--closing-double-quote: "«";
|
--closing-double-quote: '«'; }
|
||||||
}
|
|
||||||
:root:lang(en) {
|
:root:lang(en) {
|
||||||
--opening-double-quote: "“";
|
--opening-double-quote: '“';
|
||||||
--closing-double-quote: "”";
|
--closing-double-quote: '”'; }
|
||||||
}
|
|
||||||
|
|
||||||
/* basic layout */
|
/* basic layout */
|
||||||
:root {
|
:root {
|
||||||
--square: 100vw;
|
--square: 100vw;
|
||||||
overflow: hidden;
|
overflow: hidden; }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) {
|
@media (min-aspect-ratio: 1 / 1) {
|
||||||
:root {
|
:root {
|
||||||
--square: 50vw;
|
--square: 50vw; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 2 / 1) {
|
@media (min-aspect-ratio: 2 / 1) {
|
||||||
:root {
|
:root {
|
||||||
--square: 100vh;
|
--square: 100vh; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-size: calc(0.035 * var(--square));
|
font-size: calc(0.035 * var(--square)); }
|
||||||
}
|
|
||||||
body article {
|
body article {
|
||||||
position: relative;
|
position: relative; }
|
||||||
}
|
|
||||||
body .layout-content-and-preview,
|
body .layout-content-and-preview,
|
||||||
body .layout-content-only,
|
body .layout-content-only,
|
||||||
body .layout-preview-only,
|
body .layout-preview-only,
|
||||||
@ -63,83 +50,68 @@ body .layout-wide-content {
|
|||||||
max-height: 100vh;
|
max-height: 100vh;
|
||||||
min-width: 100vw;
|
min-width: 100vw;
|
||||||
max-width: 100vw;
|
max-width: 100vw;
|
||||||
overflow: auto;
|
overflow: auto; }
|
||||||
}
|
|
||||||
body .layout-content-and-preview {
|
body .layout-content-and-preview {
|
||||||
grid-template-rows: var(--square) auto;
|
grid-template-rows: var(--square) auto;
|
||||||
grid-template-columns: auto;
|
grid-template-columns: auto;
|
||||||
grid-template-areas: "content" "preview";
|
grid-template-areas: "content" "preview";
|
||||||
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) var(--square));
|
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) var(--square)); }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) {
|
@media (min-aspect-ratio: 1 / 1) {
|
||||||
body .layout-content-and-preview {
|
body .layout-content-and-preview {
|
||||||
grid-template-rows: auto var(--square) auto;
|
grid-template-rows: auto var(--square) auto;
|
||||||
grid-template-columns: var(--square) auto;
|
grid-template-columns: var(--square) auto;
|
||||||
grid-template-areas: " . preview" "content preview" " . preview";
|
grid-template-areas: " . preview" "content preview" " . preview";
|
||||||
background: linear-gradient(to right, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%);
|
background: linear-gradient(to right, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%); } }
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 2 / 1) {
|
@media (min-aspect-ratio: 2 / 1) {
|
||||||
body .layout-content-and-preview {
|
body .layout-content-and-preview {
|
||||||
grid-template-rows: var(--square);
|
grid-template-rows: var(--square);
|
||||||
grid-template-columns: var(--square) auto;
|
grid-template-columns: var(--square) auto;
|
||||||
grid-template-areas: "content preview";
|
grid-template-areas: "content preview"; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
body .layout-content-only {
|
body .layout-content-only {
|
||||||
grid-template-rows: var(--square) auto;
|
grid-template-rows: var(--square) auto;
|
||||||
grid-template-columns: var(--square);
|
grid-template-columns: var(--square);
|
||||||
grid-template-areas: "content" " . ";
|
grid-template-areas: "content" " . ";
|
||||||
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%);
|
background: linear-gradient(to bottom, white 0%, white var(--square), var(--secondary) var(--square), var(--secondary) 100%); }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) {
|
@media (min-aspect-ratio: 1 / 1) {
|
||||||
body .layout-content-only {
|
body .layout-content-only {
|
||||||
grid-template-rows: auto var(--square) auto;
|
grid-template-rows: auto var(--square) auto;
|
||||||
grid-template-columns: auto var(--square) auto;
|
grid-template-columns: auto var(--square) auto;
|
||||||
grid-template-areas: ". . ." ". content ." ". . .";
|
grid-template-areas: ". . ." ". content ." ". . .";
|
||||||
background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) calc((100% - var(--square)) / 2), white calc((100% - var(--square)) / 2), white calc(100% - (100% - var(--square)) / 2), var(--secondary) calc(100% - (100% - var(--square)) / 2), var(--secondary) 100%);
|
background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) calc((100% - var(--square)) / 2), white calc((100% - var(--square)) / 2), white calc(100% - (100% - var(--square)) / 2), var(--secondary) calc(100% - (100% - var(--square)) / 2), var(--secondary) 100%); } }
|
||||||
}
|
|
||||||
}
|
|
||||||
body .layout-preview-only {
|
body .layout-preview-only {
|
||||||
grid-template-rows: auto;
|
grid-template-rows: auto;
|
||||||
grid-template-columns: auto;
|
grid-template-columns: auto;
|
||||||
grid-template-areas: "preview";
|
grid-template-areas: "preview";
|
||||||
background: var(--secondary);
|
background: var(--secondary); }
|
||||||
}
|
|
||||||
body .layout-wide-content {
|
body .layout-wide-content {
|
||||||
background: white;
|
background: white;
|
||||||
grid-template-rows: min-content auto;
|
grid-template-rows: min-content auto;
|
||||||
grid-template-columns: var(--square);
|
grid-template-columns: var(--square);
|
||||||
grid-template-areas: "content" " . ";
|
grid-template-areas: "content" " . "; }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) {
|
@media (min-aspect-ratio: 1 / 1) {
|
||||||
body .layout-wide-content {
|
body .layout-wide-content {
|
||||||
grid-template-rows: auto var(--square) auto;
|
grid-template-rows: auto var(--square) auto;
|
||||||
grid-template-columns: calc(2 * var(--square));
|
grid-template-columns: calc(2 * var(--square));
|
||||||
grid-template-areas: " . " "content" " . ";
|
grid-template-areas: " . " "content" " . "; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 2 / 1) {
|
@media (min-aspect-ratio: 2 / 1) {
|
||||||
body .layout-wide-content {
|
body .layout-wide-content {
|
||||||
grid-template-rows: auto var(--square) auto;
|
grid-template-rows: auto var(--square) auto;
|
||||||
grid-template-columns: auto calc(2 * var(--square)) auto;
|
grid-template-columns: auto calc(2 * var(--square)) auto;
|
||||||
grid-template-areas: ". . ." ". content ." ". . .";
|
grid-template-areas: ". . ." ". content ." ". . .";
|
||||||
background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) calc((100% - 2 * var(--square)) / 2), white calc((100% - 2 * var(--square)) / 2), white calc(100% - (100% - 2 * var(--square)) / 2), var(--secondary) calc(100% - (100% - 2 * var(--square)) / 2), var(--secondary) 100%);
|
background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) calc((100% - 2 * var(--square)) / 2), white calc((100% - 2 * var(--square)) / 2), white calc(100% - (100% - 2 * var(--square)) / 2), var(--secondary) calc(100% - (100% - 2 * var(--square)) / 2), var(--secondary) 100%); } }
|
||||||
}
|
|
||||||
}
|
|
||||||
body .layout-content {
|
body .layout-content {
|
||||||
background: white;
|
background: white;
|
||||||
grid-area: content;
|
grid-area: content;
|
||||||
position: relative;
|
position: relative; }
|
||||||
}
|
body .layout-content .chapter-number {
|
||||||
|
color: lightgray; }
|
||||||
body .layout-content.titlepage {
|
body .layout-content.titlepage {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
padding-bottom: calc(var(--margin) * var(--square) + 0.5 * 3em);
|
padding-bottom: calc(var(--margin) * var(--square) + 0.5 * 3em); }
|
||||||
}
|
|
||||||
body .layout-content.titlepage::before {
|
body .layout-content.titlepage::before {
|
||||||
content: "";
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: calc(var(--margin) * var(--square));
|
top: calc(var(--margin) * var(--square));
|
||||||
right: calc(var(--margin) * var(--square));
|
right: calc(var(--margin) * var(--square));
|
||||||
@ -147,8 +119,7 @@ body .layout-content.titlepage::before {
|
|||||||
height: calc(.3 * var(--square));
|
height: calc(.3 * var(--square));
|
||||||
background-image: url(../images/logo-fachschaft.jpg);
|
background-image: url(../images/logo-fachschaft.jpg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: contain;
|
background-size: contain; }
|
||||||
}
|
|
||||||
body .layout-preview {
|
body .layout-preview {
|
||||||
grid-area: preview;
|
grid-area: preview;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -156,11 +127,9 @@ body .layout-preview {
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
background: var(--secondary);
|
background: var(--secondary);
|
||||||
position: relative;
|
position: relative; }
|
||||||
}
|
|
||||||
body .layout-preview figure {
|
body .layout-preview figure {
|
||||||
display: contents;
|
display: contents; }
|
||||||
}
|
|
||||||
body .layout-preview img {
|
body .layout-preview img {
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
@ -170,29 +139,23 @@ body .layout-preview img {
|
|||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
margin: calc(.05 * var(--square));
|
margin: calc(.05 * var(--square));
|
||||||
background-color: white;
|
background-color: white;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box; }
|
||||||
}
|
|
||||||
body .layout-preview img.thin-padding {
|
body .layout-preview img.thin-padding {
|
||||||
padding: 0.5em;
|
padding: .5em; }
|
||||||
}
|
|
||||||
body .layout-preview img.large {
|
body .layout-preview img.large {
|
||||||
width: 60%;
|
width: 60%;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box; }
|
||||||
}
|
|
||||||
body .layout-preview img[src$="-crop.svg"] {
|
body .layout-preview img[src$="-crop.svg"] {
|
||||||
padding: calc(var(--margin) * var(--square));
|
padding: calc(var(--margin) * var(--square));
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
width: calc(0.9 * var(--square));
|
width: calc(0.9 * var(--square)); }
|
||||||
}
|
|
||||||
body .layout-preview img[src$="-crop.svg"].thin-padding {
|
body .layout-preview img[src$="-crop.svg"].thin-padding {
|
||||||
padding: calc(.35 * var(--margin) * var(--square));
|
padding: calc(.35 * var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
body .layout-preview img[src$="-orig.svg"] {
|
body .layout-preview img[src$="-orig.svg"] {
|
||||||
background: white;
|
background: white;
|
||||||
object-fit: contain;
|
object-fit: contain; }
|
||||||
}
|
|
||||||
body .layout-preview figcaption {
|
body .layout-preview figcaption {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
background: rgba(0, 0, 0, 0.5);
|
background: rgba(0, 0, 0, 0.5);
|
||||||
@ -200,9 +163,8 @@ body .layout-preview figcaption {
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 0.5em;
|
padding: .5em;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box; }
|
||||||
}
|
|
||||||
body .layout-two-columns {
|
body .layout-two-columns {
|
||||||
display: grid;
|
display: grid;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@ -213,34 +175,26 @@ body .layout-two-columns {
|
|||||||
grid-template-rows: auto auto auto 1fr;
|
grid-template-rows: auto auto auto 1fr;
|
||||||
grid-template-columns: var(--square);
|
grid-template-columns: var(--square);
|
||||||
grid-template-areas: "title" "column1" "column2" ".";
|
grid-template-areas: "title" "column1" "column2" ".";
|
||||||
background: var(--secondary);
|
background: var(--secondary); }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) {
|
@media (min-aspect-ratio: 1 / 1) {
|
||||||
body .layout-two-columns {
|
body .layout-two-columns {
|
||||||
grid-template-rows: auto calc(0.18 * var(--square)) calc(0.82 * var(--square)) auto;
|
grid-template-rows: auto calc(0.18 * var(--square)) calc(0.82 * var(--square)) auto;
|
||||||
grid-template-columns: var(--square) var(--square);
|
grid-template-columns: var(--square) var(--square);
|
||||||
grid-template-areas: " . . " " title title " "column1 column2" " . . ";
|
grid-template-areas: " . . " " title title " "column1 column2" " . . "; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 2 / 1) {
|
@media (min-aspect-ratio: 2 / 1) {
|
||||||
body .layout-two-columns {
|
body .layout-two-columns {
|
||||||
grid-template-rows: calc(0.18 * var(--square)) calc(0.82 * var(--square));
|
grid-template-rows: calc(0.18 * var(--square)) calc(0.82 * var(--square));
|
||||||
grid-template-columns: auto var(--square) var(--square) auto;
|
grid-template-columns: auto var(--square) var(--square) auto;
|
||||||
grid-template-areas: ". title title ." ". column1 column2 .";
|
grid-template-areas: ". title title ." ". column1 column2 ."; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
body .layout-two-columns .layout-title {
|
body .layout-two-columns .layout-title {
|
||||||
grid-area: title;
|
grid-area: title;
|
||||||
background: var(--secondary);
|
background: var(--secondary); }
|
||||||
}
|
|
||||||
body .layout-two-columns .layout-column-one {
|
body .layout-two-columns .layout-column-one {
|
||||||
grid-area: column1;
|
grid-area: column1;
|
||||||
background: white;
|
background: white; }
|
||||||
}
|
|
||||||
body .layout-two-columns .layout-column-two {
|
body .layout-two-columns .layout-column-two {
|
||||||
grid-area: column2;
|
grid-area: column2;
|
||||||
background: white;
|
background: white; }
|
||||||
}
|
|
||||||
body .layout-two-previews {
|
body .layout-two-previews {
|
||||||
display: grid;
|
display: grid;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
@ -250,74 +204,60 @@ body .layout-two-previews {
|
|||||||
overflow: auto;
|
overflow: auto;
|
||||||
grid-template-rows: auto auto;
|
grid-template-rows: auto auto;
|
||||||
grid-template-columns: auto;
|
grid-template-columns: auto;
|
||||||
background: var(--secondary);
|
background: var(--secondary); }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) {
|
@media (min-aspect-ratio: 1 / 1) {
|
||||||
body .layout-two-previews {
|
body .layout-two-previews {
|
||||||
grid-template-rows: 100vh;
|
grid-template-rows: 100vh;
|
||||||
grid-template-columns: 50vw 50vw;
|
grid-template-columns: 50vw 50vw;
|
||||||
grid-template-areas: "preview preview";
|
grid-template-areas: "preview preview"; } }
|
||||||
}
|
|
||||||
}
|
|
||||||
body .layout-two-previews .layout-preview {
|
body .layout-two-previews .layout-preview {
|
||||||
grid-area: auto;
|
grid-area: auto; }
|
||||||
}
|
|
||||||
|
|
||||||
/* content layout */
|
/* content layout */
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Fira Sans";
|
font-family: 'Fira Sans';
|
||||||
src: url("../lib/font/fira-sans/FiraSans-Regular.ttf");
|
src: url("../lib/font/fira-sans/FiraSans-Regular.ttf");
|
||||||
font-weight: 400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Fira Sans";
|
font-family: 'Fira Sans';
|
||||||
src: url("../lib/font/fira-sans/FiraSans-Bold.ttf");
|
src: url("../lib/font/fira-sans/FiraSans-Bold.ttf");
|
||||||
font-weight: 700;
|
font-weight: 700; }
|
||||||
}
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Fira Code";
|
font-family: 'Fira Code';
|
||||||
src: url("../lib/font/fira-code/FiraCode-Regular.otf");
|
src: url("../lib/font/fira-code/FiraCode-Regular.otf");
|
||||||
font-weight: 400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Fira Code";
|
font-family: 'Fira Code';
|
||||||
src: url("../lib/font/fira-code/FiraCode-Bold.otf");
|
src: url("../lib/font/fira-code/FiraCode-Bold.otf");
|
||||||
font-weight: 700;
|
font-weight: 700; }
|
||||||
}
|
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "EB Garamond";
|
font-family: 'EB Garamond';
|
||||||
src: url("../lib/font/eb-garamond/EBGaramond-Regular.ttf");
|
src: url("../lib/font/eb-garamond/EBGaramond-Regular.ttf");
|
||||||
font-weight: 400;
|
font-weight: 400; }
|
||||||
}
|
|
||||||
body {
|
body {
|
||||||
font-family: "Fira Sans";
|
font-family: 'Fira Sans';
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: 1.2em;
|
line-height: 1.2em; }
|
||||||
}
|
|
||||||
|
|
||||||
.layout-content-and-preview .layout-content,
|
.layout-content-and-preview .layout-content,
|
||||||
.layout-content-only .layout-content,
|
.layout-content-only .layout-content,
|
||||||
.layout-wide-content .layout-content {
|
.layout-wide-content .layout-content {
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
padding: calc(var(--margin) * var(--square));
|
padding: calc(var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content *:first-child,
|
.layout-content-and-preview .layout-content *:first-child,
|
||||||
.layout-content-only .layout-content *:first-child,
|
.layout-content-only .layout-content *:first-child,
|
||||||
.layout-wide-content .layout-content *:first-child {
|
.layout-wide-content .layout-content *:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content .layout-title,
|
.layout-content-and-preview .layout-content .layout-title,
|
||||||
.layout-content-only .layout-content .layout-title,
|
.layout-content-only .layout-content .layout-title,
|
||||||
.layout-wide-content .layout-content .layout-title {
|
.layout-wide-content .layout-content .layout-title {
|
||||||
padding: calc(0.3 * var(--margin) * var(--square)) 0;
|
padding: calc(0.3 * var(--margin) * var(--square)) 0;
|
||||||
line-height: 1.15em;
|
line-height: 1.15em; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content .layout-title h2,
|
.layout-content-and-preview .layout-content .layout-title h2,
|
||||||
.layout-content-only .layout-content .layout-title h2,
|
.layout-content-only .layout-content .layout-title h2,
|
||||||
.layout-wide-content .layout-content .layout-title h2 {
|
.layout-wide-content .layout-content .layout-title h2 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
line-height: 1.15em;
|
line-height: 1.15em; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content ul, .layout-content-and-preview .layout-content ol,
|
.layout-content-and-preview .layout-content ul, .layout-content-and-preview .layout-content ol,
|
||||||
.layout-content-only .layout-content ul,
|
.layout-content-only .layout-content ul,
|
||||||
.layout-content-only .layout-content ol,
|
.layout-content-only .layout-content ol,
|
||||||
@ -325,18 +265,16 @@ body {
|
|||||||
.layout-wide-content .layout-content ol {
|
.layout-wide-content .layout-content ol {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
position: relative;
|
position: relative; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content ul li::before, .layout-content-and-preview .layout-content ol li::before,
|
.layout-content-and-preview .layout-content ul li::before, .layout-content-and-preview .layout-content ol li::before,
|
||||||
.layout-content-only .layout-content ul li::before,
|
.layout-content-only .layout-content ul li::before,
|
||||||
.layout-content-only .layout-content ol li::before,
|
.layout-content-only .layout-content ol li::before,
|
||||||
.layout-wide-content .layout-content ul li::before,
|
.layout-wide-content .layout-content ul li::before,
|
||||||
.layout-wide-content .layout-content ol li::before {
|
.layout-wide-content .layout-content ol li::before {
|
||||||
content: "▪";
|
content: '▪';
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: calc(-0.33 * var(--margin) * var(--square));
|
left: calc(-0.33 * var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content ul ul, .layout-content-and-preview .layout-content ul ol, .layout-content-and-preview .layout-content ol ul, .layout-content-and-preview .layout-content ol ol,
|
.layout-content-and-preview .layout-content ul ul, .layout-content-and-preview .layout-content ul ol, .layout-content-and-preview .layout-content ol ul, .layout-content-and-preview .layout-content ol ol,
|
||||||
.layout-content-only .layout-content ul ul,
|
.layout-content-only .layout-content ul ul,
|
||||||
.layout-content-only .layout-content ul ol,
|
.layout-content-only .layout-content ul ol,
|
||||||
@ -346,21 +284,18 @@ body {
|
|||||||
.layout-wide-content .layout-content ul ol,
|
.layout-wide-content .layout-content ul ol,
|
||||||
.layout-wide-content .layout-content ol ul,
|
.layout-wide-content .layout-content ol ul,
|
||||||
.layout-wide-content .layout-content ol ol {
|
.layout-wide-content .layout-content ol ol {
|
||||||
margin-left: calc(0.33 * var(--margin) * var(--square));
|
margin-left: calc(0.33 * var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content ol,
|
.layout-content-and-preview .layout-content ol,
|
||||||
.layout-content-only .layout-content ol,
|
.layout-content-only .layout-content ol,
|
||||||
.layout-wide-content .layout-content ol {
|
.layout-wide-content .layout-content ol {
|
||||||
counter-reset: ol-counter;
|
counter-reset: ol-counter; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content ol li::before,
|
.layout-content-and-preview .layout-content ol li::before,
|
||||||
.layout-content-only .layout-content ol li::before,
|
.layout-content-only .layout-content ol li::before,
|
||||||
.layout-wide-content .layout-content ol li::before {
|
.layout-wide-content .layout-content ol li::before {
|
||||||
counter-increment: ol-counter;
|
counter-increment: ol-counter;
|
||||||
content: counter(ol-counter) ".";
|
content: counter(ol-counter) ".";
|
||||||
color: var(--secondary-dark);
|
color: var(--secondary-dark);
|
||||||
left: calc(-0.36 * var(--margin) * var(--square));
|
left: calc(-0.36 * var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content pre,
|
.layout-content-and-preview .layout-content pre,
|
||||||
.layout-content-only .layout-content pre,
|
.layout-content-only .layout-content pre,
|
||||||
.layout-wide-content .layout-content pre {
|
.layout-wide-content .layout-content pre {
|
||||||
@ -368,8 +303,7 @@ body {
|
|||||||
padding-left: calc(var(--margin) * var(--square));
|
padding-left: calc(var(--margin) * var(--square));
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content pre::before,
|
.layout-content-and-preview .layout-content pre::before,
|
||||||
.layout-content-only .layout-content pre::before,
|
.layout-content-only .layout-content pre::before,
|
||||||
.layout-wide-content .layout-content pre::before {
|
.layout-wide-content .layout-content pre::before {
|
||||||
@ -377,102 +311,85 @@ body {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
top: 0.85em;
|
top: .85em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
||||||
transform-origin: top right;
|
transform-origin: top right;
|
||||||
transform: rotate(-90deg);
|
transform: rotate(-90deg); }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content pre code,
|
.layout-content-and-preview .layout-content pre code,
|
||||||
.layout-content-only .layout-content pre code,
|
.layout-content-only .layout-content pre code,
|
||||||
.layout-wide-content .layout-content pre code {
|
.layout-wide-content .layout-content pre code {
|
||||||
padding: 0.3em 0;
|
padding: .3em 0; }
|
||||||
}
|
|
||||||
.layout-content-and-preview .layout-content code,
|
.layout-content-and-preview .layout-content code,
|
||||||
.layout-content-only .layout-content code,
|
.layout-content-only .layout-content code,
|
||||||
.layout-wide-content .layout-content code {
|
.layout-wide-content .layout-content code {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
font-family: "Fira Code";
|
font-family: 'Fira Code'; }
|
||||||
}
|
|
||||||
|
|
||||||
.layout-two-columns .layout-title {
|
.layout-two-columns .layout-title {
|
||||||
padding: calc(0.3 * var(--margin) * var(--square)) calc(var(--margin) * var(--square));
|
padding: calc(0.3 * var(--margin) * var(--square)) calc(var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-title h2 {
|
.layout-two-columns .layout-title h2 {
|
||||||
line-height: 1.15em;
|
line-height: 1.15em; }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one,
|
.layout-two-columns .layout-column-one,
|
||||||
.layout-two-columns .layout-column-two {
|
.layout-two-columns .layout-column-two {
|
||||||
padding: calc(var(--margin) * var(--square));
|
padding: calc(var(--margin) * var(--square));
|
||||||
padding-top: calc(var(--margin) * var(--square));
|
padding-top: calc(var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one *:first-child,
|
.layout-two-columns .layout-column-one *:first-child,
|
||||||
.layout-two-columns .layout-column-two *:first-child {
|
.layout-two-columns .layout-column-two *:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0; }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one ul,
|
.layout-two-columns .layout-column-one ul,
|
||||||
.layout-two-columns .layout-column-two ul {
|
.layout-two-columns .layout-column-two ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
position: relative;
|
position: relative; }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one ul li::before,
|
.layout-two-columns .layout-column-one ul li::before,
|
||||||
.layout-two-columns .layout-column-two ul li::before {
|
.layout-two-columns .layout-column-two ul li::before {
|
||||||
content: "▪";
|
content: '▪';
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: calc(-0.33 * var(--margin) * var(--square));
|
left: calc(-0.33 * var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one ul ul,
|
.layout-two-columns .layout-column-one ul ul,
|
||||||
.layout-two-columns .layout-column-two ul ul {
|
.layout-two-columns .layout-column-two ul ul {
|
||||||
margin-left: calc(0.33 * var(--margin) * var(--square));
|
margin-left: calc(0.33 * var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one pre,
|
.layout-two-columns .layout-column-one pre,
|
||||||
.layout-two-columns .layout-column-two pre {
|
.layout-two-columns .layout-column-two pre {
|
||||||
margin: 0 calc(-1 * var(--margin) * var(--square));
|
margin: 0 calc(-1 * var(--margin) * var(--square));
|
||||||
line-height: 1.2em;
|
line-height: 1.2em;
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden; }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one pre::before,
|
.layout-two-columns .layout-column-one pre::before,
|
||||||
.layout-two-columns .layout-column-two pre::before {
|
.layout-two-columns .layout-column-two pre::before {
|
||||||
content: attr(data-sourcefile);
|
content: attr(data-sourcefile);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
color: var(--secondary);
|
color: var(--secondary);
|
||||||
top: 0.85em;
|
top: .85em;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
left: calc(-1 * var(--square) + 1.2 * var(--margin) * var(--square));
|
||||||
transform-origin: top right;
|
transform-origin: top right;
|
||||||
transform: rotate(-90deg);
|
transform: rotate(-90deg); }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one pre code,
|
.layout-two-columns .layout-column-one pre code,
|
||||||
.layout-two-columns .layout-column-two pre code {
|
.layout-two-columns .layout-column-two pre code {
|
||||||
padding: 0.3em calc(var(--margin) * var(--square));
|
padding: 0.3em calc(var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
.layout-two-columns .layout-column-one code,
|
.layout-two-columns .layout-column-one code,
|
||||||
.layout-two-columns .layout-column-two code {
|
.layout-two-columns .layout-column-two code {
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
font-family: "Fira Code";
|
font-family: 'Fira Code'; }
|
||||||
}
|
|
||||||
|
|
||||||
.layout.layout-chapter-heading {
|
.layout.layout-chapter-heading {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
position: relative;
|
position: relative; }
|
||||||
}
|
|
||||||
.layout.layout-chapter-heading .layout-title {
|
.layout.layout-chapter-heading .layout-title {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
left: 2vw;
|
left: 2vw;
|
||||||
width: calc(100vw - 4vw);
|
width: calc(100vw - 4vw);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
bottom: calc(38.2% - .5em);
|
bottom: calc(38.2% - .5em); }
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 300%;
|
font-size: 300%;
|
||||||
max-width: var(--square);
|
max-width: var(--square); }
|
||||||
}
|
|
||||||
|
|
||||||
:not(.titlepage) > h1 {
|
:not(.titlepage) > h1 {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -480,41 +397,36 @@ h1 {
|
|||||||
left: 0;
|
left: 0;
|
||||||
line-height: 115%;
|
line-height: 115%;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
padding: 0 calc(var(--margin) * var(--square)) 0.5em;
|
padding: 0 calc(var(--margin) * var(--square)) 0.5em; }
|
||||||
}
|
|
||||||
|
|
||||||
.titlepage > h1 {
|
.titlepage > h1 {
|
||||||
line-height: 100%;
|
line-height: 100%;
|
||||||
margin-bottom: 3rem;
|
margin-bottom: 3rem; }
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
line-height: 1.2;
|
line-height: 1.2; }
|
||||||
}
|
|
||||||
|
|
||||||
p[data-category]::before,
|
p[data-category]::before,
|
||||||
h2[data-category]::before,
|
h2[data-category]::before,
|
||||||
h3[data-category]::before {
|
h3[data-category]::before {
|
||||||
content: attr(data-category);
|
content: attr(data-category);
|
||||||
font-size: 0.7em;
|
font-size: .7em;
|
||||||
font-variant: small-caps;
|
font-variant: small-caps;
|
||||||
text-transform: lowercase;
|
text-transform: lowercase;
|
||||||
background: black;
|
background: black;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 0.1em 0.5em;
|
padding: .1em .5em;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: baseline;
|
vertical-align: baseline;
|
||||||
letter-spacing: 0.1em;
|
letter-spacing: .1em;
|
||||||
position: relative;
|
position: relative;
|
||||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||||
padding-left: calc(var(--margin) * var(--square));
|
padding-left: calc(var(--margin) * var(--square));
|
||||||
margin-right: 0.5em;
|
margin-right: .5em; }
|
||||||
}
|
|
||||||
|
|
||||||
h2[data-category=Aufgabe]::before,
|
h2[data-category=Aufgabe]::before,
|
||||||
h2[data-category=Task]::before {
|
h2[data-category=Task]::before {
|
||||||
content: attr(data-category) " " attr(data-task);
|
content: attr(data-category) " " attr(data-task); }
|
||||||
}
|
|
||||||
|
|
||||||
.layout-content-only h2[data-category=Aufgabe]::after,
|
.layout-content-only h2[data-category=Aufgabe]::after,
|
||||||
.layout-content-only h2[data-category=Task]::after,
|
.layout-content-only h2[data-category=Task]::after,
|
||||||
@ -533,8 +445,7 @@ h2[data-category=Task]::before {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
direction: rtl;
|
direction: rtl;
|
||||||
word-spacing: 1000%;
|
word-spacing: 1000%;
|
||||||
opacity: 0.2;
|
opacity: .2; }
|
||||||
}
|
|
||||||
@media (min-aspect-ratio: 1 / 1) and (max-aspect-ratio: 2 / 1) {
|
@media (min-aspect-ratio: 1 / 1) and (max-aspect-ratio: 2 / 1) {
|
||||||
.layout-content-only h2[data-category=Aufgabe]::after,
|
.layout-content-only h2[data-category=Aufgabe]::after,
|
||||||
.layout-content-only h2[data-category=Task]::after,
|
.layout-content-only h2[data-category=Task]::after,
|
||||||
@ -542,98 +453,78 @@ h2[data-category=Task]::before {
|
|||||||
.layout-wide-content h2[data-category=Task]::after {
|
.layout-wide-content h2[data-category=Task]::after {
|
||||||
--versatz: calc((100vh - var(--square)) / 2);
|
--versatz: calc((100vh - var(--square)) / 2);
|
||||||
top: var(--versatz);
|
top: var(--versatz);
|
||||||
bottom: calc(-1 * var(--versatz));
|
bottom: calc(-1 * var(--versatz)); } }
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.layout-content-only h2.task-without-number::after,
|
.layout-content-only h2.task-without-number::after,
|
||||||
.layout-content-only h2.task-without-number::after,
|
.layout-content-only h2.task-without-number::after,
|
||||||
.layout-wide-content h2.task-without-number::after,
|
.layout-wide-content h2.task-without-number::after,
|
||||||
.layout-wide-content h2.task-without-number::after {
|
.layout-wide-content h2.task-without-number::after {
|
||||||
display: none;
|
display: none; }
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
img {
|
||||||
width: auto;
|
width: auto;
|
||||||
max-width: 100%;
|
max-width: 100%; }
|
||||||
}
|
|
||||||
|
|
||||||
table {
|
table {
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
width: calc(var(--square) - var(--margin) * var(--square));
|
width: calc(var(--square) - var(--margin) * var(--square));
|
||||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||||
border-spacing: 0;
|
border-spacing: 0; }
|
||||||
}
|
|
||||||
table tr:nth-child(2n-1) {
|
table tr:nth-child(2n-1) {
|
||||||
background: var(--secondary);
|
background: var(--secondary); }
|
||||||
}
|
|
||||||
table tr > *:first-child {
|
table tr > *:first-child {
|
||||||
padding-left: calc(var(--margin) * var(--square));
|
padding-left: calc(var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
table th, table td {
|
table th, table td {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
vertical-align: top;
|
vertical-align: top;
|
||||||
padding: 0.3em;
|
padding: .3em;
|
||||||
padding-left: 0;
|
padding-left: 0; }
|
||||||
}
|
|
||||||
table th:last-child, table td:last-child {
|
table th:last-child, table td:last-child {
|
||||||
padding-right: 0.1em;
|
padding-right: .1em; }
|
||||||
}
|
|
||||||
|
|
||||||
.layout-content-only table {
|
.layout-content-only table {
|
||||||
border-spacing: 0;
|
border-spacing: 0;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box; }
|
||||||
}
|
|
||||||
.layout-content-only table tr > *:first-child {
|
.layout-content-only table tr > *:first-child {
|
||||||
padding-left: 0.3rem;
|
padding-left: .3rem;
|
||||||
padding-right: 0.3rem;
|
padding-right: .3rem; }
|
||||||
}
|
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
margin-left: calc(-1 * var(--margin) * var(--square));
|
margin-left: calc(-1 * var(--margin) * var(--square));
|
||||||
padding: 0.8em 0.1em 0.1em calc(var(--margin) * var(--square));
|
padding: 0.8em 0.1em 0.1em calc(var(--margin) * var(--square)); }
|
||||||
}
|
|
||||||
|
|
||||||
.box.warning {
|
.box.warning {
|
||||||
background: var(--primary);
|
background: var(--primary); }
|
||||||
}
|
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
color: var(--secondary-dark);
|
color: var(--secondary-dark);
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-bottom: 1.8em;
|
padding-bottom: 1.8em;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
margin-right: 0;
|
margin-right: 0; }
|
||||||
}
|
|
||||||
blockquote p:first-of-type {
|
blockquote p:first-of-type {
|
||||||
/* probably bungle, but works for one <p> inside <blockquote> */
|
/* probably bungle, but works for one <p> inside <blockquote> */
|
||||||
display: contents;
|
display: contents; }
|
||||||
}
|
|
||||||
blockquote p:first-of-type::after {
|
blockquote p:first-of-type::after {
|
||||||
content: " " var(--closing-double-quote);
|
content: " " var(--closing-double-quote); }
|
||||||
}
|
|
||||||
blockquote::before {
|
blockquote::before {
|
||||||
content: var(--opening-double-quote) " ";
|
content: var(--opening-double-quote) " ";
|
||||||
color: var(--secondary-dark);
|
color: var(--secondary-dark);
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
right: 100%;
|
right: 100%; }
|
||||||
}
|
|
||||||
blockquote cite {
|
blockquote cite {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0.6em;
|
bottom: 0.6em;
|
||||||
left: calc(0.4 * var(--square));
|
left: calc(0.4 * var(--square));
|
||||||
width: calc(0.4 * var(--square));
|
width: calc(0.4 * var(--square)); }
|
||||||
}
|
|
||||||
blockquote cite::before {
|
blockquote cite::before {
|
||||||
content: "— ";
|
content: "— "; }
|
||||||
}
|
|
||||||
|
|
||||||
.layout-content figure {
|
.layout-content figure {
|
||||||
margin: 0 1em 1em 0;
|
margin: 0 1em 1em 0; }
|
||||||
}
|
|
||||||
|
|
||||||
.bubble {
|
.bubble {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -644,32 +535,28 @@ blockquote cite::before {
|
|||||||
border: 0.1em solid var(--primary-dark);
|
border: 0.1em solid var(--primary-dark);
|
||||||
background: var(--primary);
|
background: var(--primary);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 1em;
|
border-radius: 1em; }
|
||||||
}
|
|
||||||
.bubble::before {
|
.bubble::before {
|
||||||
content: "";
|
content: '';
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: 0.5em solid transparent;
|
border: .5em solid transparent;
|
||||||
border-top-color: var(--primary-dark);
|
border-top-color: var(--primary-dark);
|
||||||
bottom: -1em;
|
bottom: -1em;
|
||||||
left: calc(50% - .5em);
|
left: calc(50% - .5em); }
|
||||||
}
|
|
||||||
.bubble::after {
|
.bubble::after {
|
||||||
content: "";
|
content: '';
|
||||||
width: 0;
|
width: 0;
|
||||||
height: 0;
|
height: 0;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: 0.5em solid transparent;
|
border: .5em solid transparent;
|
||||||
border-top-color: var(--primary);
|
border-top-color: var(--primary);
|
||||||
bottom: -0.87em;
|
bottom: -0.87em;
|
||||||
left: calc(50% - .5em);
|
left: calc(50% - .5em); }
|
||||||
}
|
|
||||||
|
|
||||||
section > h1, section > h2, section > h3, section > p, section > ul {
|
section > h1, section > h2, section > h3, section > p, section > ul {
|
||||||
background: var(--primary);
|
background: var(--primary); }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Keyboard Shortcut Styling
|
* Keyboard Shortcut Styling
|
||||||
@ -681,20 +568,17 @@ kbd {
|
|||||||
display: inline-block;
|
display: inline-block;
|
||||||
border: 1px solid dimgray;
|
border: 1px solid dimgray;
|
||||||
border-width: 1px 5px 5px 1px;
|
border-width: 1px 5px 5px 1px;
|
||||||
padding: 0.2rem 0.5rem;
|
padding: .2rem .5rem; }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Emoji Fonts
|
* Emoji Fonts
|
||||||
* ============
|
* ============
|
||||||
*/
|
*/
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: "Twemoji";
|
font-family: 'Twemoji';
|
||||||
src: url("../lib/font/twemoji/TwitterColorEmoji-SVGinOT.ttf");
|
src: url("../lib/font/twemoji/TwitterColorEmoji-SVGinOT.ttf"); }
|
||||||
}
|
|
||||||
.emoji {
|
.emoji {
|
||||||
font-family: "Twemoji";
|
font-family: "Twemoji"; }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Links
|
* Links
|
||||||
@ -705,10 +589,9 @@ p a:link, p a:hover, p a:active, p a:visited, li a:link, li a:hover, li a:active
|
|||||||
color: var(--secondary-dark);
|
color: var(--secondary-dark);
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 1;
|
z-index: 1; }
|
||||||
}
|
|
||||||
p a:link::before, p a:hover::before, p a:active::before, p a:visited::before, li a:link::before, li a:hover::before, li a:active::before, li a:visited::before, h2 a:link::before, h2 a:hover::before, h2 a:active::before, h2 a:visited::before, td a:link::before, td a:hover::before, td a:active::before, td a:visited::before, figcaption a:link::before, figcaption a:hover::before, figcaption a:active::before, figcaption a:visited::before, div a:link::before, div a:hover::before, div a:active::before, div a:visited::before {
|
p a:link::before, p a:hover::before, p a:active::before, p a:visited::before, li a:link::before, li a:hover::before, li a:active::before, li a:visited::before, h2 a:link::before, h2 a:hover::before, h2 a:active::before, h2 a:visited::before, td a:link::before, td a:hover::before, td a:active::before, td a:visited::before, figcaption a:link::before, figcaption a:hover::before, figcaption a:active::before, figcaption a:visited::before, div a:link::before, div a:hover::before, div a:active::before, div a:visited::before {
|
||||||
content: "";
|
content: '';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 102%;
|
width: 102%;
|
||||||
height: 0;
|
height: 0;
|
||||||
@ -716,31 +599,25 @@ p a:link::before, p a:hover::before, p a:active::before, p a:visited::before, li
|
|||||||
z-index: -1;
|
z-index: -1;
|
||||||
bottom: -5%;
|
bottom: -5%;
|
||||||
left: -1%;
|
left: -1%;
|
||||||
transition: 0.2s height ease;
|
transition: .2s height ease; }
|
||||||
}
|
|
||||||
p a:hover::before, li a:hover::before, h2 a:hover::before, td a:hover::before, figcaption a:hover::before, div a:hover::before {
|
p a:hover::before, li a:hover::before, h2 a:hover::before, td a:hover::before, figcaption a:hover::before, div a:hover::before {
|
||||||
height: 110%;
|
height: 110%; }
|
||||||
}
|
|
||||||
|
|
||||||
figcaption a:not(.dark-font):link, figcaption a:not(.dark-font):hover, figcaption a:not(.dark-font):active, figcaption a:not(.dark-font):visited {
|
figcaption a:not(.dark-font):link, figcaption a:not(.dark-font):hover, figcaption a:not(.dark-font):active, figcaption a:not(.dark-font):visited {
|
||||||
color: white;
|
color: white; }
|
||||||
}
|
|
||||||
figcaption a:not(.dark-font):link::before, figcaption a:not(.dark-font):hover::before, figcaption a:not(.dark-font):active::before, figcaption a:not(.dark-font):visited::before {
|
figcaption a:not(.dark-font):link::before, figcaption a:not(.dark-font):hover::before, figcaption a:not(.dark-font):active::before, figcaption a:not(.dark-font):visited::before {
|
||||||
background-color: var(--secondary-dark);
|
background-color: var(--secondary-dark); }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Code Listings
|
* Code Listings
|
||||||
* =============
|
* =============
|
||||||
*/
|
*/
|
||||||
pre.small-text {
|
pre.small-text {
|
||||||
font-size: 80%;
|
font-size: 80%; }
|
||||||
}
|
|
||||||
|
|
||||||
pre.scroll-one-half {
|
pre.scroll-one-half {
|
||||||
max-height: calc(.5 * var(--square));
|
max-height: calc(.5 * var(--square));
|
||||||
overflow: auto !important;
|
overflow: auto !important; }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Fragments
|
* Fragments
|
||||||
@ -748,12 +625,10 @@ pre.scroll-one-half {
|
|||||||
*/
|
*/
|
||||||
.fragment {
|
.fragment {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: 0.3s opacity ease-in-out;
|
transition: .3s opacity ease-in-out; }
|
||||||
}
|
|
||||||
|
|
||||||
.fragment.visible {
|
.fragment.visible {
|
||||||
opacity: 1;
|
opacity: 1; }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Topic List
|
* Topic List
|
||||||
@ -761,26 +636,21 @@ pre.scroll-one-half {
|
|||||||
*/
|
*/
|
||||||
.topic-list {
|
.topic-list {
|
||||||
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
||||||
z-index: 500;
|
z-index: 500; }
|
||||||
}
|
|
||||||
.topic-list .topic-list-search {
|
.topic-list .topic-list-search {
|
||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border: none;
|
border: none;
|
||||||
padding: 0.5rem;
|
padding: .5rem;
|
||||||
margin-bottom: 1rem;
|
margin-bottom: 1rem;
|
||||||
border-bottom: 1px solid var(--secondary);
|
border-bottom: 1px solid var(--secondary);
|
||||||
text-align: center;
|
text-align: center; }
|
||||||
}
|
|
||||||
.topic-list .topic-link {
|
.topic-list .topic-link {
|
||||||
font-weight: normal;
|
font-weight: normal; }
|
||||||
}
|
|
||||||
.topic-list .topic-link.active-topic-link {
|
.topic-list .topic-link.active-topic-link {
|
||||||
font-weight: bold;
|
font-weight: bold; }
|
||||||
}
|
|
||||||
.topic-list .topic-link.not-matching-search-terms {
|
.topic-list .topic-link.not-matching-search-terms {
|
||||||
opacity: 0.2;
|
opacity: .2; }
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Help Menu
|
* Help Menu
|
||||||
@ -801,18 +671,15 @@ pre.scroll-one-half {
|
|||||||
background: white;
|
background: white;
|
||||||
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
box-shadow: 0 0px 50px rgba(0, 0, 0, 0.3);
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transition: 0.2s opacity ease-in-out;
|
transition: .2s opacity ease-in-out; }
|
||||||
}
|
|
||||||
|
|
||||||
#help-menu-checkbox:checked ~ #help-menu-wrapper {
|
#help-menu-checkbox:checked ~ #help-menu-wrapper {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
display: block;
|
display: block; }
|
||||||
}
|
|
||||||
|
|
||||||
#help-menu-checkbox {
|
#help-menu-checkbox {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
right: 150vw;
|
right: 150vw; }
|
||||||
}
|
|
||||||
|
|
||||||
#help-menu-toggle {
|
#help-menu-toggle {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
@ -822,13 +689,11 @@ pre.scroll-one-half {
|
|||||||
height: 3rem;
|
height: 3rem;
|
||||||
color: white;
|
color: white;
|
||||||
background-color: rgba(0, 0, 0, 0.3);
|
background-color: rgba(0, 0, 0, 0.3);
|
||||||
transition: 0.1s background-color ease-in-out;
|
transition: .1s background-color ease-in-out;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center; }
|
||||||
}
|
|
||||||
#help-menu-toggle:hover {
|
#help-menu-toggle:hover {
|
||||||
background-color: rgba(0, 0, 0, 0.5);
|
background-color: rgba(0, 0, 0, 0.5); }
|
||||||
}
|
|
||||||
|
|
||||||
/*# sourceMappingURL=latex.css.map */
|
/*# sourceMappingURL=latex.css.map */
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@ -157,6 +157,10 @@ body {
|
|||||||
grid-area: content;
|
grid-area: content;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
.chapter-number {
|
||||||
|
color: lightgray;
|
||||||
|
}
|
||||||
|
|
||||||
&.titlepage {
|
&.titlepage {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|||||||
@ -1,5 +1,8 @@
|
|||||||
<div class="layout-content-only">
|
<div class="layout-content-only">
|
||||||
<div class="layout-content">
|
<div class="layout-content">
|
||||||
<h1>@title(inline)</h1>
|
<h1>
|
||||||
|
<span class="chapter-number">@number(inline).</span>
|
||||||
|
@title(inline)
|
||||||
|
</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
1
|
||||||
|
|
||||||
@title
|
@title
|
||||||
1 Was ist L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?
|
Was ist L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
1
|
||||||
|
|
||||||
@title
|
@title
|
||||||
1 What is L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?
|
What is L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
2
|
||||||
|
|
||||||
@title
|
@title
|
||||||
2 Wie funktioniert L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?
|
Wie funktioniert L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X?
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
2
|
||||||
|
|
||||||
@title
|
@title
|
||||||
2 How does <br/>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X work?
|
How does <br/>L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X work?
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
3
|
||||||
|
|
||||||
@title
|
@title
|
||||||
3 Grundstruktur eines L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X-Dokuments
|
Grundstruktur eines L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X-Dokuments
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
3
|
||||||
|
|
||||||
@title
|
@title
|
||||||
3 Basic structure of a L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X document
|
Basic structure of a L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X document
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
4
|
||||||
|
|
||||||
@title
|
@title
|
||||||
4 Projektstruktur
|
Projektstruktur
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
4
|
||||||
|
|
||||||
@title
|
@title
|
||||||
4 Project structure
|
Project structure
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
5
|
||||||
|
|
||||||
@title
|
@title
|
||||||
5 Sonderzeichen
|
Sonderzeichen
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
5
|
||||||
|
|
||||||
@title
|
@title
|
||||||
5 Special characters
|
Special characters
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
6
|
||||||
|
|
||||||
@title
|
@title
|
||||||
6 Text­auszeichnung
|
Text­auszeichnung
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
6
|
||||||
|
|
||||||
@title
|
@title
|
||||||
6 Text Markup
|
Text Markup
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
7
|
||||||
|
|
||||||
@title
|
@title
|
||||||
7 Absatz­formatierung
|
Absatz­formatierung
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
7
|
||||||
|
|
||||||
@title
|
@title
|
||||||
7 Formatting paragraphs
|
Formatting paragraphs
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
8
|
||||||
|
|
||||||
@title
|
@title
|
||||||
8 Aufzählungen
|
Aufzählungen
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
8
|
||||||
|
|
||||||
@title
|
@title
|
||||||
8 Enumerations
|
Enumerations
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
9
|
||||||
|
|
||||||
@title
|
@title
|
||||||
9 Mathematische Formeln
|
Mathematische Formeln
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
9
|
||||||
|
|
||||||
@title
|
@title
|
||||||
9 Typesetting mathematics
|
Typesetting mathematics
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
10
|
||||||
|
|
||||||
@title
|
@title
|
||||||
10 Grafiken
|
Grafiken
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
10
|
||||||
|
|
||||||
@title
|
@title
|
||||||
10 Graphics
|
Graphics
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
11
|
||||||
|
|
||||||
@title
|
@title
|
||||||
11 Tabellen
|
Tabellen
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
11
|
||||||
|
|
||||||
@title
|
@title
|
||||||
11 Tables
|
Tables
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
12
|
||||||
|
|
||||||
@title
|
@title
|
||||||
12 Quelltext-Listings
|
Quelltext-Listings
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
12
|
||||||
|
|
||||||
@title
|
@title
|
||||||
12 Source code listings
|
Source code listings
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
13
|
||||||
|
|
||||||
@title
|
@title
|
||||||
13 Referenzen und Fußnoten
|
Referenzen und Fußnoten
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
13
|
||||||
|
|
||||||
@title
|
@title
|
||||||
13 References and footnotes
|
References and footnotes
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
14
|
||||||
|
|
||||||
@title
|
@title
|
||||||
14 Literatur­verwaltung
|
Literatur­verwaltung
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
14
|
||||||
|
|
||||||
@title
|
@title
|
||||||
14 Reference management
|
Reference management
|
||||||
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
15
|
||||||
|
|
||||||
@title
|
@title
|
||||||
15 Paket in Sicht!
|
Paket in Sicht!
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
15
|
||||||
|
|
||||||
@title
|
@title
|
||||||
15 Package in sight!
|
Package in sight!
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
16
|
||||||
|
|
||||||
@title
|
@title
|
||||||
16 Hilfe und Informationen
|
Hilfe und Informationen
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,10 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
16
|
||||||
|
|
||||||
@title
|
@title
|
||||||
16 Getting help and information
|
Getting help and information
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
@title
|
@number
|
||||||
0 Technik-Vorbereitung
|
0
|
||||||
|
|
||||||
|
@title
|
||||||
|
Technik-Vorbereitung
|
||||||
|
|
||||||
@content
|
|
||||||
TEST TEST
|
|
||||||
|
|
||||||
@slide(layout=content-only)
|
@slide(layout=content-only)
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,8 @@
|
|||||||
@slide(layout=chapter-slide)
|
@slide(layout=chapter-slide)
|
||||||
|
|
||||||
|
@number
|
||||||
|
0
|
||||||
|
|
||||||
@title
|
@title
|
||||||
First steps with L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X
|
First steps with L<sup style="font-weight: bold; font-size: 73%; margin-left: -.25em; margin-right: -.05em; position: relative; top: .2em">A</sup>T<sub style="font-size: 100%; margin-left: -.1em">E</sub>X
|
||||||
|
|
||||||
@ -113,8 +116,9 @@ Passing the flag ``--shell-escape`` to your compiler can be a potential security
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
@slide(layout=content-and-preview)
|
@slide(layout=content-and-preview)
|
||||||
|
|
||||||
@title
|
@title
|
||||||
0 Change the listings mode
|
Change the listings mode
|
||||||
|
|
||||||
@content
|
@content
|
||||||
In order to compile the script using `minted`, the listings mode has to be changed.
|
In order to compile the script using `minted`, the listings mode has to be changed.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user