Search found 9 matches

by PulpFan
Wed Aug 14, 2019 10:29 am
Forum: Page Layout
Topic: Custom Cover Page
Replies: 1
Views: 4738

Custom Cover Page

Solved this by adding

Code: Select all

\begin{pgfpicture}{0cm}{0cm}{1cm}{1cm}
\end{pgfpicture}
So there's a transparent box on the page and it doesn't need text to use the \AddToShipoutPicture*{} and the manually placed textblock areas.
by PulpFan
Wed Aug 14, 2019 10:25 am
Forum: Page Layout
Topic: [KOMA-script] Chapter in header twoside vs oneside
Replies: 3
Views: 6819

[KOMA-script] Chapter in header twoside vs oneside

Thank you, it worked.
by PulpFan
Wed Aug 14, 2019 10:22 am
Forum: Page Layout
Topic: [KOMA-script] Chapter in header twoside vs oneside
Replies: 3
Views: 6819

[KOMA-script] Chapter in header twoside vs oneside

The problem is I want the twoside and oneside to be identical except the use of colored links and the margins. They aren't identical if the page headers differ. Only reason I'm making a single sided version is digital distribution, it's annoying in PDF viewers when the margin flips which side is ...
by PulpFan
Wed Aug 14, 2019 7:57 am
Forum: Page Layout
Topic: [KOMA-script] Chapter in header twoside vs oneside
Replies: 3
Views: 6819

[KOMA-script] Chapter in header twoside vs oneside

Nutshell I am producing two versions of document (magazine) - twoside that is monochrome/grayscale except for cover art, it has colorlinks but they are defined to black. This is version that will go to print shop.

oneside is for digital distribution. It has linkcolor and urlcolor set so where there ...
by PulpFan
Tue Aug 13, 2019 2:36 am
Forum: Fonts & Character Sets
Topic: Installing a Type 1 font
Replies: 1
Views: 2341

Installing a Type 1 font

Oh - TeXLive 2016 with pdflatex on Linux
by PulpFan
Tue Aug 13, 2019 2:30 am
Forum: Fonts & Character Sets
Topic: Installing a Type 1 font
Replies: 1
Views: 2341

Installing a Type 1 font

The pfb file: opticharteroak.pfb
The afm file: opticharteroak.afm

I used the font name fco8a.afm and fco8a.pfb as shown here:

#!/bin/bash

rm -rf files && mkdir files

cp opticharteroak.afm files/fcor8a.afm
cp opticharteroak.pfb files/fcor8a.pfb

cd files

cat <<EOF > fco-drv.tex
\input fontinst ...
by PulpFan
Sun Aug 11, 2019 1:42 pm
Forum: Page Layout
Topic: Custom Cover Page
Replies: 1
Views: 4738

Custom Cover Page

I am not using \maketitle, I am using the following code:

% image for title page
\usepackage{eso-pic}
\usepackage[absolute,overlay]{textpos}
\newcommand\CoverPage{%
\put(0,0){%
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight ...
by PulpFan
Thu Aug 08, 2019 8:36 pm
Forum: Page Layout
Topic: [koma-script] Image on left page with new chapter
Replies: 1
Views: 3774

[koma-script] Image on left page with new chapter

The openany option to \documentclass{} seems to do what I want.
by PulpFan
Thu Aug 08, 2019 8:14 pm
Forum: Page Layout
Topic: [koma-script] Image on left page with new chapter
Replies: 1
Views: 3774

[koma-script] Image on left page with new chapter

Hello,

I am in the process of creating a retro pulp style magazine, following many of the type-setting conventions I see in older pulp magazines (with some artistic freedom).

It's a two-sided layout, and very often they have a full page image on the page opposite the side the story starts on. I'm ...