Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix pdftex compilation of greek letters |
|---|---|
| Timelines: | family | ancestors | show | trunk |
| Files: | files | file ages | folders |
| SHA1: |
4b27ade551a906ee986f269a3ba8b880 |
| User & Date: | vitus 2026-01-09 06:56:48.906 |
Context
|
2026-01-09
| ||
| 06:56 | Fix pdftex compilation of greek letters Leaf check-in: 4b27ade551 user: vitus tags: show, trunk | |
|
2026-01-05
| ||
| 06:13 | queen.fb2 made valid fb2 check-in: 95df04c05a user: vitus tags: show, trunk | |
Changes
Changes to Makefile.
| ︙ | ︙ | |||
58 59 60 61 62 63 64 |
queen.epub: queen.mkd
echo '<dc:identifier id="bookId">urn:uuid:${QUEEN_UUID}</dc:identifier>' > metadata-tmp.xml
echo '<dc:subject>Science Fiction</dc:subject>' >> metadata-tmp.xml
echo '<dc:rights>Creative Commons Attribution-NonCommercial-ShareAlike</dc:rights>' >> metadata-tmp.xml
echo '<dc:source>${SRC_URL}</dc:source>' >> metadata-tmp.xml
echo "<dc:date>`date +%Y-%m-%d`</dc:date>">> metadata-tmp.xml
| | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
queen.epub: queen.mkd
echo '<dc:identifier id="bookId">urn:uuid:${QUEEN_UUID}</dc:identifier>' > metadata-tmp.xml
echo '<dc:subject>Science Fiction</dc:subject>' >> metadata-tmp.xml
echo '<dc:rights>Creative Commons Attribution-NonCommercial-ShareAlike</dc:rights>' >> metadata-tmp.xml
echo '<dc:source>${SRC_URL}</dc:source>' >> metadata-tmp.xml
echo "<dc:date>`date +%Y-%m-%d`</dc:date>">> metadata-tmp.xml
pandoc -t epub -s --epub-metadata=metadata-tmp.xml --epub-cover-image=queen-cover.jpg -V date=`date +%x` -o $@ $<
onefile.tex: joinfiles.awk spacians.tex $(wildcard *.txt)
awk -f joinfiles.awk spacians.tex > $@
clean:
rm -f $(TEXFILES) onefile.tex spacians.fb2 metadata-tmp.xml
|
Changes to spacians.tex.
1 2 |
\documentclass[11pt,openany]{book}
\usepackage[papersize={140mm,200mm},top=12mm,bottom=18mm,inner=14mm,outer=16mm]{geometry}
| < < > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
\documentclass[11pt,openany]{book}
\usepackage[papersize={140mm,200mm},top=12mm,bottom=18mm,inner=14mm,outer=16mm]{geometry}
\usepackage[utf8x]{inputenc}
\usepackage[T1,T2A]{fontenc}
\usepackage[english,german,swedish,icelandic,russian]{babel}
\usepackage{textcomp}
\usepackage{cmap}
\usepackage[pdftex,colorlinks=true,linkcolor=blue,unicode=true]{hyperref}
\author{В. Вагнер \and И. Емельянова}
\title{Дети пространства}
\usepackage{cmap}
\usepackage{newunicodechar}
\newunicodechar{α}{$\alpha$}
\newunicodechar{β}{$\alpha$}
\newunicodechar{η}{$\eta$}
\newunicodechar{μ}{$\mu$}
%\topmargin=-15mm
%\oddsidemargin=-7mm
%\evensidemargin=-7mm
%\textwidth=115mm
%\textheight=167mm
\newcommand{\stars}{\par\begin{center}
*\hspace{1cm}*\hspace{1cm}*
|
| ︙ | ︙ |