Update of the flyer. Now 2 layouts are available: the default one using
Beastie and a new one using the FreeBSD Logo. The selection of the layout is done in the flyer.tex file via a boolean variable, by default the Beastie layout is enabled. Rendered files are available at: http://people.freebsd.org/~blackend/flyer.pdf http://people.freebsd.org/~blackend/flyer-logo.pdf
This commit is contained in:
parent
cb991fbcef
commit
7ab1632d03
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/head/; revision=27826
3 changed files with 54 additions and 17 deletions
|
@ -8,7 +8,10 @@ ps: dvi
|
||||||
dvips -t a4 flyer.dvi -o
|
dvips -t a4 flyer.dvi -o
|
||||||
|
|
||||||
dvi: flyer.tex
|
dvi: flyer.tex
|
||||||
|
pngtopnm -mix ../../share/images/flyer/logo-full.png | \
|
||||||
|
pnmtops -noturn > logo-full.eps
|
||||||
latex flyer.tex
|
latex flyer.tex
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f flyer.aux flyer.dvi flyer.log flyer.pdf flyer.ps
|
rm -f flyer.aux flyer.dvi flyer.log flyer.pdf flyer.ps \
|
||||||
|
logo-full.eps
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
% Copyright (c) 2004 Marc Fonvieille
|
% Copyright (c) 2004-2006 Marc Fonvieille
|
||||||
% All rights reserved.
|
% All rights reserved.
|
||||||
%
|
%
|
||||||
% Redistribution and use in source and binary forms, with or without
|
% Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -26,6 +26,9 @@
|
||||||
%
|
%
|
||||||
% FreeBSD Flyer
|
% FreeBSD Flyer
|
||||||
% Use make FORMAT (with FORMAT: pdf, ps or dvi) to build the flyer.
|
% Use make FORMAT (with FORMAT: pdf, ps or dvi) to build the flyer.
|
||||||
|
% Two layouts are available: one using Beastie the other one using the
|
||||||
|
% FreeBSD Logo. The layout selection is done below via the value of
|
||||||
|
% the \logo variable. By default the Beastie layout is enabled.
|
||||||
%
|
%
|
||||||
\documentclass[11pt]{article}
|
\documentclass[11pt]{article}
|
||||||
\usepackage[T1]{fontenc}
|
\usepackage[T1]{fontenc}
|
||||||
|
@ -38,22 +41,34 @@
|
||||||
\usepackage{url}
|
\usepackage{url}
|
||||||
% Use the right papersize, do not forget to change also the Makefile
|
% Use the right papersize, do not forget to change also the Makefile
|
||||||
\usepackage[verbose,a4paper,noheadfoot,margin=1cm]{geometry}
|
\usepackage[verbose,a4paper,noheadfoot,margin=1cm]{geometry}
|
||||||
|
|
||||||
|
\usepackage{ifthen}
|
||||||
|
% Use of the Logo (set the \logo variable below to true) or Beastie
|
||||||
|
% (\logo variable set to false).
|
||||||
|
\newcommand{\logo}{false}
|
||||||
|
|
||||||
% Colors settings
|
% Colors settings
|
||||||
\usepackage{color}
|
\usepackage{color}
|
||||||
|
\ifthenelse{\equal{\logo}{true}}{
|
||||||
|
\definecolor{bkgrdtitle}{rgb}{.69,0,0}
|
||||||
|
\definecolor{redtitle}{rgb}{.65,.16,.22}
|
||||||
|
\definecolor{ovalboxcolor}{rgb}{.69,0,0}
|
||||||
|
}
|
||||||
|
{
|
||||||
\definecolor{bkgrdtitle}{rgb}{1,.84,.22}
|
\definecolor{bkgrdtitle}{rgb}{1,.84,.22}
|
||||||
%\definecolor{bkgrdtitle}{rgb}{1,.81,.3}
|
|
||||||
%\definecolor{bkgrdtitle}{rgb}{1,.87,.32}
|
|
||||||
%\definecolor{redtitle}{rgb}{.82,0,0}
|
|
||||||
%\definecolor{redtitle}{rgb}{.7,.7,.9}
|
|
||||||
%\definecolor{redtitle}{rgb}{.6,0,0}
|
|
||||||
%\definecolor{redtitle}{rgb}{.4,0,0}
|
|
||||||
\definecolor{redtitle}{rgb}{.65,.16,.22}
|
\definecolor{redtitle}{rgb}{.65,.16,.22}
|
||||||
\definecolor{ovalboxcolor}{rgb}{.65,.16,.22}
|
\definecolor{ovalboxcolor}{rgb}{.65,.16,.22}
|
||||||
|
}
|
||||||
|
|
||||||
% Some macros
|
% Some macros
|
||||||
|
\ifthenelse{\equal{\logo}{true}}{
|
||||||
|
\newcommand{\titledframe}[3]{%
|
||||||
|
\boxput*(0,1){\colorbox{bkgrdtitle}{\color{white} \large{\textbf{\textsf{#1}}}}} {\setlength {\fboxsep}{12pt} \color{ovalboxcolor}\Ovalbox {\color{black}\begin{minipage}{#3}#2\end{minipage}}}
|
||||||
|
}}
|
||||||
|
{
|
||||||
\newcommand{\titledframe}[3]{%
|
\newcommand{\titledframe}[3]{%
|
||||||
\boxput*(0,1){\colorbox{bkgrdtitle}{\color{black} \large{\textbf{\textsf{#1}}}}} {\setlength {\fboxsep}{12pt} \color{ovalboxcolor}\Ovalbox {\color{black}\begin{minipage}{#3}#2\end{minipage}}}
|
\boxput*(0,1){\colorbox{bkgrdtitle}{\color{black} \large{\textbf{\textsf{#1}}}}} {\setlength {\fboxsep}{12pt} \color{ovalboxcolor}\Ovalbox {\color{black}\begin{minipage}{#3}#2\end{minipage}}}
|
||||||
}
|
}}
|
||||||
|
|
||||||
\newcommand{\reg}{$^{\mbox{\tiny \textregistered}}$}
|
\newcommand{\reg}{$^{\mbox{\tiny \textregistered}}$}
|
||||||
\newcommand{\tm}{$^{\mbox{\tiny TM}}$}
|
\newcommand{\tm}{$^{\mbox{\tiny TM}}$}
|
||||||
|
@ -72,13 +87,23 @@
|
||||||
\begin{document}
|
\begin{document}
|
||||||
|
|
||||||
\begin{center}
|
\begin{center}
|
||||||
|
\ifthenelse{\equal{\logo}{true}}{
|
||||||
|
\includegraphics[scale=0.5]{logo-full.eps}
|
||||||
|
\vspace{1mm}
|
||||||
|
}
|
||||||
|
{
|
||||||
\fontsize{40}{36}\selectfont
|
\fontsize{40}{36}\selectfont
|
||||||
{\color{redtitle} \textrm{\textbf{FreeBSD}}}
|
{\color{redtitle} \textrm{\textbf{FreeBSD}}}\medskip}
|
||||||
\end{center}
|
\end{center}
|
||||||
%\vspace{2mm}
|
%\vspace{2mm}
|
||||||
|
|
||||||
% Main part
|
% Main part
|
||||||
\begin{center}
|
\begin{center}
|
||||||
|
\ifthenelse{\equal{\logo}{true}}{
|
||||||
|
\newcommand{\size}{17.3cm}
|
||||||
|
}
|
||||||
|
{\newcommand{\size}{12.7cm}}
|
||||||
|
|
||||||
\titledframe{What is FreeBSD?}{
|
\titledframe{What is FreeBSD?}{
|
||||||
FreeBSD is an advanced operating system for x86 compatible (including
|
FreeBSD is an advanced operating system for x86 compatible (including
|
||||||
Pentium\reg and Athlon\tm), amd64 compatible (including Opteron\tm,
|
Pentium\reg and Athlon\tm), amd64 compatible (including Opteron\tm,
|
||||||
|
@ -88,12 +113,15 @@ currently being ported to PowerPC\reg and ARM\reg architectures.
|
||||||
|
|
||||||
FreeBSD is derived from BSD, the version of UNIX\reg
|
FreeBSD is derived from BSD, the version of UNIX\reg
|
||||||
developed at the University of California, Berkeley.
|
developed at the University of California, Berkeley.
|
||||||
}{12.7cm}
|
}{\size}
|
||||||
|
\ifthenelse{\equal{\logo}{false}}{
|
||||||
\begin{minipage}{4cm}
|
\begin{minipage}{4cm}
|
||||||
\includegraphics[scale=0.3]{../../share/images/flyer/beastie.eps}
|
\includegraphics[scale=0.3]{../../share/images/flyer/beastie.eps}
|
||||||
\end{minipage}
|
\end{minipage}
|
||||||
|
}
|
||||||
|
|
||||||
\vspace{1mm}
|
\ifthenelse{\equal{\logo}{true}}{
|
||||||
|
\vspace{5mm}}{\vspace{3mm}}
|
||||||
|
|
||||||
\titledframe{Cutting edge features}{
|
\titledframe{Cutting edge features}{
|
||||||
FreeBSD offers advanced networking, performance, security and
|
FreeBSD offers advanced networking, performance, security and
|
||||||
|
@ -108,19 +136,21 @@ FreeBSD makes an ideal Internet or Intranet server. It provides robust
|
||||||
network services under the heaviest loads and uses memory efficiently
|
network services under the heaviest loads and uses memory efficiently
|
||||||
to maintain good response times for thousands of simultaneous user
|
to maintain good response times for thousands of simultaneous user
|
||||||
processes.
|
processes.
|
||||||
}{11cm}
|
}{11.12cm}
|
||||||
|
|
||||||
\vspace{5mm}
|
\vspace{5mm}
|
||||||
|
|
||||||
\titledframe{Run a huge number of applications!}{
|
\titledframe{Run a huge number of applications!}{
|
||||||
FreeBSD comes with over 13000 third party software packages
|
FreeBSD comes with over 13000 third party software packages
|
||||||
ready to be installed including: Apache, Samba, MySQL\reg,
|
ready to be installed including: Apache, Samba, MySQL\reg,
|
||||||
OpenOffice.org, KDE, GNOME, MPlayer, etc.\\
|
OpenOffice.org, KDE, GNOME, MPlayer, etc.
|
||||||
|
\medskip
|
||||||
|
|
||||||
FreeBSD provides the ports system which fetches sources
|
FreeBSD provides the ports system which fetches sources
|
||||||
from the Internet or from a CD-ROM and compiles binaries, including
|
from the Internet or from a CD-ROM and compiles binaries, including
|
||||||
building and installing any dependencies. All these operations are
|
building and installing any dependencies. All these operations are
|
||||||
done in a transparent way for the user.\\
|
done in a transparent way for the user.
|
||||||
|
\medskip
|
||||||
|
|
||||||
Most of GNU/Linux binaries run under FreeBSD, for example:
|
Most of GNU/Linux binaries run under FreeBSD, for example:
|
||||||
Acrobat Reader\reg, Oracle\reg, SAP/R3\reg, Mathematica\reg, Quake3,
|
Acrobat Reader\reg, Oracle\reg, SAP/R3\reg, Mathematica\reg, Quake3,
|
||||||
|
@ -171,11 +201,15 @@ and GNU/Linux.
|
||||||
% Copyrights
|
% Copyrights
|
||||||
\begin{center}
|
\begin{center}
|
||||||
\tiny \copyright 2004-2006 The FreeBSD Project\\
|
\tiny \copyright 2004-2006 The FreeBSD Project\\
|
||||||
FreeBSD is a registered trademark of the FreeBSD Foundation.\\
|
\ifthenelse{\equal{\logo}{true}}{
|
||||||
|
FreeBSD and the FreeBSD Logo are registered trademarks of the FreeBSD
|
||||||
|
Foundation.\\}
|
||||||
|
{FreeBSD is a registered trademark of the FreeBSD Foundation.\\}
|
||||||
All other company and product names may be trademarks of their
|
All other company and product names may be trademarks of their
|
||||||
respective companies.\\
|
respective companies.\\
|
||||||
|
\ifthenelse{\equal{\logo}{false}}{
|
||||||
BSD Daemon, \copyright 1988 by Marshall Kirk McKusick. All Rights
|
BSD Daemon, \copyright 1988 by Marshall Kirk McKusick. All Rights
|
||||||
Reserved.
|
Reserved.}{}
|
||||||
\end{center}
|
\end{center}
|
||||||
|
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
BIN
share/images/flyer/logo-full.png
Normal file
BIN
share/images/flyer/logo-full.png
Normal file
Binary file not shown.
After ![]() (image error) Size: 36 KiB |
Loading…
Reference in a new issue