new article
This commit is contained in:
parent
c22214b665
commit
f7ccf4bb87
10 changed files with 209 additions and 15 deletions
2
Makefile
2
Makefile
|
|
@ -17,7 +17,7 @@ article_list := articles.json
|
||||||
# article targets
|
# article targets
|
||||||
articles := $(patsubst %.md,%.html,$(wildcard articles/*.md))
|
articles := $(patsubst %.md,%.html,$(wildcard articles/*.md))
|
||||||
|
|
||||||
all: clean index.html about.html
|
all: index.html about.html
|
||||||
|
|
||||||
install:
|
install:
|
||||||
cp -r index.html about.html $(articles) $(style) $(images) $(INSTALLDIR); \
|
cp -r index.html about.html $(articles) $(style) $(images) $(INSTALLDIR); \
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,15 @@
|
||||||
{
|
{
|
||||||
"articles": [
|
"articles": [
|
||||||
{
|
{
|
||||||
"author": "Never Gude",
|
"author": "Never",
|
||||||
|
"date": "9.1.2026",
|
||||||
|
"subtitle": "Some unintuitive quirks of Latex",
|
||||||
|
"summary": "Latex undoubtedly has some quirks. Some of them have a rather unintuitive solution. In this article I cover some quirks and solutions I have encountered.",
|
||||||
|
"title": "Latex Endeavors",
|
||||||
|
"filename": "latex-endeavors.html"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"author": "Never",
|
||||||
"date": "25.7.2025",
|
"date": "25.7.2025",
|
||||||
"subtitle": "Neat things I picked up along the way",
|
"subtitle": "Neat things I picked up along the way",
|
||||||
"summary": "Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.",
|
"summary": "Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.",
|
||||||
|
|
|
||||||
79
articles/latex-endeavors.html
Normal file
79
articles/latex-endeavors.html
Normal file
|
|
@ -0,0 +1,79 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="generator" content="pandoc" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||||
|
<meta name="author" content="Never" />
|
||||||
|
<title>Latex Endeavors</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="pandoc/favicon.png">
|
||||||
|
<style>
|
||||||
|
code{white-space: pre-wrap;}
|
||||||
|
span.smallcaps{font-variant: small-caps;}
|
||||||
|
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||||
|
div.column{flex: auto; overflow-x: auto;}
|
||||||
|
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||||
|
/* The extra [class] is a hack that increases specificity enough to
|
||||||
|
override a similar rule in reveal.js */
|
||||||
|
ul.task-list[class]{list-style: none;}
|
||||||
|
ul.task-list li input[type="checkbox"] {
|
||||||
|
font-size: inherit;
|
||||||
|
width: 0.8em;
|
||||||
|
margin: 0 0.8em 0.2em -1.6em;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<link rel="stylesheet" href="style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header id="page-header">
|
||||||
|
<ul>
|
||||||
|
<li><a href="index.html">Home</a></li><li><a href="about.html">About</a></li>
|
||||||
|
</ul>
|
||||||
|
<!--
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<span id="dark-mode">
|
||||||
|
<input id="dark-mode-toggle" type="checkbox"><label for="dark-mode-toggle">Dark mode</label>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
-->
|
||||||
|
</header>
|
||||||
|
<header id="title-block-header">
|
||||||
|
<h1 class="title">Latex Endeavors</h1>
|
||||||
|
<p class="subtitle">Some unintuitive quirks of Latex</p>
|
||||||
|
<p class="author">Never</p>
|
||||||
|
<p class="date">9.1.2026</p>
|
||||||
|
</header>
|
||||||
|
<section id="content">
|
||||||
|
<nav id="TOC" role="doc-toc">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#biblatex-and-biber" id="toc-biblatex-and-biber">BibLaTeX
|
||||||
|
and Biber</a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#biber-doesnt-run" id="toc-biber-doesnt-run">Biber doesn’t
|
||||||
|
run</a></li>
|
||||||
|
</ul></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<article>
|
||||||
|
<h1 id="biblatex-and-biber">BibLaTeX and Biber</h1>
|
||||||
|
<h2 id="biber-doesnt-run">Biber doesn’t run</h2>
|
||||||
|
<p>Biber doens’t run if the (fedora) package
|
||||||
|
<code>libxcrypt-compat</code> is missing. It will fail with the error
|
||||||
|
message</p>
|
||||||
|
<pre><code>biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory</code></pre>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<footer id="page-footer">
|
||||||
|
<!-- <embed type="text/html" src="https://cups.teabucket.eu/embed?from=never" style="width:320px; height: 120px; scale: 0.66;"> -->
|
||||||
|
<p class="cups-light">
|
||||||
|
<a href="https://cups.teabucket.eu/prev?from=never" target="_parent"><img alt="Previous" src="images/cups_left.svg" width="30" height="30/"></a>
|
||||||
|
<a href="https://cups.teabucket.eu/" target="_parent"><img alt="CUPS" src="images/cups_logo.svg" width="120" height="60/"></a>
|
||||||
|
<a href="https://cups.teabucket.eu/next?from=never" target="_parent"><img alt="Next" src="images/cups_right.svg" width="30" height="30/"></a>
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
16
articles/latex-endeavors.md
Normal file
16
articles/latex-endeavors.md
Normal file
|
|
@ -0,0 +1,16 @@
|
||||||
|
---
|
||||||
|
title: Latex Endeavors
|
||||||
|
subtitle: Some unintuitive quirks of Latex
|
||||||
|
author: Never
|
||||||
|
date: 9.1.2026
|
||||||
|
summary: Latex undoubtedly has some quirks. Some of them have a rather unintuitive solution.
|
||||||
|
In this article I cover some quirks and solutions I have encountered.
|
||||||
|
---
|
||||||
|
|
||||||
|
# BibLaTeX and Biber
|
||||||
|
## Biber doesn't run
|
||||||
|
Biber doens't run if the (fedora) package `libxcrypt-compat` is missing.
|
||||||
|
It will fail with the error message
|
||||||
|
```
|
||||||
|
biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory
|
||||||
|
```
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="generator" content="pandoc" />
|
<meta name="generator" content="pandoc" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||||
<meta name="author" content="Never Gude" />
|
<meta name="author" content="Never" />
|
||||||
<title>Random linux utilities</title>
|
<title>Random linux utilities</title>
|
||||||
<link rel="icon" type="image/x-icon" href="pandoc/favicon.png">
|
<link rel="icon" type="image/x-icon" href="pandoc/favicon.png">
|
||||||
<style>
|
<style>
|
||||||
|
|
@ -107,7 +107,7 @@
|
||||||
<header id="title-block-header">
|
<header id="title-block-header">
|
||||||
<h1 class="title">Random linux utilities</h1>
|
<h1 class="title">Random linux utilities</h1>
|
||||||
<p class="subtitle">Neat things I picked up along the way</p>
|
<p class="subtitle">Neat things I picked up along the way</p>
|
||||||
<p class="author">Never Gude</p>
|
<p class="author">Never</p>
|
||||||
<p class="date">25.7.2025</p>
|
<p class="date">25.7.2025</p>
|
||||||
</header>
|
</header>
|
||||||
<section id="content">
|
<section id="content">
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
title: Random linux utilities
|
title: Random linux utilities
|
||||||
subtitle: Neat things I picked up along the way
|
subtitle: Neat things I picked up along the way
|
||||||
author: Never Gude
|
author: Never
|
||||||
date: 25.7.2025
|
date: 25.7.2025
|
||||||
summary: Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.
|
summary: Tricks and tools I learned about, while tweaking my Linux sytem or trying to do productive things.
|
||||||
---
|
---
|
||||||
|
|
|
||||||
13
index.html
13
index.html
|
|
@ -53,10 +53,21 @@
|
||||||
<h2>Articles</h2>
|
<h2>Articles</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
|
<div class="articles-header">
|
||||||
|
<a href="latex-endeavors.html" class="articles-title">Latex
|
||||||
|
Endeavors</a>
|
||||||
|
<p class="articles-author"><em>Never</em></p>
|
||||||
|
</div>
|
||||||
|
<p class="articles-summary">Latex undoubtedly has some quirks. Some of
|
||||||
|
them have a rather unintuitive solution. In this article I cover some
|
||||||
|
quirks and solutions I have encountered.</p>
|
||||||
|
<p class="articles-date">9.1.2026</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
<div class="articles-header">
|
<div class="articles-header">
|
||||||
<a href="random-linux-utils.html" class="articles-title">Random linux
|
<a href="random-linux-utils.html" class="articles-title">Random linux
|
||||||
utilities</a>
|
utilities</a>
|
||||||
<p class="articles-author"><em>Never Gude</em></p>
|
<p class="articles-author"><em>Never</em></p>
|
||||||
</div>
|
</div>
|
||||||
<p class="articles-summary">Tricks and tools I learned about, while
|
<p class="articles-summary">Tricks and tools I learned about, while
|
||||||
tweaking my Linux sytem or trying to do productive things.</p>
|
tweaking my Linux sytem or trying to do productive things.</p>
|
||||||
|
|
|
||||||
|
|
@ -54,19 +54,20 @@
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<div class="articles-header">
|
<div class="articles-header">
|
||||||
<a href="random-linux-utils-2.html" class="articles-title">Random linux
|
<a href="latex-endeavors.html" class="articles-title">Latex
|
||||||
utilities 2</a>
|
Endeavors</a>
|
||||||
<p class="articles-author"><em>Never Gude</em></p>
|
<p class="articles-author"><em>Never</em></p>
|
||||||
</div>
|
</div>
|
||||||
<p class="articles-summary">Tricks and tools I learned about, while
|
<p class="articles-summary">Latex undoubtedly has some quirks. Some of
|
||||||
tweaking my Linux sytem or trying to do productive things.</p>
|
them have a rather unintuitive solution. In this article I cover some
|
||||||
<p class="articles-date">4.1.2026</p>
|
quirks and solutions I have encountered.</p>
|
||||||
|
<p class="articles-date">9.1.2026</p>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<div class="articles-header">
|
<div class="articles-header">
|
||||||
<a href="random-linux-utils.html" class="articles-title">Random linux
|
<a href="random-linux-utils.html" class="articles-title">Random linux
|
||||||
utilities</a>
|
utilities</a>
|
||||||
<p class="articles-author"><em>Never Gude</em></p>
|
<p class="articles-author"><em>Never</em></p>
|
||||||
</div>
|
</div>
|
||||||
<p class="articles-summary">Tricks and tools I learned about, while
|
<p class="articles-summary">Tricks and tools I learned about, while
|
||||||
tweaking my Linux sytem or trying to do productive things.</p>
|
tweaking my Linux sytem or trying to do productive things.</p>
|
||||||
|
|
|
||||||
79
public_html/eh/eh/eh/eh-eh/latex-endeavors.html
Normal file
79
public_html/eh/eh/eh/eh-eh/latex-endeavors.html
Normal file
|
|
@ -0,0 +1,79 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="generator" content="pandoc" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||||
|
<meta name="author" content="Never" />
|
||||||
|
<title>Latex Endeavors</title>
|
||||||
|
<link rel="icon" type="image/x-icon" href="pandoc/favicon.png">
|
||||||
|
<style>
|
||||||
|
code{white-space: pre-wrap;}
|
||||||
|
span.smallcaps{font-variant: small-caps;}
|
||||||
|
div.columns{display: flex; gap: min(4vw, 1.5em);}
|
||||||
|
div.column{flex: auto; overflow-x: auto;}
|
||||||
|
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
|
||||||
|
/* The extra [class] is a hack that increases specificity enough to
|
||||||
|
override a similar rule in reveal.js */
|
||||||
|
ul.task-list[class]{list-style: none;}
|
||||||
|
ul.task-list li input[type="checkbox"] {
|
||||||
|
font-size: inherit;
|
||||||
|
width: 0.8em;
|
||||||
|
margin: 0 0.8em 0.2em -1.6em;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
<link rel="stylesheet" href="style.css" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<header id="page-header">
|
||||||
|
<ul>
|
||||||
|
<li><a href="index.html">Home</a></li><li><a href="about.html">About</a></li>
|
||||||
|
</ul>
|
||||||
|
<!--
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<span id="dark-mode">
|
||||||
|
<input id="dark-mode-toggle" type="checkbox"><label for="dark-mode-toggle">Dark mode</label>
|
||||||
|
</span>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
-->
|
||||||
|
</header>
|
||||||
|
<header id="title-block-header">
|
||||||
|
<h1 class="title">Latex Endeavors</h1>
|
||||||
|
<p class="subtitle">Some unintuitive quirks of Latex</p>
|
||||||
|
<p class="author">Never</p>
|
||||||
|
<p class="date">9.1.2026</p>
|
||||||
|
</header>
|
||||||
|
<section id="content">
|
||||||
|
<nav id="TOC" role="doc-toc">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#biblatex-and-biber" id="toc-biblatex-and-biber">BibLaTeX
|
||||||
|
and Biber</a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#biber-doesnt-run" id="toc-biber-doesnt-run">Biber doesn’t
|
||||||
|
run</a></li>
|
||||||
|
</ul></li>
|
||||||
|
</ul>
|
||||||
|
</nav>
|
||||||
|
<article>
|
||||||
|
<h1 id="biblatex-and-biber">BibLaTeX and Biber</h1>
|
||||||
|
<h2 id="biber-doesnt-run">Biber doesn’t run</h2>
|
||||||
|
<p>Biber doens’t run if the (fedora) package
|
||||||
|
<code>libxcrypt-compat</code> is missing. It will fail with the error
|
||||||
|
message</p>
|
||||||
|
<pre><code>biber: error while loading shared libraries: libcrypt.so.1: cannot open shared object file: No such file or directory</code></pre>
|
||||||
|
</article>
|
||||||
|
|
||||||
|
</section>
|
||||||
|
<footer id="page-footer">
|
||||||
|
<!-- <embed type="text/html" src="https://cups.teabucket.eu/embed?from=never" style="width:320px; height: 120px; scale: 0.66;"> -->
|
||||||
|
<p class="cups-light">
|
||||||
|
<a href="https://cups.teabucket.eu/prev?from=never" target="_parent"><img alt="Previous" src="images/cups_left.svg" width="30" height="30/"></a>
|
||||||
|
<a href="https://cups.teabucket.eu/" target="_parent"><img alt="CUPS" src="images/cups_logo.svg" width="120" height="60/"></a>
|
||||||
|
<a href="https://cups.teabucket.eu/next?from=never" target="_parent"><img alt="Next" src="images/cups_right.svg" width="30" height="30/"></a>
|
||||||
|
</p>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
|
@ -4,7 +4,7 @@
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta name="generator" content="pandoc" />
|
<meta name="generator" content="pandoc" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
|
||||||
<meta name="author" content="Never Gude" />
|
<meta name="author" content="Never" />
|
||||||
<title>Random linux utilities</title>
|
<title>Random linux utilities</title>
|
||||||
<link rel="icon" type="image/x-icon" href="pandoc/favicon.png">
|
<link rel="icon" type="image/x-icon" href="pandoc/favicon.png">
|
||||||
<style>
|
<style>
|
||||||
|
|
@ -107,7 +107,7 @@
|
||||||
<header id="title-block-header">
|
<header id="title-block-header">
|
||||||
<h1 class="title">Random linux utilities</h1>
|
<h1 class="title">Random linux utilities</h1>
|
||||||
<p class="subtitle">Neat things I picked up along the way</p>
|
<p class="subtitle">Neat things I picked up along the way</p>
|
||||||
<p class="author">Never Gude</p>
|
<p class="author">Never</p>
|
||||||
<p class="date">25.7.2025</p>
|
<p class="date">25.7.2025</p>
|
||||||
</header>
|
</header>
|
||||||
<section id="content">
|
<section id="content">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue