Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/LaTeXmacros/common.tex

    r79f64f1 ref3b335  
    1111%% Created On       : Sat Apr  9 10:06:17 2016
    1212%% Last Modified By : Peter A. Buhr
    13 %% Last Modified On : Mon Aug  1 09:11:20 2016
    14 %% Update Count     : 225
     13%% Last Modified On : Tue Jul 12 20:37:57 2016
     14%% Update Count     : 206
    1515%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     16
     17%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    1618
    1719\setlength{\textheight}{9in}
    1820%\oddsidemargin 0.0in
    19 \renewcommand{\topfraction}{0.8}                % float must be greater than X of the page before it is forced onto its own page
    20 \renewcommand{\bottomfraction}{0.8}             % float must be greater than X of the page before it is forced onto its own page
     21\renewcommand{\topfraction}{0.8}        % float must be greater than X of the page before it is forced onto its own page
     22\renewcommand{\bottomfraction}{0.8}     % float must be greater than X of the page before it is forced onto its own page
    2123\renewcommand{\floatpagefraction}{0.8}  % float must be greater than X of the page before it is forced onto its own page
    22 \renewcommand{\textfraction}{0.0}               % the entire page maybe devoted to floats with no text on the page at all
    23 
    24 \lefthyphenmin=4                                                % hyphen only after 4 characters
     24\renewcommand{\textfraction}{0.0}       % the entire page maybe devoted to floats with no text on the page at all
     25
     26\lefthyphenmin=4
    2527\righthyphenmin=4
    2628
     
    3638% Names used in the document.
    3739
    38 \newcommand{\CFA}{C$\mathbf\forall$\xspace} % set language symbolic name
    39 \newcommand{\CFL}{Cforall\xspace}               % set language text name
     40\newcommand{\CFA}{C$\mathbf\forall$\xspace}              % set language symbolic name
     41\newcommand{\CFL}{Cforall\xspace}                        % set language text name
    4042\newcommand{\CC}{\rm C\kern-.1em\hbox{+\kern-.25em+}\xspace} % CC symbolic name
    4143\newcommand{\CCeleven}{\rm C\kern-.1em\hbox{+\kern-.25em+}11\xspace} % C++11 symbolic name
    42 \def\c11{ISO/IEC C}                                             % C11 name (cannot have numbers in latex command name)
     44\def\c11{ISO/IEC C} % C11 name (cannot have numbers in latex command name)
    4345
    4446%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     
    5052\setlength{\parindentlnth}{\parindent}
    5153
    52 \newlength{\gcolumnposn}                                % temporary hack because lstlisting does handle tabs correctly
     54\newlength{\gcolumnposn}
    5355\newlength{\columnposn}
    5456\setlength{\gcolumnposn}{2.5in}
     
    6163%\patchcmd{\lsthk@TextStyle}{\let\lst@DefEsc\@empty}{}{}{\errmessage{failed to patch}}
    6264
    63 \usepackage{pslatex}                                    % reduce size of san serif font
    64 \usepackage{relsize}                                    % must be after change to small or selects old size
     65\usepackage{pslatex}                                                                    % reduce size of san serif font
     66\usepackage{relsize}                                    % must be after change to small or selects old size
    6567
    6668% reduce size of chapter/section titles
     
    118120
    119121% inline text and lowercase index: \Index{inline and lowercase index text}
     122% inline text and as-in index: \Index[as-is index text]{inline text}
     123% inline text but index with different as-is text: \Index[index text]{inline text}
    120124\newcommand{\Index}{\@ifstar\@sIndex\@Index}
    121 % inline text and as-in index: \Index[as-is index text]{inline text}
    122125\newcommand{\@Index}[2][\@empty]{\lowercase{\def\temp{#2}}#2\ifx#1\@empty\index{\temp}\else\index{#1@{\protect#2}}\fi}
    123 % inline text but index with different as-is text: \Index[index text]{inline text}
    124126\newcommand{\@sIndex}[2][\@empty]{#2\ifx#1\@empty\index{#2}\else\index{#1@{\protect#2}}\fi}
    125127
    126 % inline text and code index (cannot use ©)
     128% cannot use ©
    127129\newcommand{\Indexc}[1]{\lstinline$#1$\index{#1@\lstinline$#1$}}
    128 % code index (cannot use ©)
    129130\newcommand{\indexc}[1]{\index{#1@\lstinline$#1$}}
    130131
     
    136137\newcommand{\@newterm}[2][\@empty]{\lowercase{\def\temp{#2}}{\newtermFontInline{#2}}\ifx#1\@empty\index{\temp}\else\index{#1@{\protect#2}}\fi}
    137138\newcommand{\@snewterm}[2][\@empty]{{\newtermFontInline{#2}}\ifx#1\@empty\index{#2}\else\index{#1@{\protect#2}}\fi}
    138 
    139 % Latin abbreviation
    140 \newcommand{\abbrevFont}{\textit}       % set empty for no italics
    141 \newcommand*{\eg}{%
    142         \@ifnextchar{,}{\abbrevFont{e}.\abbrevFont{g}.}%
    143                 {\@ifnextchar{:}{\abbrevFont{e}.\abbrevFont{g}.}%
    144                         {\abbrevFont{e}.\abbrevFont{g}.,\xspace}}%
    145 }%
    146 \newcommand*{\ie}{%
    147         \@ifnextchar{,}{\abbrevFont{i}.\abbrevFont{e}.}%
    148                 {\@ifnextchar{:}{\abbrevFont{i}.\abbrevFont{e}.}%
    149                         {\abbrevFont{i}.\abbrevFont{e}.,\xspace}}%
    150 }%
    151 \newcommand*{\etc}{%
    152         \@ifnextchar{.}{\abbrevFont{etc}}%
    153         {\abbrevFont{etc}.\xspace}%
    154 }%
    155139\makeatother
    156140
     
    161145        \endlist
    162146}% quote2
    163 
    164147\newenvironment{rationale}{%
    165148  \begin{quote2}\noindent$\Box$\enspace
     
    205188\newcommand{\VPageref}[2][page]{\ifx#1\@empty\else{#1}\nobreakspace\fi\pageref{#2}}
    206189
    207 % Go programming language: https://github.com/julienc91/listings-golang/blob/master/listings-golang.sty
     190% Go programming language
    208191\lstdefinelanguage{Golang}{
    209192        morekeywords=[1]{package,import,func,type,struct,return,defer,panic, recover,select,var,const,iota,},%
     
    221204}
    222205
    223 % CFA programming language, based on ANSI C (with some gcc additions)
     206% CFA programming language, based on ANSI C
    224207\lstdefinelanguage{CFA}[ANSI]{C}{
    225208        morekeywords={_Alignas,_Alignof,__alignof,__alignof__,asm,__asm,__asm__,_At,_Atomic,__attribute,__attribute__,auto,
    226209                _Bool,catch,catchResume,choose,_Complex,__complex,__complex__,__const,__const__,disable,dtype,enable,__extension__,
    227                 fallthrough,fallthru,finally,forall,ftype,_Generic,_Imaginary,inline,__label__,lvalue,_Noreturn,otype,restrict,_Static_assert,
     210                fallthru,finally,forall,ftype,_Generic,_Imaginary,inline,__label__,lvalue,_Noreturn,otype,restrict,_Static_assert,
    228211                _Thread_local,throw,throwResume,trait,try,typeof,__typeof,__typeof__,},
    229212}%
     
    232215language=CFA,
    233216columns=fullflexible,
    234 basicstyle=\linespread{0.9}\sf,                 % reduce line spacing and use sanserif font
    235 stringstyle=\tt,                                                % use typewriter font
    236 tabsize=4,                                                              % 4 space tabbing
    237 xleftmargin=\parindentlnth,                             % indent code to paragraph indentation
    238 extendedchars=true,                                             % allow ASCII characters in the range 128-255
    239 escapechar=§,                                                   % escape to latex in CFA code
    240 mathescape=true,                                                % allow $...$ LaTeX math escapes in code
    241 %keepspaces=true,                                               %
    242 showstringspaces=false,                                 % do not show spaces with cup
    243 showlines=true,                                                 % show blank lines at end of code
    244 aboveskip=4pt,                                                  % spacing above/below code block
     217basicstyle=\linespread{0.9}\sf,
     218stringstyle=\tt,
     219tabsize=4,
     220xleftmargin=\parindentlnth,
     221extendedchars=true,
     222escapechar=§,
     223mathescape=true,
     224keepspaces=true,
     225showstringspaces=false,
     226showlines=true,
     227aboveskip=4pt,
    245228belowskip=3pt,
    246 moredelim=**[is][\color{red}]{®}{®},    % red highlighting
    247 moredelim=**[is][\color{blue}]{ß}{ß},   % blue highlighting
     229moredelim=**[is][\color{red}]{®}{®}, % red highlighting
     230moredelim=**[is][\color{blue}]{ß}{ß}, % blue highlighting
    248231moredelim=**[is][\color{OliveGreen}]{¢}{¢}, % green highlighting
    249232moredelim=[is][\lstset{keywords={}}]{¶}{¶}, % temporarily turn off keywords
     
    259242\renewcommand\thebibliography[1]{
    260243  \Oldthebibliography{#1}
    261   \setlength{\parskip}{0pt}                             % reduce vertical spacing between references
     244  \setlength{\parskip}{0pt}                     % reduce vertical spacing between references
    262245  \setlength{\itemsep}{5pt plus 0.3ex}
    263246}%
     247
     248\newcommand*{\eg}{\textit{e.g}.\@\xspace}
     249\newcommand*{\ie}{\textit{i.e}.\@\xspace}
     250
     251\makeatletter
     252\newcommand*{\etc}{%
     253    \@ifnextchar{.}%
     254        {\textit{etc}}%
     255        {\textit{etc}.\@\xspace}%
     256}
     257\makeatother
    264258
    265259% Local Variables: %
Note: See TracChangeset for help on using the changeset viewer.