1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
|
% LuaTeX Japanese version of Gnuplot User Manual title page
% add `[a4paper]' before `{article}' to load settings for A4-paper
\documentclass[twoside]{article}
\usepackage{luatexja}
% \usepackage{fontspec}
% \setmainfont{Noto Sans}
% \setmainfont{Harano Aji Mincho}
% \setmainfont{Sazanami Gothic}
\usepackage{toc_entr}
\usepackage{latexsym}
% \usepackage{textgreek}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{nicefrac}
\usepackage[
hyperindex,
bookmarks,
bookmarksnumbered=true,
pdftitle={gnuplot documentation},
pdfauthor={gnuplot},
pdfsubject={see www.gnuplot.info}
]{hyperref}
% This replaces the default ugly red boxes around hyperlinks
\hypersetup{
colorlinks = true, %Colours links instead of ugly boxes
linkcolor = blue, %Colour of internal links
urlcolor = blue %Colour for external hyperlinks
}
\usepackage{fancyhdr}
\usepackage{makeidx}
\makeindex
\usepackage{longtable}
% This is only needed if you want to embed figures
\input{gpinsetfigure}
% This supposedly discourages section titles from appearing
% alone at the bottom of a page.
\clubpenalty=1000
% \widowpenalty=1000
% The following statements should adjust the default values for
% different papersizes, mainly required for verbatim output.
\setlength{\oddsidemargin}{0.0cm}
\setlength{\evensidemargin}{0.0cm}
\setlength{\topmargin}{-0.5in}
\setlength{\textwidth}{6.50in}
\setlength{\textheight}{9.0in}
\setlength{\parskip}{1ex}
\setlength{\parindent}{0pt}
% For 11pt/12pt options change `\normalsize' to `\small' in
% preverbatim
% every verbatim environment is surrounded by the commands
\newcommand{\preverbatim}{\normalsize\vspace{-2.2ex}}
\newcommand{\postverbatim}{\normalsize\vspace{-0.5ex}}
\adjustarticle
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
%
% Current gnuplot version as a macro
%%
\def\gpVersion{6.0}
\newbox\GpVersion \setbox\GpVersion=\hbox{\gpVersion}
\def\gnuplotVersion{\usebox\GpVersion}
% Layout setup of fancy headings:
\pagestyle{fancy} \headsep=5.5mm \addtolength{\headheight}{7mm}
%\setlength{\headrulewidth}{0.4pt}
\chead{\hyperlink{TableOfContents}{gnuplot \usebox\GpVersion}}
\cfoot{}
\rhead[\leftmark]{\thepage}
\lhead[\thepage]{\leftmark}
\def\gpCX{${_{\mathbb{^C}} }$}
\begin{document}
\sloppy
\thispagestyle{empty}
\rule{0in}{1.0in}
\begin{center}
{\huge\bf {gnuplot \gpVersion}}\\
\vspace{3ex}
{\Large An Interactive Plotting Program}\\
\vspace{2ex}
\large
Thomas Williams \& Colin Kelley\\
\vspace{2ex}
Version
{\gnuplotVersion }
organized by: Ethan A Merritt\\
\vspace{2ex}
Major contributors (alphabetic order):\\
Christoph Bersch,
Hans-Bernhard Bröker,\\
John Campbell,
Robert Cunningham,\\
David Denholm,
Gershon Elber,\\
Roger Fearick,
Carsten Grammes,\\
Lucas Hart,
Lars Hecking,
Péter Juhász,\\
Thomas Koenig,
David Kotz,
Ed Kubaitis,\\
Russell Lang,
Timothée Lecomte,\\
Alexander Lehmann,
Jérôme Lodewyck,\\
Alexander Mai,
Bastian Märkisch,
Tatsuro Matsuoka, \\
Ethan A Merritt,
Petr Mikulík,
Hiroki Motoyoshi, \\
Daniel Sebald,
Carsten Steger,
Shigeharu Takeno,\\
Tom Tkacik,
Jos Van der Woude,\\
James R. Van Zandt,
Alex Woo,
Johannes Zellner\\
Copyright {\copyright} 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley\\
Copyright {\copyright} 2004 - 2023 various authors\\
\vspace{2ex}
Mailing list for comments: \verb+gnuplot-info@lists.sourceforge.net+\\
Web site and issue trackers: \verb+http://sourceforge.net/projects/gnuplot+
\vfill
This manual was originally prepared by Dick Crawford \\
Japanese translation supervised by Shigeharu Takeno (竹野 茂治)
\vspace{2ex}
% December 2023 Version 6.0
Version {\gpVersion} (December 2023)
\end{center}
\newpage
\hypertarget{TableOfContents}{}
\tableofcontents
\newpage
|