Skip to content

Commit 1e1c626

Browse files
authored
Merge pull request #23 from awvwgk/packagingcon
Presentation for fpm at PackagingCon
2 parents 8ff07da + 7c68471 commit 1e1c626

File tree

10 files changed

+494
-0
lines changed

10 files changed

+494
-0
lines changed

FortranCon2021-fpm/data/fpm-projects.txt

+20
Original file line numberDiff line numberDiff line change
@@ -171,3 +171,23 @@
171171
2021-02-09 12:50:11 -0600 https://gitlab.com/everythingfunctional/stack_example
172172
2020-05-30 13:43:54 -0700 https://gitlab.com/everythingfunctional/strff
173173
2020-05-30 15:33:55 -0700 https://gitlab.com/everythingfunctional/vegetables
174+
2021-11-03 10:49:05 +0100 https://github.com/Carltoffel/Fortran-String-to-Real
175+
2021-11-01 00:30:51 +0800 https://github.com/okman-666/GaussJordanComplex
176+
2021-10-02 11:15:00 -0400 https://github.com/urbanjost/M_display
177+
2021-09-25 23:07:52 -0400 https://github.com/urbanjost/M_hashkeys
178+
2021-09-22 23:07:53 -0500 https://github.com/jacobwilliams/PowellOpt
179+
2021-11-06 19:33:47 -0700 https://github.com/ucla-epss-djames/TRIPS
180+
2021-10-28 09:51:59 +0200 https://github.com/vmagnin/TapTempo-Fortran
181+
2021-10-15 22:40:09 +0100 https://github.com/lucin81/command-pattern
182+
2021-09-18 12:34:53 -0700 https://github.com/sourceryinstitute/emulators
183+
2021-09-20 16:43:51 +0200 https://github.com/interkosmos/fortran-git
184+
2021-10-12 23:01:01 +0200 https://github.com/interkosmos/fortran-motif
185+
2021-10-14 14:13:48 +0200 https://github.com/interkosmos/fortran-xkcd
186+
2021-10-13 14:41:00 +0200 https://github.com/interkosmos/fortran-xlib
187+
2021-10-29 22:46:31 -0500 https://github.com/jacobwilliams/json-fortran-benchmarks
188+
2021-11-09 17:56:42 +0200 https://github.com/art-rasa/moneyDivider
189+
2021-09-18 10:33:02 +0200 https://github.com/Carltoffel/optval-testing
190+
2021-10-20 17:53:29 +0800 https://github.com/Euler-37/qblas
191+
2021-09-26 21:52:12 +0800 https://github.com/zoziha/quad-tree
192+
2021-11-01 22:07:55 +0800 https://github.com/zoziha/rkf45
193+
2021-11-08 13:43:05 +0800 https://github.com/zoziha/stdlib-disp-draft

PackagingCon2021-fpm/.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/*.aux
2+
/*.log
3+
/*.nav
4+
/*.out
5+
/*.snm
6+
/*.toc
7+
/*.bak
8+
/*.pdf
9+
/*.vrb
47.4 KB
Loading
Binary file not shown.
12.1 KB
Loading
6.25 KB
Loading
1.87 KB
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
% Copyright 2019 Sebastian Ehlert
2+
%
3+
% This file may be distributed and/or modified
4+
%
5+
% 1. under the LaTeX Project Public License and/or
6+
% 2. under the GNU Public License.
7+
%
8+
% See the file doc/licenses/LICENSE for more details.
9+
10+
\definecolor{darkgrey}{HTML}{929084}
11+
\colorlet{dark}{darkgrey!35!black}
12+
\definecolor{palegrey}{HTML}{DDE0D9}
13+
\colorlet{light}{palegrey!35!white}
14+
15+
\setbeamercolor{uni blue}{fg=light,bg=blue}
16+
\setbeamercolor{uni grey}{fg=black,bg=darkgrey}
17+
\setbeamercolor{uni yellow}{fg=dark,bg=yellow}
18+
19+
\setbeamercolor{structure}{fg=dark,bg=light}
20+
\setbeamercolor{normal text}{fg=dark,bg=light!50}
21+
\setbeamercolor{frametitle}{parent=normal text,bg=}
22+
23+
\setbeamercolor{titlelike}{parent=structure}
24+
\setbeamercolor{author}{parent=normal text}
25+
\setbeamercolor{institute}{parent=normal text}
26+
\setbeamercolor{date}{parent=normal text}
27+
28+
\setbeamerfont{title in head/foot}{family=\ttfamily}
29+
\setbeamerfont{page number in head/foot}{family=\ttfamily}
30+
\setbeamerfont{subsection in head/foot}{family=\ttfamily}
31+
32+
\setbeamercolor*{palette primary}{fg=light,bg=blue}
33+
\setbeamercolor*{palette secondary}{parent=structure}
34+
\setbeamercolor*{palette tertiary}{parent=structure,fg=structure.bg,bg=structure.fg}
35+
\setbeamercolor*{palette quaternary}{parent=structure,fg=white,bg=structure.fg}
36+
37+
\setbeamercolor{block title}{parent=structure,fg=white,bg=structure.fg!75!dark}
38+
\setbeamercolor{block title alerted}{parent=alerted text,fg=white,bg=alerted text.fg!75!dark}
39+
\setbeamercolor{block title example}{parent=example text,fg=white,bg=example text.fg!75!dark}
40+
41+
\setbeamercolor{block body}{parent=normal text,parent=block title,bg=block title.bg!10!bg}
42+
\setbeamercolor{block body alerted}{parent=normal text,parent=block title alerted,bg=block title alerted.bg!10!bg}
43+
\setbeamercolor{block body example}{parent=normal text,parent=block title example,bg=block title example.bg!10!bg}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
% Copyright 2007 by Till Tantau
2+
% Copyright 2015 by Vedran Mileti\'c, Joseph Wright
3+
% Copyright 2019 Sebastian Ehlert
4+
%
5+
% This file may be distributed and/or modified
6+
%
7+
% 1. under the LaTeX Project Public License and/or
8+
% 2. under the GNU Public License.
9+
%
10+
% See the file doc/licenses/LICENSE for more details.
11+
12+
\setbeamercolor{section in head/foot}{parent=palette tertiary}
13+
\setbeamercolor{subsection in head/foot}{parent=palette secondary}
14+
\setbeamercolor{author in head/foot}{parent=subsection in head/foot}
15+
\setbeamercolor{title in head/foot}{parent=subsection in head/foot}
16+
17+
\newif\ifbeamer@theme@subsection
18+
\beamer@theme@subsectiontrue
19+
20+
\DeclareOptionBeamer{subsection}[true]{\csname beamer@theme@subsection#1\endcsname}
21+
\ProcessOptionsBeamer
22+
23+
\mode<presentation>
24+
25+
\AtBeginDocument{
26+
\pgfdeclareverticalshading{beamer@topshade}{\paperwidth}{%
27+
color(0pt)=(bg);
28+
color(1pt)=(black!50!bg)}
29+
}
30+
31+
\setbeamertemplate{mini frames}[box]
32+
% Head
33+
\defbeamertemplate*{headline}{awvwgk theme}
34+
{%
35+
\begin{beamercolorbox}[colsep=.1pt]{upper separation line head}
36+
\end{beamercolorbox}
37+
\begin{beamercolorbox}{section in head/foot}
38+
\vskip2pt\hskip5pt\raisebox{-6.5pt}{\pgfuseimage{logo}}%
39+
\hskip2pt\insertnavigation{.8\paperwidth}\vskip2pt
40+
\end{beamercolorbox}%
41+
\ifbeamer@theme@subsection%
42+
\begin{beamercolorbox}[colsep=.1pt]{middle separation line head}
43+
\end{beamercolorbox}
44+
\begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
45+
leftskip=.4cm,rightskip=.4cm plus1fil]{subsection in head/foot}
46+
\usebeamerfont{subsection in head/foot}\insertsubsectionhead
47+
\end{beamercolorbox}%
48+
\vskip-3.625ex
49+
\pgfuseshading{beamer@topshade}
50+
\vskip+3.625ex
51+
\vskip-1pt
52+
\fi%
53+
\begin{beamercolorbox}[colsep=.1pt]{lower separation line head}
54+
\end{beamercolorbox}
55+
\pgfuseshading{beamer@topshade}
56+
\vskip-1pt
57+
}
58+
59+
\defbeamertemplate*{footline}{awvwgk theme}
60+
{%
61+
%\leavevmode%
62+
%\begin{beamercolorbox}[colsep=.1pt]{upper separation line foot}%
63+
%\end{beamercolorbox}%
64+
\hbox{%
65+
\begin{beamercolorbox}%
66+
[ht=2.5ex,dp=1.125ex,leftskip=.4cm,rightskip=.4cm]%
67+
{author in head/foot}%
68+
\usebeamerfont{title in head/foot}%
69+
\insertshortauthor\ -\ \insertshorttitle\hfill%
70+
\usebeamerfont{page number in head/foot}%
71+
\usebeamertemplate{page number in head/foot}%
72+
\end{beamercolorbox}
73+
}%
74+
\vskip-3.625ex%
75+
\pgfuseshading{beamer@topshade}%
76+
\vskip+3.625ex%
77+
\vskip-1pt%
78+
}
79+
80+
81+
\mode
82+
<all>

0 commit comments

Comments
 (0)